Home
last modified time | relevance | path

Searched refs:KSClassifierReferenceJavaImpl (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/java/
H A DKSClassifierReferenceJavaImpl.kt28 class KSClassifierReferenceJavaImpl private constructor( class
32 companion object : KSObjectCache<Pair<PsiClassType, KSNode>, KSClassifierReferenceJavaImpl>() {
33 fun getCached(psi: PsiClassType, parent: KSNode): KSClassifierReferenceJavaImpl { in getCached()
35 … return cache.getOrPut(Pair(psi, curParent)) { KSClassifierReferenceJavaImpl(psi, curParent) } in getCached()
H A DKSTypeReferenceJavaImpl.kt94 is PsiClassType -> KSClassifierReferenceJavaImpl.getCached(type, this) in <lambda>()
95 …is PsiWildcardType -> KSClassifierReferenceJavaImpl.getCached(type.extendsBound as PsiClassType, t… in <lambda>()
/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/
H A Dutils.kt271 … is KSClassifierReferenceJavaImpl -> KSClassifierReferenceJavaImpl.getCached(node.psi, node.parent) in getInstanceForCurrentRound()