Home
last modified time | relevance | path

Searched refs:KSAnnotationJavaImpl (Results 1 – 11 of 11) sorted by relevance

/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/java/
DKSAnnotationJavaImpl.kt33 class KSAnnotationJavaImpl private constructor(val psi: PsiAnnotation) : KSAnnotation { in <lambda>() class
34 companion object : KSObjectCache<PsiAnnotation, KSAnnotationJavaImpl>() { in <lambda>()
35 fun getCached(psi: PsiAnnotation) = cache.getOrPut(psi) { KSAnnotationJavaImpl(psi) } in <lambda>()
DKSValueParameterJavaImpl.kt48 is PsiAnnotation -> KSAnnotationJavaImpl.getCached(parentPsi) in <lambda>()
54 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) } in <lambda>()
DKSTypeArgumentJavaImpl.kt44 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
DKSTypeParameterJavaImpl.kt45 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
DKSPropertyDeclarationJavaImpl.kt52 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
DKSFunctionDeclarationJavaImpl.kt48 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
DKSClassDeclarationJavaEnumEntryImpl.kt50 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) } in <lambda>()
DKSClassDeclarationJavaImpl.kt58 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
DKSTypeReferenceJavaImpl.kt67 psi.annotations.asSequence().map { KSAnnotationJavaImpl.getCached(it) }.memoized() in <lambda>()
/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/binary/
DKSAnnotationDescriptorImpl.kt27 import com.google.devtools.ksp.symbol.impl.java.KSAnnotationJavaImpl in <lambda>()
340 … is PsiAnnotation -> KSAnnotationJavaImpl.getCached(psi.defaultValue as PsiAnnotation) in ValueParameterDescriptor()
/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/
Dutils.kt269 is KSAnnotationJavaImpl -> KSAnnotationJavaImpl.getCached(node.psi) in getInstanceForCurrentRound()