Home
last modified time | relevance | path

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

/external/dagger2/java/dagger/hilt/android/processor/internal/bindvalue/
DBindValueMetadata.java97 ClassName annotationClassName = bindValues.get(0); in create() local
103 annotationClassName.simpleName(), in create()
116 annotationClassName.simpleName(), in create()
123 annotationClassName.simpleName(), in create()
131 annotationClassName.simpleName(), in create()
139 annotationClassName.simpleName(), in create()
144 if (BIND_VALUE_INTO_MAP_ANNOTATIONS.contains(annotationClassName)) { in create()
156 annotationClassName.simpleName()); in create()
165 annotationClassName.simpleName(), in create()
170 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/hilt/android/processor/internal/androidentrypoint/
DAndroidEntryPointMetadata.java223 ClassName annotationClassName = in of() local
231 annotationClassName.simpleName()); in of()
238 annotationClassName.simpleName()); in of()
243 Processors.getAnnotationMirror(androidEntryPointElement, annotationClassName), in of()
276 annotationClassName.simpleName()); in of()
289 annotationClassName.simpleName(), in of()
/external/dagger2/java/dagger/hilt/processor/internal/
DBaseProcessor.java77 abstract ClassName annotationClassName(); in annotationClassName() method in BaseProcessor.ProcessingState
89 return elements.getTypeElement(annotationClassName().toString()); in element()
DProcessors.java575 public static AnnotationMirror getAnnotationMirror(Element element, String annotationClassName) {
576 return getAnnotationMirror(element, ClassName.bestGuess(annotationClassName));
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoValueOrOneOfProcessor.java90 private final String annotationClassName; field in AutoValueOrOneOfProcessor
99 AutoValueOrOneOfProcessor(String annotationClassName) { in AutoValueOrOneOfProcessor() argument
100 this.annotationClassName = annotationClassName; in AutoValueOrOneOfProcessor()
277 annotationType = elementUtils().getTypeElement(annotationClassName); in process()
286 + annotationClassName in process()
/external/auto/common/src/main/java/com/google/auto/common/
DMoreElements.java234 String annotationClassName = annotationClass.getCanonicalName(); in getAnnotationMirror() local
237 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()