Searched refs:getAnnotatedAnnotations (Results 1 – 10 of 10) sorted by relevance
/external/dagger2/java/dagger/android/processor/ |
D | AndroidMapKeyValidator.java | 19 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()
|
D | AndroidInjectorDescriptor.java | 19 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()
|
D | DuplicateAndroidInjectorsChecker.java | 19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations; 133 .map(bindingElement -> getAnnotatedAnnotations(bindingElement, MapKey.class)) in mapKey()
|
/external/dagger2/java/dagger/internal/codegen/kotlin/ |
D | KotlinMetadataUtil.java | 19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations; 72 .map(methodElement -> getAnnotatedAnnotations(methodElement, annotationType).asList()) in getSyntheticPropertyAnnotations()
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | MapKeys.java | 19 import static com.google.auto.common.AnnotationMirrors.getAnnotatedAnnotations; 73 return getAnnotatedAnnotations(bindingElement, MapKey.class); in getMapKeys()
|
D | InjectionAnnotations.java | 87 AnnotationMirrors.getAnnotatedAnnotations(element, Qualifier.class); in getQualifiers()
|
/external/dagger2/java/dagger/internal/codegen/base/ |
D | Scopes.java | 75 return AnnotationMirrors.getAnnotatedAnnotations(element, javax.inject.Scope.class) in scopesOf()
|
/external/auto/common/src/main/java/com/google/auto/common/ |
D | AnnotationMirrors.java | 143 public static ImmutableSet<? extends AnnotationMirror> getAnnotatedAnnotations(Element element, in getAnnotatedAnnotations() method in AnnotationMirrors
|
/external/dagger2/java/dagger/internal/codegen/validation/ |
D | ModuleValidator.java | 19 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/ |
D | Processors.java | 738 AnnotationMirrors.getAnnotatedAnnotations(element, Qualifier.class);
|