Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for fileRef (0.24 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildFile.java

     */
    public class PBXBuildFile extends PBXProjectItem {
        private final PBXReference fileRef;
        private Optional<NSDictionary> settings;
    
        public PBXBuildFile(PBXReference fileRef) {
            this.fileRef = Preconditions.checkNotNull(fileRef);
            this.settings = Optional.absent();
        }
    
        public PBXReference getFileRef() {
            return fileRef;
        }
    
        public Optional<NSDictionary> getSettings() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/dwtest/dwtest.go

    	lr, lrerr := dw.LineReader(cuDie)
    	if lrerr != nil {
    		return "", fmt.Errorf("d.LineReader: %v", lrerr)
    	}
    	files := lr.Files()
    	if fileRef < 0 || int(fileRef) > len(files)-1 {
    		return "", fmt.Errorf("Examiner.FileRef: malformed file reference %d", fileRef)
    	}
    	return files[fileRef].Name, nil
    }
    
    // Return a list of all DIEs with name 'name'. When searching for DIEs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/WorkspaceFile.groovy

        }
    
        void assertHasProjects(String... paths) {
            assert contentXml.FileRef.size() == paths.length
            paths.each { path ->
                assertHasProject(file.parentFile.parentFile.file(path))
            }
        }
    
        void assertHasProject(File projectFile) {
            assert contentXml.FileRef*.@location*.replaceAll('absolute:', '').contains(projectFile.absolutePath)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeWorkspaceFile.java

        }
    
        public void addLocation(String location) {
            Map<String, Object> attributes = new HashMap<String, Object>();
            attributes.put("location", "absolute:" + location);
            getXml().appendNode("FileRef", attributes);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    			fileIdx, fileIdxOK := maindie.Val(dwarf.AttrDeclFile).(int64)
    			if !fileIdxOK {
    				t.Errorf("missing or invalid DW_AT_decl_file for main")
    			}
    			file, err := ex.FileRef(d, mainIdx, fileIdx)
    			if err != nil {
    				t.Fatalf("FileRef: %v", err)
    			}
    			base := filepath.Base(file)
    			if base != tc.file {
    				t.Errorf("DW_AT_decl_file for main is %v, want %v", base, tc.file)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/asmb.go

    	}
    
    	writeParallel(&wg, datblk, ctxt, Segdata.Fileoff, Segdata.Vaddr, Segdata.Filelen)
    
    	writeParallel(&wg, dwarfblk, ctxt, Segdwarf.Fileoff, Segdwarf.Vaddr, Segdwarf.Filelen)
    
    	if Segpdata.Filelen > 0 {
    		writeParallel(&wg, pdatablk, ctxt, Segpdata.Fileoff, Segpdata.Vaddr, Segpdata.Filelen)
    	}
    	if Segxdata.Filelen > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    	}
    
    	var ms *MachoSeg
    	if ctxt.LinkMode == LinkExternal {
    		/* segment for entire file */
    		ms = newMachoSeg("", 40)
    
    		ms.fileoffset = Segtext.Fileoff
    		ms.filesize = Segdwarf.Fileoff + Segdwarf.Filelen - Segtext.Fileoff
    		ms.vsize = Segdwarf.Vaddr + Segdwarf.Length - Segtext.Vaddr
    	}
    
    	/* segment for zero page */
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__PAGEZERO", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    // Generate XCOFF assembly file.
    func asmbXcoff(ctxt *Link) {
    	ctxt.Out.SeekSet(0)
    	fileoff := int64(Segdwarf.Fileoff + Segdwarf.Filelen)
    	fileoff = int64(Rnd(int64(fileoff), *FlagRound))
    
    	xfile.sectNameToScnum = make(map[string]int16)
    
    	// Add sections
    	s := xfile.addSection(".text", Segtext.Vaddr, Segtext.Length, Segtext.Fileoff, STYP_TEXT)
    	xfile.xahdr.Otextstart = s.Svaddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    		return
    	}
    	for _, sect := range Segdwarf.Sections {
    		h := f.addDWARFSection(sect.Name, int(sect.Length))
    		fileoff := sect.Vaddr - Segdwarf.Vaddr + Segdwarf.Fileoff
    		if uint64(h.pointerToRawData) != fileoff {
    			Exitf("%s.PointerToRawData = %#x, want %#x", sect.Name, h.pointerToRawData, fileoff)
    		}
    	}
    }
    
    // addSEH adds SEH information to the COFF file f.
    func (f *peFile) addSEH(ctxt *Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileCollectionAdapter.java

        private final MinimalFileSet fileSet;
    
        public FileCollectionAdapter(MinimalFileSet fileSet) {
            this.fileSet = fileSet;
        }
    
        public FileCollectionAdapter(MinimalFileSet fileSet, TaskDependencyFactory taskDependencyFactory) {
            super(taskDependencyFactory);
            this.fileSet = fileSet;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top