Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 306 for mpos (0.03 sec)

  1. android/guava/src/com/google/common/html/HtmlEscapers.java

      // that are considered authoritative for the behavior of that escaper.
    
      private static final Escaper HTML_ESCAPER =
          Escapers.builder()
              .addEscape('"', """)
              // Note: "'" is not defined in HTML 4.01.
              .addEscape('\'', "'")
              .addEscape('&', "&")
              .addEscape('<', "&lt;")
              .addEscape('>', "&gt;")
              .build();
    
      private HtmlEscapers() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser.java

            int startPart = 0;
            int pos = 0;
            int endBase = 0;
            int endBaseStr = 0;
            for (; pos < original.length(); pos++) {
                char ch = original.charAt(pos);
                if (ch == '.' || ch == '_' || ch == '-' || ch == '+') {
                    parts.add(original.substring(startPart, pos));
                    startPart = pos + 1;
                    digit = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/nilcheck.go

    					v.Pos = v.Pos.WithIsStmt()
    					pendingLines.remove(v.Pos)
    				}
    			}
    			if pendingLines.contains(b.Pos) {
    				b.Pos = b.Pos.WithIsStmt()
    				pendingLines.remove(b.Pos)
    			}
    
    			// Add all dominated blocks to the work list.
    			for w := sdom[node.block.ID].child; w != nil; w = sdom[w.ID].sibling {
    				work = append(work, bp{op: Work, block: w})
    			}
    
    		case ClearPtr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/go/token/position.go

    //	-                   invalid position without file name
    func (pos Position) String() string {
    	s := pos.Filename
    	if pos.IsValid() {
    		if s != "" {
    			s += ":"
    		}
    		s += strconv.Itoa(pos.Line)
    		if pos.Column != 0 {
    			s += fmt.Sprintf(":%d", pos.Column)
    		}
    	}
    	if s == "" {
    		s = "-"
    	}
    	return s
    }
    
    // Pos is a compact encoding of a source position within a file set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    	nifnz := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.ONE, l2, ir.NewInt(base.Pos, 0)), nil, nil)
    	nifnz.Likely = true
    	nodes = append(nodes, nifnz)
    
    	elemtype := s.Type().Elem()
    
    	// n := s.len + l2
    	nn := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TINT])
    	nifnz.Body = append(nifnz.Body, ir.NewAssignStmt(base.Pos, nn, ir.NewBinaryExpr(base.Pos, ir.OADD, ir.NewUnaryExpr(base.Pos, ir.OLEN, s), l2)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/av/AvPairs.java

            List<AvPair> pairs = new LinkedList<>();
            int pos = 0;
            boolean foundEnd = false;
            while ( pos + 4 <= data.length ) {
                int avId = SMBUtil.readInt2(data, pos);
                int avLen = SMBUtil.readInt2(data, pos + 2);
                pos += 4;
    
                if ( avId == AvPair.MsvAvEOL ) {
                    if ( avLen != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/positions.go

    			}
    			m = n.Type
    
    		// expressions
    		case *BadExpr:
    			return n.Pos()
    		case *Name:
    			p := n.Pos()
    			return MakePos(p.Base(), p.Line(), p.Col()+uint(len(n.Value)))
    		case *BasicLit:
    			p := n.Pos()
    			return MakePos(p.Base(), p.Line(), p.Col()+uint(len(n.Value)))
    		case *CompositeLit:
    			return n.Rbrace
    		case *KeyValueExpr:
    			m = n.Value
    		case *FuncLit:
    			m = n.Body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/runtime/tracebuf.go

    }
    
    // byte appends v to buf.
    func (buf *traceBuf) byte(v byte) {
    	buf.arr[buf.pos] = v
    	buf.pos++
    }
    
    // varint appends v to buf in little-endian-base-128 encoding.
    func (buf *traceBuf) varint(v uint64) {
    	pos := buf.pos
    	arr := buf.arr[pos : pos+traceBytesPerNumber]
    	for i := range arr {
    		if v < 0x80 {
    			pos += i + 1
    			arr[i] = byte(v)
    			break
    		}
    		arr[i] = 0x80 | byte(v)
    		v >>= 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/go/types/version.go

    // fileFor returns the *ast.File which contains the position pos.
    // If there are no files, the result is nil.
    // The position must be valid.
    func (check *Checker) fileFor(pos token.Pos) *ast.File {
    	assert(pos.IsValid())
    	// Eval and CheckExpr tests may not have any source files.
    	if len(check.files) == 0 {
    		return nil
    	}
    	for _, file := range check.files {
    		if file.FileStart <= pos && pos < file.FileEnd {
    			return file
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/go/printer/printer.go

    	return p.out.Line - line
    }
    
    func (p *printer) posFor(pos token.Pos) token.Position {
    	// not used frequently enough to cache entire token.Position
    	return p.fset.PositionFor(pos, false /* absolute position */)
    }
    
    func (p *printer) lineFor(pos token.Pos) int {
    	if pos != p.cachedPos {
    		p.cachedPos = pos
    		p.cachedLine = p.fset.PositionFor(pos, false /* absolute position */).Line
    	}
    	return p.cachedLine
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top