Searched refs:KSAnnotationJavaImpl (Results 1 – 11 of 11) sorted by relevance
33 class KSAnnotationJavaImpl private constructor(val psi: PsiAnnotation) : KSAnnotation { in <lambda>() class34 companion object : KSObjectCache<PsiAnnotation, KSAnnotationJavaImpl>() { in <lambda>()35 fun getCached(psi: PsiAnnotation) = cache.getOrPut(psi) { KSAnnotationJavaImpl(psi) } in <lambda>()
48 is PsiAnnotation -> KSAnnotationJavaImpl.getCached(parentPsi) in <lambda>()54 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) } in <lambda>()
44 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
52 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
45 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
48 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
50 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) } in <lambda>()
58 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
67 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
27 import com.google.devtools.ksp.symbol.impl.java.KSAnnotationJavaImpl in <lambda>()340 … is PsiAnnotation -> KSAnnotationJavaImpl.getCached(psi.defaultValue as PsiAnnotation) in ValueParameterDescriptor()
269 is KSAnnotationJavaImpl -> KSAnnotationJavaImpl.getCached(node.psi) in getInstanceForCurrentRound()