Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Innermost (0.26 sec)

  1. src/cmd/compile/internal/ssa/likelyadjust.go

    				}
    
    			}
    
    			if l == nil || innermost == l {
    				continue
    			}
    
    			if innermost == nil {
    				innermost = l
    				continue
    			}
    
    			if sdom.isAncestor(innermost.header, l.header) {
    				sdom.outerinner(innermost, l)
    				innermost = l
    			} else if sdom.isAncestor(l.header, innermost.header) {
    				sdom.outerinner(l, innermost)
    			}
    		}
    
    		if innermost != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

         * @throws IllegalStateException if the passed entry point token does not match the current innermost instrumented call tracked for the thread.
         */
        void leaveCall(EntryPointCallSite entryPoint);
    
        /**
         * Checks if the current thread's innermost instrumented call matches the name and call kind, and has not been marked as intercepted yet.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/inl.go

    		outerxpos = call.Pos
    	}
    	return ctxt.PosTable.Pos(outerxpos)
    }
    
    // InnermostPos returns the innermost position corresponding to xpos,
    // that is, the code that is inlined and that inlines nothing else.
    // In the example for InlTree above, the code for println within h
    // would have an innermost position with line number 12, whether
    // h was not inlined, inlined into g, g-then-f, or g-then-f-then-main.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

                        NavigableMap<String, String> innermost = new SafeTreeMap<>();
                        for (Entry<String, String> entry : entries) {
                          innermost.put(entry.getKey(), entry.getValue());
                        }
                        TestMap<String, String> inner = new TestMap<>(innermost, mutex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. test/inline_literal.go

    	f := runtime.FuncForPC(pc)
    	for ; runtime.FuncForPC(pc) == f; pc++ {
    		file, line := f.FileLine(pc)
    		if line == 0 {
    			continue
    		}
    		// Line 16 can appear inside foo() because PC-line table has
    		// innermost line numbers after inlining.
    		if line != 16 && !(line >= 19 && line <= 22) {
    			log.Fatalf("unexpected line at PC=%d: %s:%d\n", pc, file, line)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 03 21:29:32 UTC 2017
    - 1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/scope.go

    	return cmpPos(s.pos, pos) <= 0 && cmpPos(pos, s.end) < 0
    }
    
    // Innermost returns the innermost (child) scope containing
    // pos. If pos is not within any scope, the result is nil.
    // The result is also nil for the Universe scope.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    func (s *Scope) Innermost(pos syntax.Pos) *Scope {
    	// Package scopes do not have extents since they may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/scope.go

    	return cmpPos(s.pos, pos) <= 0 && cmpPos(pos, s.end) < 0
    }
    
    // Innermost returns the innermost (child) scope containing
    // pos. If pos is not within any scope, the result is nil.
    // The result is also nil for the Universe scope.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    func (s *Scope) Innermost(pos token.Pos) *Scope {
    	// Package scopes do not have extents since they may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. test/fixedbugs/bug085.go

    var x int
    
    func foo() {
    	print(P.x);  // ERROR "undefined"
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug085.go
    bug085.go:6: P: undefined
    Bus error
    */
    
    /* expected scope hierarchy (outermost to innermost)
    
    universe scope (contains predeclared identifiers int, float32, int32, len, etc.)
    "solar" scope (just holds the package name P so it can be found but doesn't conflict)
    global scope (the package global scope)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 23:11:31 UTC 2012
    - 633 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    		if !push {
    			return true
    		}
    		call := n.(*ast.CallExpr)
    		if !isHTTPFuncOrMethodOnClient(pass.TypesInfo, call) {
    			return true // the function call is not related to this check.
    		}
    
    		// Find the innermost containing block, and get the list
    		// of statements starting with the one containing call.
    		stmts, ncalls := restOfBlock(stack)
    		if len(stmts) < 2 {
    			// The call to the http function is the last statement of the block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/go/types/eval.go

    		// incorrect (files spread across a wide range of fset
    		// positions) - ignore it and just consider its children
    		// (file scopes).
    		for _, fscope := range pkg.scope.children {
    			if scope = fscope.Innermost(pos); scope != nil {
    				break
    			}
    		}
    		if scope == nil || debug {
    			s := scope
    			for s != nil && s != pkg.scope {
    				s = s.parent
    			}
    			// s == nil || s == pkg.scope
    			if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top