Searched refs:KSTypeReferenceJavaImpl (Results 1 – 10 of 10) sorted by relevance
/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/java/ |
H A D | KSTypeReferenceJavaImpl.kt | 54 class KSTypeReferenceJavaImpl private constructor(val psi: PsiType, override val parent: KSNode?) :… class 55 companion object : KSObjectCache<Pair<PsiType, KSNode?>, KSTypeReferenceJavaImpl>() { 57 .getOrPut(Pair(psi, parent)) { KSTypeReferenceJavaImpl(psi, parent) } in getCached()
|
H A D | KSTypeArgumentJavaImpl.kt | 49 KSTypeReferenceJavaImpl.getCached(psi, this) in <lambda>()
|
H A D | KSValueParameterJavaImpl.kt | 76 KSTypeReferenceJavaImpl.getCached(psi.type, this) in <lambda>()
|
H A D | KSPropertyDeclarationJavaImpl.kt | 84 KSTypeReferenceJavaImpl.getCached(psi.type, this) in <lambda>()
|
H A D | KSTypeParameterJavaImpl.kt | 49 … psi.extendsListTypes.asSequence().map { KSTypeReferenceJavaImpl.getCached(it, this) }.memoized() in <lambda>()
|
H A D | KSFunctionDeclarationJavaImpl.kt | 96 KSTypeReferenceJavaImpl.getCached(psi.returnType!!, this) in <lambda>()
|
H A D | KSAnnotationJavaImpl.kt | 61 else KSTypeReferenceJavaImpl.getCached(parentPsi, this) in <lambda>()
|
H A D | KSClassDeclarationJavaImpl.kt | 149 adjusted.asSequence().map { KSTypeReferenceJavaImpl.getCached(it, this) }.memoized() in <lambda>()
|
/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/ |
H A D | utils.kt | 262 is KSTypeReferenceJavaImpl -> in getInstanceForCurrentRound() 263 …KSTypeReferenceJavaImpl.getCached(node.psi, (node.parent as? KSAnnotated)?.getInstanceForCurrentRo… in getInstanceForCurrentRound()
|
/aosp_15_r20/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/processing/impl/ |
H A D | ResolverImpl.kt | 733 is KSTypeReferenceJavaImpl -> { in <lambda>()
|