Home
last modified time | relevance | path

Searched refs:sourcePsi (Results 1 – 6 of 6) sorted by relevance

/external/dokka/core/src/main/kotlin/Kotlin/
DKotlinAsJavaElementSignatureProvider.kt21 val sourcePsi = forDesc.sourcePsi() in signature() constant
22 return getSignature(sourcePsi?.javaLikePsi()) ?: in signature()
23 "not implemented for $forDesc with psi: $sourcePsi" in signature()
DDocumentationBuilder.kt798 val psi = sourcePsi() in PropertyDescriptor()
1053 return hasSuppressDocTag(sourcePsi()) || hasHideAnnotation(sourcePsi()) in isDocumentationSuppressed()
1056 fun DeclarationDescriptor.sourcePsi() = in DeclarationDescriptor() method
1137 val psi = sourcePsi() in DeclarationDescriptor()
DExternalDocumentationLinkResolver.kt220 val psi = symbol.sourcePsi() as? PsiMethod in getPath()
DDescriptorDocumentationParser.kt72 ?.takeIf { it != descriptor.original.sourcePsi() } in <lambda>()
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlPackageListService.kt66 val sourcePsi = symbol.sourcePsi() ?: return null in getJavaPagePath() constant
67 val source = (if (sourcePsi is KtDeclaration) { in getJavaPagePath()
68 sourcePsi.toLightElements().firstOrNull() in getJavaPagePath()
70 sourcePsi in getJavaPagePath()
126 val param = it.sourcePsi() as PsiParameter in DeclarationDescriptor()
/external/dokka/core/src/main/kotlin/Generation/
DDokkaGenerator.kt66 … val containingFilePath = descriptor.sourcePsi()?.containingFile?.virtualFile?.canonicalPath in <lambda>()