Home
last modified time | relevance | path

Searched refs:ContentSection (Results 1 – 10 of 10) sorted by relevance

/external/dokka/core/src/main/kotlin/Model/
DContent.kt174 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/
DELFObjHandler.cpp88 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/
DKotlinWebsiteHtmlFormatService.kt165 override fun appendSectionWithTag(section: ContentSection) { in appendSoftParagraph()
DStructuredFormatService.kt78 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>()
DDacHtmlFormat.kt907 is ContentSection -> { } in addContentNodeToStringBuilder()
/external/dokka/core/src/main/kotlin/Kotlin/
DContentBuilder.kt173 private fun keepEol(node: ContentNode) = node is ContentParagraph || node is ContentSection || node… in keepEol()
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlFormatOutputBuilder.kt158 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/
Dtags.kt224 …is ContentSection -> surroundWith(module, holder, "<p>", "</p>", node, result) // TODO how section… in buildInlineTags()
Ddocbase.kt516 …mentationNodeAdapter.collectParamTags(kind: NodeKind, sectionFilter: (ContentSection) -> Boolean) = in specifiedClasses()
/external/dokka/core/src/main/kotlin/Java/
DJavadocParser.kt54 private fun ContentSection.appendTypeElement( in parseDocumentation() method