Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CompilationUnit (0.16 sec)

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

            "BigDecimal", ClassHelper.BigDecimal_TYPE
        );
    
        private ClassNode currentClass;
        private final Map<String, List<String>> simpleNameToFQN;
        private final CompilationUnit compilationUnit;
        private SourceUnit source;
        private VariableScope currentScope;
    
        private boolean isTopLevelProperty = true;
        private boolean inPropertyExpression;
        private boolean inClosure;
    
    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/ld/dwarf.go

    	} else {
    		d.adddwarfref(sb, t, 4)
    	}
    }
    
    // calcCompUnitRanges calculates the PC ranges of the compilation units.
    func (d *dwctxt) calcCompUnitRanges() {
    	var prevUnit *sym.CompilationUnit
    	for _, s := range d.linkctxt.Textp {
    		sym := loader.Sym(s)
    
    		fi := d.ldr.FuncInfo(sym)
    		if !fi.Valid() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    }
    
    func (a Aux) Sym() Sym { return a.l.resolve(a.r, a.Aux.Sym()) }
    
    // oReader is a wrapper type of obj.Reader, along with some
    // extra information.
    type oReader struct {
    	*goobj.Reader
    	unit         *sym.CompilationUnit
    	version      int // version of static symbol
    	pkgprefix    string
    	syms         []Sym    // Sym's global index, indexed by local index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	eof := f.Offset() + length
    	start := f.Offset()
    	c1 := bgetc(f)
    	c2 := bgetc(f)
    	c3 := bgetc(f)
    	c4 := bgetc(f)
    	f.MustSeek(start, 0)
    
    	unit := &sym.CompilationUnit{Lib: lib}
    	lib.Units = append(lib.Units, unit)
    
    	magic := uint32(c1)<<24 | uint32(c2)<<16 | uint32(c3)<<8 | uint32(c4)
    	if magic == 0x7f454c46 { // \x7F E L F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top