Searched refs:addSection (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/ |
D | Object.cpp | 626 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 …]
|
D | Object.h | 304 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function 707 template <class T, class... Ts> T &addSection(Ts &&... Args) { in addSection() function
|
D | llvm-objcopy.cpp | 456 Obj.addSection<OwnedDataSection>(SecName, in HandleArgs() 462 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink); in HandleArgs()
|
/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 | 836 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/ |
D | JavadocParser.kt | 92 … 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/ |
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 in MutableContent
|