Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for startPos (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                startPos = 0;
                endPos = stack.size();
            } else {
                // When analysing a problem stack trace, consider only the deepest user code in the stack.
                startPos = failure.indexOfStackFrame(0, StackFramePredicate.USER_CODE);
                if (startPos == -1) {
                    // No user code in the stack
                    return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/util.go

    // ExprString returns a string representation of x.
    func ExprString(x syntax.Node) string { return syntax.String(x) }
    
    // startPos returns the start position of node n.
    func startPos(n syntax.Node) syntax.Pos { return syntax.StartPos(n) }
    
    // endPos returns the position of the first character immediately after node n.
    func endPos(n syntax.Node) syntax.Pos { return syntax.EndPos(n) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/issues_test.go

    		if err != nil {
    			t.Errorf("%s: %v", src, err)
    			continue
    		}
    
    		// locate KeyValueExpr
    		Inspect(f, func(n Node) bool {
    			_, ok := n.(*KeyValueExpr)
    			if ok {
    				if got := StartPos(n).Col(); got != want {
    					t.Errorf("%s: got col = %d, want %d", src, got, want)
    				}
    			}
    			return !ok
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/DefaultValueStore.java

                encoder.flush();
                long length = encoder.getWritePosition() - startPos;
                return new BlockAddress(id, startPos + startOffset, length);
            }
    
            @Override
            public void close() throws IOException {
                encoder.flush();
                outputStream.close();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. src/go/types/util.go

    // argErrPos returns positioner for reporting an invalid argument count.
    func argErrPos(call *ast.CallExpr) positioner { return inNode(call, call.Rparen) }
    
    // startPos returns the start position of node n.
    func startPos(n ast.Node) token.Pos { return n.Pos() }
    
    // endPos returns the position of the first character immediately after node n.
    func endPos(n ast.Node) token.Pos { return n.End() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/positions.go

    package syntax
    
    // StartPos returns the start position of n.
    func StartPos(n Node) Pos {
    	// Cases for nodes which don't need a correction are commented out.
    	for m := n; ; {
    		switch n := m.(type) {
    		case nil:
    			panic("nil node")
    
    		// packages
    		case *File:
    			// file block starts at the beginning of the file
    			return MakePos(n.Pos().Base(), 1, 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/errors.go

    }
    
    // atPos reports the left (= start) position of at.
    func atPos(at poser) syntax.Pos {
    	switch x := at.(type) {
    	case *operand:
    		if x.expr != nil {
    			return syntax.StartPos(x.expr)
    		}
    	case syntax.Node:
    		return syntax.StartPos(x)
    	}
    	return at.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/struct.go

    		} else {
    			// embedded field
    			// spec: "An embedded type must be specified as a type name T or as a
    			// pointer to a non-interface type name *T, and T itself may not be a
    			// pointer type."
    			pos := syntax.StartPos(f.Type) // position of type, for errors
    			name := embeddedFieldIdent(f.Type)
    			if name == nil {
    				check.errorf(pos, InvalidSyntaxTree, "invalid embedded field type %s", f.Type)
    				name = syntax.NewName(pos, "_")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/go/types/mono.go

    func (w *monoGraph) recordInstance(pkg *Package, pos token.Pos, tparams []*TypeParam, targs []Type, xlist []ast.Expr) {
    	for i, tpar := range tparams {
    		pos := pos
    		if i < len(xlist) {
    			pos = startPos(xlist[i])
    		}
    		w.assign(pkg, pos, tpar, targs[i])
    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos token.Pos, tpar *TypeParam, targ Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/mono.go

    func (w *monoGraph) recordInstance(pkg *Package, pos syntax.Pos, tparams []*TypeParam, targs []Type, xlist []syntax.Expr) {
    	for i, tpar := range tparams {
    		pos := pos
    		if i < len(xlist) {
    			pos = startPos(xlist[i])
    		}
    		w.assign(pkg, pos, tpar, targs[i])
    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos syntax.Pos, tpar *TypeParam, targ Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top