Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for outReg (0.39 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            LinkedList<ClassNode> outerClasses = new LinkedList<ClassNode>();
            ClassNode outer = currentClass.getOuterClass();
            while (outer != null) {
                outerClasses.addFirst(outer);
                outer = outer.getOuterClass();
            }
            // most outer class is now element 0
            for (ClassNode testNode : outerClasses) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	l.outer[interior] = container
    }
    
    // OuterSym gets the outer/container symbol.
    func (l *Loader) OuterSym(i Sym) Sym {
    	return l.outer[i]
    }
    
    // SubSym gets the subsymbol for host object loaded symbols.
    func (l *Loader) SubSym(i Sym) Sym {
    	return l.sub[i]
    }
    
    // growOuter grows the slice used to store outer symbol.
    func (l *Loader) growOuter(reqLen int) {
    	curLen := len(l.outer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    func (token Token) IsElevated() bool {
    	var isElevated uint32
    	var outLen uint32
    	err := GetTokenInformation(token, TokenElevation, (*byte)(unsafe.Pointer(&isElevated)), uint32(unsafe.Sizeof(isElevated)), &outLen)
    	if err != nil {
    		return false
    	}
    	return outLen == uint32(unsafe.Sizeof(isElevated)) && isElevated != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *
         * N.B. Even if the [wholeQualifierElement] is not strictly in the [selection],
         * some outer part of it might be, and we want to shorten that.
         * So we have to check all the outer qualifiers.
         */
        private fun findClassifierQualifierToShorten(
            wholeQualifierClassId: ClassId,
            wholeQualifierElement: KtElement,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    						maxOutIdx = out.idx
    					}
    					outRegs[out.idx] = r
    					used |= regMask(1) << r
    					s.tmpused |= regMask(1) << r
    				}
    				// Record register choices
    				if v.Type.IsTuple() {
    					var outLocs LocPair
    					if r := outRegs[0]; r != noRegister {
    						outLocs[0] = &s.registers[r]
    					}
    					if r := outRegs[1]; r != noRegister {
    						outLocs[1] = &s.registers[r]
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
        assertEquals(Outer.Sub.class, subtype.getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    		Value:     &MyMarshalerTest{},
    	},
    	{
    		ExpectXML: `<MarshalerStruct Foo="hello world"></MarshalerStruct>`,
    		Value:     &MarshalerStruct{},
    	},
    	{
    		ExpectXML: `<outer xmlns="testns" int="10"></outer>`,
    		Value:     &OuterStruct{IntAttr: 10},
    	},
    	{
    		ExpectXML: `<test xmlns="outerns" int="10"></test>`,
    		Value:     &OuterNamedStruct{XMLName: Name{Space: "outerns", Local: "test"}, IntAttr: 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
        assertEquals(Outer.Sub.class, subtype.getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    )
    
    // xcoffUpdateOuterSize stores the size of outer symbols in order to have it
    // in the symbol table.
    func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {
    	if size == 0 {
    		return
    	}
    	// TODO: use CarrierSymByType
    
    	ldr := ctxt.loader
    	switch stype {
    	default:
    		Errorf(nil, "unknown XCOFF outer symbol for type %s", stype.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    	lit string      // token literal
    
    	// Non-syntactic parser control
    	exprLev int // < 0: in control clause, >= 0: in expression
    
    	// Ordinary identifier scopes
    	pkgScope   *ast.Scope        // pkgScope.Outer == nil
    	topScope   *ast.Scope        // top-most scope; may be pkgScope
    	unresolved []*ast.Ident      // unresolved identifiers
    	imports    []*ast.ImportSpec // list of imports
    
    	// Label scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top