Home
last modified time | relevance | path

Searched refs:addSection (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/lld/wasm/
DWriter.cpp81 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/
DCOFFObjcopy.cpp60 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/
DObject.cpp1254 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 …]
DELFObjcopy.cpp599 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()
DObject.h472 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/
DDescriptorDocumentationParser.kt102 … 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>()
DDocumentationBuilder.kt837 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/
DSectCreateFile.h65 void addSection(StringRef seg, StringRef sect, in addSection() function
DMachOLinkingContext.cpp817 _sectCreateFile->addSection(seg, sect, std::move(content)); in addSectCreateSection()
/external/dokka/core/src/main/kotlin/Java/
DJavadocParser.kt91 … 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/
DPackageDocs.kt89 addSection(it.tag, it.subjectName).children.addAll(it.children) in <lambda>()
DContent.kt255 fun addSection(tag: String?, subjectName: String?): ContentSection { in addSection() method
/external/llvm-project/llvm/tools/llvm-objcopy/MachO/
DMachOObjcopy.cpp272 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/
DSyntheticSections.h80 void addSection(EhInputSection *sec);
886 void addSection(MergeInputSection *ms);
1039 bool addSection(InputSection *isec);
DOutputSections.cpp208 (*i)->addSection(ms); in finalizeInputSections()
DWriter.cpp216 part.ehFrame->addSection(es); in combineEhSections()
219 part.armExidx->addSection(cast<InputSection>(s))) { in combineEhSections()
DSyntheticSections.cpp440 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/
DChunks.h404 static void addSection(SectionChunk *c);
DChunks.cpp870 void MergeChunk::addSection(SectionChunk *c) { in addSection() function in lld::coff::MergeChunk
DInputFiles.cpp294 MergeChunk::addSection(c); in readSection()