Home
last modified time | relevance | path

Searched refs:tryGetMainUri (Results 1 – 2 of 2) sorted by relevance

/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlGenerator.kt41 override fun tryGetMainUri(node: DocumentationNode): URI? { in <lambda>() method in org.jetbrains.dokka.Formats.JavaLayoutHtmlFormatGenerator
53 tryGetMainUri(owner.companion!!)?.resolveInPage(originalFunction) in <lambda>()
55 tryGetMainUri(owner)?.resolveInPage(node) in <lambda>()
58 ….Parameter -> node.path.asReversed().drop(1).firstNotNullResult(this::tryGetMainUri)?.resolveInPag… in <lambda>()
DJavaLayoutHtmlFormat.kt57 fun tryGetMainUri(node: DocumentationNode): URI? in generateOutlines() method
60 …fun mainUri(node: DocumentationNode): URI = tryGetMainUri(node) ?: error("Unsupported ${node.kind}… in generateOutlines()
72 fun mainUriOrWarn(node: DocumentationNode): URI? = tryGetMainUri(node) ?: (null).also { in generateOutlines()