/external/llvm-project/lld/wasm/ |
D | Writer.cpp | 81 void addSection(OutputSection *sec); 154 addSection(sec); in createCustomSections() 184 addSection(make<RelocSection>(name, sec)); in createRelocSections() 368 void Writer::addSection(OutputSection *sec) { in addSection() function in lld::wasm::Writer 393 addSection(out.dylinkSec); in addSections() 394 addSection(out.typeSec); in addSections() 395 addSection(out.importSec); in addSections() 396 addSection(out.functionSec); in addSections() 397 addSection(out.tableSec); in addSections() 398 addSection(out.memorySec); in addSections() [all …]
|
/external/llvm-project/llvm/tools/llvm-objcopy/COFF/ |
D | COFFObjcopy.cpp | 60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents, in addSection() function 90 addSection(Obj, ".gnu_debuglink", *Contents, in addGnuDebugLink() 241 addSection( in handleArgs()
|
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
D | Object.cpp | 1254 auto &StrTab = Obj->addSection<StringTableSection>(); in addStrTab() 1262 auto &SymTab = Obj->addSection<SymbolTableSection>(); in addSymTab() 1286 auto &DataSection = Obj->addSection<Section>(Data); in addData() 1337 Section = &Obj->addSection<OwnedDataSection>( in addDataSections() 1438 Seg.addSection(&Sec); in readProgramHeaders() 1670 return Obj.addSection<DynamicRelocationSection>(*Data); in makeSection() 1674 return Obj.addSection<RelocationSection>(); in makeSection() 1681 return Obj.addSection<Section>(*Data); in makeSection() 1685 return Obj.addSection<StringTableSection>(); in makeSection() 1691 return Obj.addSection<Section>(*Data); in makeSection() [all …]
|
D | ELFObjcopy.cpp | 599 return &Obj.addSection<CompressedSection>(std::move(*NewSection)); in replaceAndRemoveSections() 608 return &Obj.addSection<DecompressedSection>(*CS); in replaceAndRemoveSections() 740 Obj.addSection<OwnedDataSection>(SecName, Data); in handleArgs() 746 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink, in handleArgs()
|
D | Object.h | 472 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function 1079 template <class T, class... Ts> T &addSection(Ts &&... Args) { in addSection() function
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | DescriptorDocumentationParser.kt | 102 … val section = content.addSection(javadocSectionDisplayName(it.name), it.getSubjectName()) in <lambda>() 114 … val section = content.addSection(javadocSectionDisplayName(it.name), it.getSubjectName()) in <lambda>() 254 val section = findSectionByTag(sectionName) ?: addSection(sectionName, null) in <lambda>()
|
D | DocumentationBuilder.kt | 837 val section = addSection(prefix, null) in addAccessorDocumentation() 841 val section = addSection("$prefix ${it.tag}", it.subjectName) in addAccessorDocumentation()
|
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | SectCreateFile.h | 65 void addSection(StringRef seg, StringRef sect, in addSection() function
|
D | MachOLinkingContext.cpp | 817 _sectCreateFile->addSection(seg, sect, std::move(content)); in addSectCreateSection()
|
/external/dokka/core/src/main/kotlin/Java/ |
D | JavadocParser.kt | 91 … val section = result.addSection(javadocSectionDisplayName(tagName), tag.getSubjectName()) in parseDocumentation() 148 … val section = result.addSection(javadocSectionDisplayName(tag.name), subjectName) in parseDocumentation() 408 … val seeSection = findSectionByTag(ContentTags.SeeAlso) ?: addSection(ContentTags.SeeAlso, null) in parseDocumentation()
|
/external/dokka/core/src/main/kotlin/Model/ |
D | PackageDocs.kt | 89 addSection(it.tag, it.subjectName).children.addAll(it.children) in <lambda>()
|
D | Content.kt | 255 fun addSection(tag: String?, subjectName: String?): ContentSection { in addSection() method
|
/external/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
D | MachOObjcopy.cpp | 272 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) { in addSection() function 378 if (Error E = addSection(SecName, File, Obj)) in handleArgs()
|
/external/llvm-project/lld/ELF/ |
D | SyntheticSections.h | 80 void addSection(EhInputSection *sec); 886 void addSection(MergeInputSection *ms); 1039 bool addSection(InputSection *isec);
|
D | OutputSections.cpp | 208 (*i)->addSection(ms); in finalizeInputSections()
|
D | Writer.cpp | 216 part.ehFrame->addSection(es); in combineEhSections() 219 part.armExidx->addSection(cast<InputSection>(s))) { in combineEhSections()
|
D | SyntheticSections.cpp | 440 void EhFrameSection::addSection(EhInputSection *sec) { in addSection() function in EhFrameSection 3193 void MergeSyntheticSection::addSection(MergeInputSection *ms) { in addSection() function in MergeSyntheticSection 3329 bool ARMExidxSyntheticSection::addSection(InputSection *isec) { in addSection() function in ARMExidxSyntheticSection
|
/external/llvm-project/lld/COFF/ |
D | Chunks.h | 404 static void addSection(SectionChunk *c);
|
D | Chunks.cpp | 870 void MergeChunk::addSection(SectionChunk *c) { in addSection() function in lld::coff::MergeChunk
|
D | InputFiles.cpp | 294 MergeChunk::addSection(c); in readSection()
|