Home
last modified time | relevance | path

Searched refs:KSValueParameterJavaImpl (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/java/
H A DKSValueParameterJavaImpl.kt28 class KSValueParameterJavaImpl private constructor(val psi: PsiParameter) : KSValueParameter { class
29 companion object : KSObjectCache<PsiParameter, KSValueParameterJavaImpl>() {
30 fun getCached(psi: PsiParameter) = cache.getOrPut(psi) { KSValueParameterJavaImpl(psi) } in <lambda>()
H A DKSFunctionDeclarationJavaImpl.kt82 psi.parameterList.parameters.map { KSValueParameterJavaImpl.getCached(it) } in <lambda>()
H A DKSAnnotationJavaImpl.kt57 is PsiParameter -> KSValueParameterJavaImpl.getCached(parentPsi) in <lambda>()
/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/
H A Dutils.kt264 is KSValueParameterJavaImpl -> KSValueParameterJavaImpl.getCached(node.psi) in getInstanceForCurrentRound()