Home
last modified time | relevance | path

Searched refs:annotationClassName (Results 1 – 12 of 12) sorted by relevance

/external/dagger2/java/dagger/hilt/android/processor/internal/bindvalue/
DBindValueMetadata.java96 ClassName annotationClassName = bindValues.get(0); in create() local
102 annotationClassName.simpleName(), in create()
115 annotationClassName.simpleName(), in create()
122 annotationClassName.simpleName(), in create()
130 annotationClassName.simpleName(), in create()
138 annotationClassName.simpleName(), in create()
143 if (BIND_VALUE_INTO_MAP_ANNOTATIONS.contains(annotationClassName)) { in create()
155 annotationClassName.simpleName()); in create()
164 annotationClassName.simpleName(), in create()
169 annotationClassName, in create()
DBindValueGenerator.java145 ClassName annotationClassName = bindValue.annotationName(); in providesMethod() local
146 if (BindValueMetadata.BIND_VALUE_INTO_MAP_ANNOTATIONS.contains(annotationClassName)) { in providesMethod()
152 } else if (BindValueMetadata.BIND_VALUE_INTO_SET_ANNOTATIONS.contains(annotationClassName)) { in providesMethod()
154 } else if (BindValueMetadata.BIND_ELEMENTS_INTO_SET_ANNOTATIONS.contains(annotationClassName)) { in providesMethod()
DBindValueProcessor.java74 ClassName annotationClassName = ClassName.get(annotation); in processEach() local
88 annotationClassName.simpleName(), in processEach()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DAddAnnotation.java136 String annotationClassName = annotationClass.getName(); in fromJsonFile() local
168 "Unknown property type: " + propertyType + " for " + annotationClassName); in fromJsonFile()
205 public static AddAnnotation markerAnnotationFromFlatFile(String annotationClassName, Path file) { in markerAnnotationFromFlatFile() argument
208 return markerAnnotationFromLocators(annotationClassName, locators); in markerAnnotationFromFlatFile()
218 public static AddAnnotation markerAnnotationFromLocators(String annotationClassName, in markerAnnotationFromLocators() argument
220 AnnotationClass annotationClass = new AnnotationClass(annotationClassName); in markerAnnotationFromLocators()
243 String annotationClassName, in markerAnnotationWithPropertyFromFlatFile() argument
251 annotationClassName, propertyName, propertyClass, propertyValue, locators); in markerAnnotationWithPropertyFromFlatFile()
265 String annotationClassName, in markerAnnotationWithPropertyFromLocators() argument
271 new AnnotationClass(annotationClassName).addProperty(propertyName, propertyClass); in markerAnnotationWithPropertyFromLocators()
/external/dagger2/java/dagger/android/processor/
DMoreDaggerElements.java49 String annotationClassName = annotationName.canonicalName(); in getAnnotationMirror() local
53 if (annotationTypeElement.getQualifiedName().contentEquals(annotationClassName)) { in getAnnotationMirror()
/external/robolectric/errorprone/src/main/java/org/robolectric/errorprone/bugpatterns/
DRobolectricShadow.java75 String annotationClassName = ident.sym.getQualifiedName().toString(); in matchClass() local
76 if ("org.robolectric.annotation.Implements".equals(annotationClassName)) { in matchClass()
195 String annotationClassName = ident.sym.getQualifiedName().toString(); in processImplementationMethod() local
196 if ("java.lang.Override".equals(annotationClassName)) { in processImplementationMethod()
200 if ("org.robolectric.annotation.HiddenApi".equals(annotationClassName)) { in processImplementationMethod()
/external/dagger2/java/dagger/hilt/android/processor/internal/androidentrypoint/
DAndroidEntryPointMetadata.java222 ClassName annotationClassName = in of() local
230 annotationClassName.simpleName()); in of()
237 annotationClassName.simpleName()); in of()
242 Processors.getAnnotationMirror(androidEntryPointElement, annotationClassName), in of()
275 annotationClassName.simpleName()); in of()
288 annotationClassName.simpleName(), in of()
/external/dagger2/java/dagger/hilt/processor/internal/
DBaseProcessor.java78 abstract ClassName annotationClassName(); in annotationClassName() method in BaseProcessor.ProcessingState
90 return elements.getTypeElement(annotationClassName().toString()); in element()
DProcessors.java606 public static AnnotationMirror getAnnotationMirror(Element element, String annotationClassName) {
607 return getAnnotationMirror(element, ClassName.bestGuess(annotationClassName));
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoValueishProcessor.java95 private final String annotationClassName; field in AutoValueishProcessor
104 AutoValueishProcessor(String annotationClassName, boolean appliesToInterfaces) { in AutoValueishProcessor() argument
105 this.annotationClassName = annotationClassName; in AutoValueishProcessor()
124 annotationType = elementUtils().getTypeElement(annotationClassName); in init()
358 + annotationClassName in process()
/external/dagger2/java/dagger/internal/codegen/langmodel/
DDaggerElements.java183 String annotationClassName = annotationName.canonicalName(); in getAnnotationMirror() local
187 if (annotationTypeElement.getQualifiedName().contentEquals(annotationClassName)) { in getAnnotationMirror()
/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt1038 val annotationClassName = type.constructor.declarationDescriptor?.fqNameSafe?.asString() in AnnotationDescriptor() constant
1039 return annotationClassName == KotlinBuiltIns.FQ_NAMES.extensionFunctionType.asString() in AnnotationDescriptor()