Home
last modified time | relevance | path

Searched refs:DocumentationModule (Results 1 – 17 of 17) sorted by relevance

/external/dokka/core/src/test/kotlin/
DTestAPI.kt29 verifier: (DocumentationModule) -> Unit) { in <lambda>()
30 val documentation = DocumentationModule("test") in <lambda>()
59 fun appendDocumentation(documentation: DocumentationModule, in appendDocumentation()
117 verifier: (DocumentationModule) -> Unit) { in verifyModel()
142 verifier: (DocumentationModule) -> Unit) { in verifyJavaModel()
171 outputGenerator: (DocumentationModule, StringBuilder) -> Unit) { in verifyOutput()
185 fun verifyModelOutput(it: DocumentationModule, in verifyModelOutput()
188 outputGenerator: (DocumentationModule, StringBuilder) -> Unit) { in verifyModelOutput()
205 outputGenerator: (DocumentationModule, StringBuilder) -> Unit in verifyOutput()
224 outputGenerator: (DocumentationModule, StringBuilder) -> Unit) { in verifyJavaOutput()
/external/dokka/core/src/test/kotlin/format/
DKotlinWebSiteFormatTest.kt50 private fun buildMultiplePlatforms(path: String): DocumentationModule { in <lambda>()
51 val module = DocumentationModule("test") in <lambda>()
68 private fun verifyMultiplatformPackage(module: DocumentationModule, path: String) { in <lambda>()
DKotlinWebSiteHtmlFormatTest.kt61 private fun buildMultiplePlatforms(path: String): DocumentationModule { in <lambda>()
62 val module = DocumentationModule("test") in <lambda>()
79 private fun verifyMultiplatformPackage(module: DocumentationModule, path: String) { in <lambda>()
DMarkdownFormatTest.kt326 val module = DocumentationModule("test") in <lambda>()
461 private fun buildMultiplePlatforms(path: String): DocumentationModule { in <lambda>()
462 val module = DocumentationModule("test") in <lambda>()
478 private fun verifyMultiplatformPackage(module: DocumentationModule, path: String) { in <lambda>()
484 private fun verifyMultiplatformIndex(module: DocumentationModule, path: String) { in <lambda>()
511 nodeFilter: (DocumentationModule) -> List<DocumentationNode> in <lambda>()
527 …fileName: String, withKotlinRuntime: Boolean = false, nodeFilter: (DocumentationModule) -> List<Do… in <lambda>()
DHtmlFormatTest.kt164 nodeFilter: (DocumentationModule) -> List<DocumentationNode>) { in <lambda>()
176 nodeFilter: (DocumentationModule) -> List<DocumentationNode>) { in <lambda>()
/external/dokka/core/src/test/kotlin/model/
DKotlinAsJavaTest.kt3 import org.jetbrains.dokka.DocumentationModule in <lambda>()
34 verifier: (DocumentationModule) -> Unit) { in verifyModelAsJava()
/external/dokka/core/src/main/kotlin/Formats/
DPackageListService.kt7 fun formatPackageList(module: DocumentationModule): String in <lambda>()
15 override fun formatPackageList(module: DocumentationModule): String { in formatPackageList()
DDacOutlineService.kt74 if (node is DocumentationModule) { in appendOutlineHeader()
129 if (node is DocumentationModule) { in appendOutlineHeader()
142 } else if (node.kind != NodeKind.AllTypes && !(node is DocumentationModule)) { in appendOutlineHeader()
/external/dokka/core/src/main/kotlin/javadoc/
Ddokka-adapters.kt14 val module = nodes.single() as DocumentationModule in buildPages()
Ddocbase.kt492 class ModuleNodeAdapter(val module: DocumentationModule, val reporter: DocErrorReporter, val output…
/external/dokka/core/src/main/kotlin/Generation/
DDokkaGenerator.kt34 private val documentationModule = DocumentationModule(moduleName) in <lambda>()
131 documentationModule: DocumentationModule, in hasErrors()
DFileGenerator.kt78 packageListService!!.formatPackageList(module as DocumentationModule)) in <lambda>()
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlPackageListService.kt26 override fun formatPackageList(module: DocumentationModule): String { in formatPackageList()
DJavaLayoutHtmlGenerator.kt157 … packageListFile.writeText(packageListService.formatPackageList(module as DocumentationModule)) in <lambda>()
/external/dokka/core/src/main/kotlin/Java/
DJavaPsiDocumentationBuilder.kt45 …fun appendFile(file: PsiJavaFile, module: DocumentationModule, packageContent: Map<String, Content… in appendFile()
79 …override fun appendFile(file: PsiJavaFile, module: DocumentationModule, packageContent: Map<String… in appendFile()
/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt460 fun DocumentationModule.appendFragments(fragments: Collection<PackageFragmentDescriptor>, in DocumentationModule() method
1012 …override fun appendFile(file: PsiJavaFile, module: DocumentationModule, packageContent: Map<String… in appendFile()
1152 fun DocumentationModule.prepareForGeneration(options: DocumentationOptions) { in DocumentationModule() method
/external/dokka/core/src/main/kotlin/Model/
DDocumentationNode.kt199 class DocumentationModule(name: String, content: Content = Content.Empty) class