Searched refs:ContentSection (Results 1 – 10 of 10) sorted by relevance
/external/dokka/core/src/main/kotlin/Model/ |
D | Content.kt | 174 class ContentSection(val tag: String, val subjectName: String?) : ContentBlock() { in equals() class 176 …super.equals(other) && other is ContentSection && tag == other.tag && subjectName == other.subject… in equals() 232 open val sections: List<ContentSection> get() = emptyList() 236 fun findSectionByTag(tag: String): ContentSection? = in findSectionByTag() 251 private val sectionList = arrayListOf<ContentSection>() 252 override val sections: List<ContentSection> 255 fun addSection(tag: String?, subjectName: String?): ContentSection { in addSection() 256 val section = ContentSection(tag ?: "", subjectName) in addSection() 268 val result = ContentSection(ContentTags.Description, null) in <lambda>()
|
/external/llvm-project/llvm/lib/InterfaceStub/ |
D | ELFObjHandler.cpp | 88 struct ContentSection : public OutputSection<ELFT> { struct 90 ContentSection() { this->NoBits = false; } in ContentSection() function 277 ContentSection<ELFStringTableBuilder, ELFT> DynStr; 278 ContentSection<ELFStringTableBuilder, ELFT> ShStrTab; 279 ContentSection<ELFSymbolTableBuilder<ELFT>, ELFT> DynSym; 280 ContentSection<ELFDynamicTableBuilder<ELFT>, ELFT> DynTab; 286 void fillStrTabShdr(ContentSection<ELFStringTableBuilder, ELFT> &StrTab, in fillStrTabShdr() 299 void fillSymTabShdr(ContentSection<ELFSymbolTableBuilder<ELFT>, ELFT> &SymTab, in fillSymTabShdr() 313 ContentSection<ELFDynamicTableBuilder<ELFT>, ELFT> &DynTab) const { in fillDynTabShdr()
|
/external/dokka/core/src/main/kotlin/Formats/ |
D | KotlinWebsiteHtmlFormatService.kt | 165 override fun appendSectionWithTag(section: ContentSection) { in appendSoftParagraph()
|
D | StructuredFormatService.kt | 78 open fun appendSectionWithTag(section: ContentSection) { in <lambda>() 258 fun Content.getSectionsWithSubjects(): Map<String, List<ContentSection>> = in <lambda>() 452 fun appendSectionWithSubject(title: String, subjectSections: List<ContentSection>) { in <lambda>()
|
D | DacHtmlFormat.kt | 907 is ContentSection -> { } in addContentNodeToStringBuilder()
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | ContentBuilder.kt | 173 private fun keepEol(node: ContentNode) = node is ContentParagraph || node is ContentSection || node… in keepEol()
|
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/ |
D | JavaLayoutHtmlFormatOutputBuilder.kt | 158 is ContentSection -> { in <lambda>() 794 protected open fun FlowContent.regularSection(name: String, entries: List<ContentSection>) { in <lambda>() 905 protected open fun FlowContent.section(name: String, sectionParts: List<ContentSection>) { in <lambda>()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | tags.kt | 224 …is ContentSection -> surroundWith(module, holder, "<p>", "</p>", node, result) // TODO how section… in buildInlineTags()
|
D | docbase.kt | 516 …mentationNodeAdapter.collectParamTags(kind: NodeKind, sectionFilter: (ContentSection) -> Boolean) = in specifiedClasses()
|
/external/dokka/core/src/main/kotlin/Java/ |
D | JavadocParser.kt | 54 private fun ContentSection.appendTypeElement( in parseDocumentation() method
|