HomeSort by relevance Sort by last modified time
    Searched defs:annotationType (Results 1 - 25 of 467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/scene-lib/src/annotations/el/
DefException.java 18 public final String annotationType;
20 DefException(String annotationType) {
21 super("Conflicting definition of annotation type " + annotationType);
22 this.annotationType = annotationType;
  /libcore/ojluni/src/main/java/java/lang/annotation/
IncompleteAnnotationException.java 44 private Class<? extends Annotation> annotationType;
51 * @param annotationType the Class object for the annotation type
56 Class<? extends Annotation> annotationType,
58 super(annotationType.getName() + " missing element " +
61 this.annotationType = annotationType;
72 public Class<? extends Annotation> annotationType() {
73 return annotationType;
Annotation.java 135 Class<? extends Annotation> annotationType();
  /external/proguard/src/proguard/
MemberSpecification.java 34 public final String annotationType;
59 * @param annotationType the name of the class that must be an
73 String annotationType,
79 this.annotationType = annotationType;
100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) &&
110 (annotationType == null ? 0 : annotationType.hashCode())
    [all...]
ClassSpecification.java 38 public final String annotationType;
71 classSpecification.annotationType,
90 * @param annotationType the name of the class that must be an
110 String annotationType,
118 annotationType,
137 * @param annotationType the name of the class that must be an
159 String annotationType,
169 this.annotationType = annotationType;
226 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotat (…)
    [all...]
ClassSpecificationVisitorFactory.java 226 String annotationType = classSpecification.annotationType;
228 if (annotationType != null)
233 new AnnotationTypeFilter(annotationType,
480 if (memberSpecification.annotationType != null)
485 new AnnotationTypeFilter(memberSpecification.annotationType,
  /external/guice/core/src/com/google/inject/internal/
Annotations.java 59 public static boolean isMarker(Class<? extends Annotation> annotationType) {
60 return annotationType.getDeclaredMethods().length == 0;
63 public static boolean isAllDefaultMethods(Class<? extends Annotation> annotationType) {
65 for (Method m : annotationType.getDeclaredMethods()) {
87 public static <T extends Annotation> T generateAnnotation(Class<T> annotationType) {
89 isAllDefaultMethods(annotationType), "%s is not all default methods", annotationType);
90 return (T)cache.getUnchecked(annotationType);
93 private static <T extends Annotation> T generateAnnotationImpl(final Class<T> annotationType) {
94 final Map<String, Object> members = resolveMembers(annotationType);
    [all...]
ScopeBindingProcessor.java 40 Class<? extends Annotation> annotationType = checkNotNull(command.getAnnotationType(), "annotation type");
42 if (!Annotations.isScopeAnnotation(annotationType)) {
43 errors.missingScopeAnnotation(annotationType);
47 if (!Annotations.isRetainedAtRuntime(annotationType)) {
48 errors.missingRuntimeRetention(annotationType);
52 ScopeBinding existing = injector.state.getScopeBinding(annotationType);
55 errors.duplicateScopes(existing, annotationType, scope);
58 injector.state.putScopeBinding(annotationType, command);
UniqueAnnotations.java 48 public Class<? extends Annotation> annotationType() {
  /external/guice/core/src/com/google/inject/name/
NamedImpl.java 54 public Class<? extends Annotation> annotationType() {
  /external/guice/core/src/com/google/inject/spi/
ScopeBinding.java 39 private final Class<? extends Annotation> annotationType;
42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) {
44 this.annotationType = checkNotNull(annotationType, "annotationType");
53 return annotationType;
65 binder.withSource(getSource()).bindScope(annotationType, scope);
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
RealElement.java 62 @Override public Class<? extends Annotation> annotationType() {
95 Class<? extends Annotation> annotationType = key.getAnnotationType();
96 if (annotation != null && !Annotations.isMarker(annotationType)) {
Indexer.java 59 final Element.Type annotationType;
72 this.annotationType = annotation.type();
83 && annotationType == o.annotationType
89 return Objects.hashCode(type, scope, typeLiteral, annotationType, annotationName,
  /platform_testing/libraries/device-collectors/src/main/java/android/device/loggers/
TestLogData.java 85 public Class<? extends Annotation> annotationType() {
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
TestDescriptionTest.java 36 public Class<? extends Annotation> annotationType() {
44 public Class<? extends Annotation> annotationType() {
  /external/junit/src/main/java/org/junit/validator/
AnnotationsValidator.java 63 Class<? extends Annotation> annotationType = annotation
64 .annotationType();
65 ValidateWith validateWith = annotationType
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
ShortNameFactory.java 53 Class<? extends Annotation> annotationType = key.getAnnotationType();
55 annotationType = annotation.annotationType();
58 String canonicalName = annotationType.getName();
59 String simpleName = annotationType.getSimpleName();
62 } else if (annotationType != null) {
63 return "@" + annotationType.getSimpleName();
  /external/guice/extensions/jmx/src/com/google/inject/tools/jmx/
Manager.java 68 Class<? extends Annotation> annotationType = key.getAnnotationType();
69 if (annotationType != null) {
71 .append(quote("@" + annotationType.getName()));
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliAnnotationElementName.java 87 String annotationType = smaliAnnotation.getQualifiedName();
88 if (annotationType == null) {
93 PsiClass annotationClass = facade.findClass(annotationType, getResolveScope());
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 97 Class<? extends Annotation> annotationType) {
98 Retention retention = annotationType.getAnnotation(Retention.class);
100 "Annotation %s is missing RUNTIME retention", annotationType.getSimpleName());
108 final Class<? extends Annotation> annotationType) {
109 return new AnnotatedWithType(annotationType);
114 private final Class<? extends Annotation> annotationType;
116 public AnnotatedWithType(Class<? extends Annotation> annotationType) {
117 this.annotationType = checkNotNull(annotationType, "annotation type");
118 checkForRuntimeRetention(annotationType);
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentDescriptor.java 79 private final Class<? extends Annotation> annotationType;
85 * {@linkplain #annotationType() annotation types}.
93 if (MoreElements.isAnnotationPresent(element, kind.annotationType())) {
103 Class<? extends Annotation> annotationType,
106 this.annotationType = annotationType;
111 Class<? extends Annotation> annotationType() {
112 return annotationType;
270 getAnnotationMirror(componentDefinitionType, kind.annotationType())
  /external/guice/core/test/com/google/inject/
BindingAnnotationTest.java 155 public Class<? extends Annotation> annotationType() {
  /external/guice/core/test/com/google/inject/spi/
ElementSourceTest.java 48 Class<? extends Annotation> annotationType = binding.getKey().getAnnotationType();
49 if (annotationType != null && annotationType.equals(SampleAnnotation.class)) {
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
Validator.java 28 final protected TypeElement annotationType;
60 public Validator(RobolectricModel model, ProcessingEnvironment env, String annotationType) {
66 this.annotationType = elements.getTypeElement(annotationType);
71 currentAnnotation = model.getAnnotationMirror(currentElement, annotationType);
100 return annotationType;
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-annotations/4.5/
antlr4-annotations-4.5.jar 

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>