Searched refs:annotationType (Results 1 - 25 of 35) sorted by relevance

12

/external/proguard/src/proguard/
H A DMemberSpecification.java34 public final String annotationType; field in class:MemberSpecification
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
71 MemberSpecification(int requiredSetAccessFlags, int requiredUnsetAccessFlags, String annotationType, String name, String descriptor) argument
[all...]
H A DClassSpecification.java38 public final String annotationType; field in class:ClassSpecification
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
107 ClassSpecification(String comments, int requiredSetAccessFlags, int requiredUnsetAccessFlags, String annotationType, String className, String extendsAnnotationType, String extendsClassName) argument
156 ClassSpecification(String comments, int requiredSetAccessFlags, int requiredUnsetAccessFlags, String annotationType, String className, String extendsAnnotationType, String extendsClassName, List fieldSpecifications, List methodSpecifications) argument
[all...]
H A DClassSpecificationVisitorFactory.java206 String annotationType = classSpecification.annotationType;
208 if (annotationType != null)
213 new AnnotationTypeFilter(annotationType,
460 if (memberSpecification.annotationType != null)
465 new AnnotationTypeFilter(memberSpecification.annotationType,
H A DFullyQualifiedClassNameChecker.java70 checkType(classSpecification.annotationType);
95 checkType(memberSpecification.annotationType);
H A DConfigurationParser.java506 String annotationType = null;
518 // annotationType =
554 annotationType =
642 annotationType,
686 String annotationType = null;
697 annotationType =
768 annotationType,
774 annotationType,
786 annotationType,
798 annotationType,
[all...]
H A DConfigurationWriter.java402 if (classSpecification.annotationType != null)
405 writer.print(ClassUtil.externalType(classSpecification.annotationType));
514 if (memberSpecification.annotationType != null)
517 writer.println(ClassUtil.externalType(memberSpecification.annotationType));
556 if (memberSpecification.annotationType != null)
559 writer.println(ClassUtil.externalType(memberSpecification.annotationType));
/external/junit/src/org/junit/experimental/theories/
H A DParameterSignature.java63 public <T extends Annotation> T findDeepAnnotation(Class<T> annotationType) { argument
65 return findDeepAnnotation(annotations2, annotationType, 3);
69 Annotation[] annotations, Class<T> annotationType, int depth) {
73 if (annotationType.isInstance(each))
74 return annotationType.cast(each);
75 Annotation candidate= findDeepAnnotation(each.annotationType()
76 .getAnnotations(), annotationType, depth - 1);
78 return annotationType.cast(candidate);
84 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { argument
86 if (annotationType
68 findDeepAnnotation( Annotation[] annotations, Class<T> annotationType, int depth) argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedSubValue.java45 public final TypeIdItem annotationType; field in class:AnnotationEncodedSubValue
56 annotationType = dexFile.TypeIdsSection.getItemByIndex(in.readUnsignedLeb128());
69 * @param annotationType The type of the annotation
73 public AnnotationEncodedSubValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) { argument
74 this.annotationType = annotationType;
84 out.annotate("annotation_type: " + annotationType.getTypeDescriptor());
85 out.writeUnsignedLeb128(annotationType.getIndex());
104 offset = offset + Leb128Utils.unsignedLeb128Size(annotationType.getIndex());
119 int comp = annotationType
[all...]
H A DAnnotationEncodedValue.java51 * @param annotationType The type of the annotation
55 public AnnotationEncodedValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) { argument
56 super(annotationType, names, values);
/external/junit/src/org/junit/runner/
H A DDescription.java181 * @return the annotation of type annotationType that is attached to this description node,
184 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { argument
186 if (each.annotationType().equals(annotationType))
187 return annotationType.cast(each);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DAnnotationFormatter.java57 ReferenceFormatter.writeTypeReference(writer, annotationItem.getEncodedAnnotation().annotationType);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
H A DAnnotationEncodedValueAdaptor.java42 ReferenceFormatter.writeTypeReference(writer, encodedAnnotation.annotationType);
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java44 private transient Class annotationType; field in class:AnnotationImpl
51 JDK_ANNOTATION_TYPE_METHOD = clazz.getMethod("annotationType", (Class[])null);
96 if (annotationType == null) {
99 annotationType = classLoader.loadClass(typeName);
107 return annotationType;
123 * <code>AnnotationImpl</code>. The <code>annotationType()</code> method
140 else if ("annotationType".equals(name)
190 Method[] methods = annotationType.getDeclaredMethods();
250 Method[] methods = annotationType.getDeclaredMethods();
/external/proguard/src/proguard/gui/
H A DMemberSpecificationDialog.java322 String annotationType = memberSpecification.annotationType;
327 annotationTypeTextField.setText(annotationType == null ? "" : ClassUtil.externalType(annotationType));
362 String annotationType = annotationTypeTextField.getText();
368 annotationType =
369 annotationType.equals("") ||
370 annotationType.equals("***") ? null : ClassUtil.internalType(annotationType);
398 new MemberSpecification(0, 0, annotationType, nam
[all...]
H A DClassSpecificationDialog.java382 String annotationType = classSpecification.annotationType;
401 annotationTypeTextField .setText(annotationType == null ? "" : ClassUtil.externalType(annotationType));
437 String annotationType = annotationTypeTextField.getText();
446 annotationType.equals("") ? null : ClassUtil.internalType(annotationType),
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationSetItem.java99 int annotationItemIndex = annotationItem.getEncodedAnnotation().annotationType.getIndex();
100 int annotationItemIndex2 = annotationItem2.getEncodedAnnotation().annotationType.getIndex();
115 annotationItem.getEncodedAnnotation().annotationType.getTypeDescriptor());
/external/junit/src/org/junit/runners/model/
H A DFrameworkMethod.java150 * Returns the annotation of type {@code annotationType} on this method, if
153 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { argument
154 return fMethod.getAnnotation(annotationType);
H A DTestClass.java53 Class<? extends Annotation> type= each.annotationType();
/external/mockito/src/org/mockito/internal/configuration/
H A DDefaultAnnotationEngine.java47 if (annotationProcessorMap.containsKey(annotation.annotationType())) {
48 return (FieldAnnotationProcessor<A>) annotationProcessorMap.get(annotation.annotationType());
/external/icu4c/layout/
H A DMorphTables.h335 annotationType = 24, enumerator in enum:__anon19265
H A DMorphTables2.cpp126 case annotationType:
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricTestRunner.java489 String name = annos[i].annotationType().getName();
509 if( anno.annotationType().getName().equals( "com.xtremelabs.robolectric.annotation.Values" )){
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DShadowWrangler.java320 String name = annos[i].annotationType().getName();
426 if (annotation.annotationType().toString().equals("interface com.xtremelabs.robolectric.internal.Implements")) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DFeatureUtil.java200 Class<? extends Annotation> annotationClass = a.annotationType();
/external/doclava/src/com/google/doclava/
H A DConverter.java584 ClassInfo annotationType = Converter.obtainClass(a.annotationType());
591 return new AnnotationInstanceInfo(annotationType, elementValues);

Completed in 1376 milliseconds

12