Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.cpp626 Seg.addSection(&Section); in readProgramHeaders()
792 return Obj.addSection<DynamicRelocationSection>(Data); in makeSection()
794 return Obj.addSection<RelocationSection>(); in makeSection()
801 return Obj.addSection<Section>(Data); in makeSection()
803 return Obj.addSection<StringTableSection>(); in makeSection()
809 return Obj.addSection<Section>(Data); in makeSection()
812 return Obj.addSection<GroupSection>(Data); in makeSection()
815 return Obj.addSection<DynamicSymbolTableSection>(Data); in makeSection()
818 return Obj.addSection<DynamicSection>(Data); in makeSection()
820 auto &SymTab = Obj.addSection<SymbolTableSection>(); in makeSection()
[all …]
DObject.h304 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function
707 template <class T, class... Ts> T &addSection(Ts &&... Args) { in addSection() function
Dllvm-objcopy.cpp456 Obj.addSection<OwnedDataSection>(SecName, in HandleArgs()
462 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink); in HandleArgs()
/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.kt836 val section = addSection(prefix, null) in addAccessorDocumentation()
840 val section = addSection("$prefix ${it.tag}", it.subjectName) in addAccessorDocumentation()
/external/dokka/core/src/main/kotlin/Java/
DJavadocParser.kt92 … val section = result.addSection(javadocSectionDisplayName(tagName), tag.getSubjectName()) in parseDocumentation()
149 … val section = result.addSection(javadocSectionDisplayName(tag.name), subjectName) in parseDocumentation()
409 … 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 in MutableContent