/external/llvm-project/llvm/tools/llvm-objcopy/COFF/ |
D | Writer.cpp | 119 for (const auto &S : Obj.getSections()) in finalizeStringTable() 191 Obj.CoffFileHeader.NumberOfSections = Obj.getSections().size(); in finalize() 194 SizeOfHeaders += sizeof(coff_section) * Obj.getSections().size(); in finalize() 209 if (!Obj.getSections().empty()) { in finalize() 210 const Section &S = Obj.getSections().back(); in finalize() 272 BigObjHeader.NumberOfSections = Obj.getSections().size(); in writeHeaders() 297 for (const auto &S : Obj.getSections()) { in writeHeaders() 304 for (const auto &S : Obj.getSections()) { in writeSections() 387 for (const auto &S : Obj.getSections()) { in virtualAddressToFileAddress() 405 for (const auto &S : Obj.getSections()) { in patchDebugDirectory() [all …]
|
D | COFFObjcopy.cpp | 35 if (Obj.getSections().empty()) in getNextRVA() 37 const Section &Last = Obj.getSections().back(); in getNextRVA()
|
D | Object.h | 125 ArrayRef<Section> getSections() const { return Sections; } in getSections() function
|
D | Reader.cpp | 87 ArrayRef<Section> Sections = Obj.getSections(); in readSymbols()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | OatFile.java | 342 private List<SectionHeader> getSections() { 380 for (SectionHeader header: getSections()) { 396 return new StringTable(getSections().get(index)); 441 this.stringTable = new StringTable(getSections().get(header.getLink())); 485 sectionHeader = getSections().get(getSectionIndex());
|
/external/llvm-project/lld/ELF/ |
D | DWARF.cpp | 32 assert(objSections.size() == obj->getSections().size()); in LLDDwarfObj() 33 for (auto it : llvm::enumerate(obj->getSections())) { in LLDDwarfObj()
|
D | InputFiles.h | 80 ArrayRef<InputSectionBase *> getSections() const { in getSections() function
|
D | InputSection.cpp | 282 return cast<InputSection>(file->getSections()[link]); in getLinkOrderDep() 397 ArrayRef<InputSectionBase *> sections = file->getSections(); in copyShtGroup() 409 ArrayRef<InputSectionBase *> sections = file->getSections(); in getRelocatedSection()
|
D | OutputSections.cpp | 391 ArrayRef<InputSectionBase *> sections = section->file->getSections(); in finalizeShtGroup()
|
D | Relocations.cpp | 685 file->getSections()[sym.discardedSecIdx] != &InputSection::discarded) in maybeReportDiscarded() 756 file->getSections()[sym.discardedSecIdx] == &InputSection::discarded) in getAlternativeSpelling()
|
D | Driver.cpp | 2204 for (InputSectionBase *s : f->getSections()) in link() 2208 for (InputSectionBase *s : f->getSections()) in link()
|
D | InputFiles.cpp | 317 ArrayRef<InputSectionBase *> sections = s->file->getSections(); in getDILineInfo()
|
/external/skqp/src/sksl/ |
D | SkSLHCodeGenerator.cpp | 205 std::vector<const Section*> s = fSectionAndParameterHelper.getSections(section); in failOnSection() 241 for (const Section* s : fSectionAndParameterHelper.getSections( in writeConstructor() 254 const auto transforms = fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION); in writeConstructor() 298 const auto transforms = fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION); in writeFields()
|
D | SkSLSectionAndParameterHelper.h | 94 std::vector<const Section*> getSections(const char* name) { in getSections() function
|
D | SkSLCPPCodeGenerator.cpp | 1002 const auto transforms = fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION); in writeClone()
|
/external/llvm-project/lld/MachO/ |
D | OutputSegment.h | 44 const std::vector<OutputSection *> &getSections() const { return sections; } in getSections() function
|
D | Writer.cpp | 161 if (seg->getSections().empty()) in writeTo() 169 for (OutputSection *osec : seg->getSections()) { in writeTo() 551 for (auto *osec : seg->getSections()) { in sortSegmentsAndSections() 631 for (auto *osec : seg->getSections()) { in assignAddresses() 660 for (OutputSection *osec : seg->getSections()) in writeSections()
|
D | SyntheticSections.cpp | 79 for (OutputSection *osec : seg->getSections()) { in writeTo()
|
/external/skia/src/sksl/ |
D | SkSLSectionAndParameterHelper.h | 53 std::vector<const Section*> getSections(const char* name) { in getSections() function
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
D | ApiBrowser.java | 340 public Object[] getSections() { in getSections() method in ApiBrowser.ApiBrowserAdapter 341 return mIndexer.getSections(); in getSections()
|
/external/skia/src/sksl/codegen/ |
D | SkSLHCodeGenerator.cpp | 213 std::vector<const Section*> s = fSectionAndParameterHelper.getSections(section); in failOnSection() 250 for (const Section* s : fSectionAndParameterHelper.getSections( in writeConstructor()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 333 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState() 448 Header.e_shnum = Doc.getSections().size(); in writeELFHeader() 477 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in initProgramHeaders() 671 SHeaders.resize(Doc.getSections().size()); in initSectionHeaders() 1788 for (const ELFYAML::Section *S : Doc.getSections()) { in buildSectionHeaderReorderMap() 1790 if (S == Doc.getSections().front()) in buildSectionHeaderReorderMap() 1813 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in buildSectionIndex() 1870 for (const ELFYAML::Chunk *Sec : Doc.getSections()) { in finalizeStrings()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 237 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState() 305 Doc.Header.SHNum ? (uint16_t)*Doc.Header.SHNum : Doc.getSections().size(); in writeELFHeader() 408 SHeaders.resize(Doc.getSections().size()); in initSectionHeaders() 1383 for (const ELFYAML::Chunk *Sec : Doc.getSections()) { in finalizeStrings()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | ELFYAML.h | 501 std::vector<Section *> getSections() { in getSections() function
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | ELFYAML.h | 650 std::vector<Section *> getSections() { in getSections() function
|