Home
last modified time | relevance | path

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

/external/dagger2/java/dagger/android/processor/
DAndroidMapKeyValidator.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
87 if (!getAnnotatedAnnotations(method, Qualifier.class).isEmpty()) { in validateMethod()
97 if (!getAnnotatedAnnotations(method, Scope.class).isEmpty()) { in validateMethod()
103 getOnlyElement(getAnnotatedAnnotations(method, MapKey.class)); in validateMethod()
DAndroidInjectorDescriptor.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
134 for (AnnotationMirror scope : getAnnotatedAnnotations(method, Scope.class)) { in createIfValid()
138 for (AnnotationMirror qualifier : getAnnotatedAnnotations(method, Qualifier.class)) { in createIfValid()
DDuplicateAndroidInjectorsChecker.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
133 .map(bindingElement -> getAnnotatedAnnotations(bindingElement, MapKey.class)) in mapKey()
/external/dagger2/java/dagger/internal/codegen/kotlin/
DKotlinMetadataUtil.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
72 .map(methodElement -> getAnnotatedAnnotations(methodElement, annotationType).asList()) in getSyntheticPropertyAnnotations()
/external/dagger2/java/dagger/internal/codegen/binding/
DMapKeys.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
73 return getAnnotatedAnnotations(bindingElement, MapKey.class); in getMapKeys()
DInjectionAnnotations.java87 AnnotationMirrors.getAnnotatedAnnotations(element, Qualifier.class); in getQualifiers()
/external/dagger2/java/dagger/internal/codegen/base/
DScopes.java75 return AnnotationMirrors.getAnnotatedAnnotations(element, javax.inject.Scope.class) in scopesOf()
/external/auto/common/src/main/java/com/google/auto/common/
DAnnotationMirrors.java143 public static ImmutableSet<? extends AnnotationMirror> getAnnotatedAnnotations(Element element, in getAnnotatedAnnotations() method in AnnotationMirrors
/external/dagger2/java/dagger/internal/codegen/validation/
DModuleValidator.java19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations;
612 for (AnnotationMirror scope : getAnnotatedAnnotations(module, Scope.class)) { in validateNoScopeAnnotationsOnModuleElement()
/external/dagger2/java/dagger/hilt/processor/internal/
DProcessors.java738 AnnotationMirrors.getAnnotatedAnnotations(element, Qualifier.class);