Home
last modified time | relevance | path

Searched refs:annotationType (Results 1 – 25 of 26) sorted by relevance

12

/external/proguard/src/proguard/
DMemberSpecification.java34 public final String annotationType; field in MemberSpecification
73 String annotationType, in MemberSpecification() argument
79 this.annotationType = annotationType; in MemberSpecification()
100 …(this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.ann… in equals()
110 (annotationType == null ? 0 : annotationType.hashCode()) ^ in hashCode()
DClassSpecification.java38 public final String annotationType; field in ClassSpecification
71 classSpecification.annotationType, in ClassSpecification()
110 String annotationType, in ClassSpecification() argument
118 annotationType, in ClassSpecification()
159 String annotationType, in ClassSpecification() argument
169 this.annotationType = annotationType; in ClassSpecification()
226 …(this.annotationType == null ? other.annotationType == null : this.annotationType in equals()
240 (annotationType == null ? 0 : annotationType.hashCode() ) ^ in hashCode()
DClassSpecificationVisitorFactory.java226 String annotationType = classSpecification.annotationType; in createClassPoolVisitor() local
228 if (annotationType != null) in createClassPoolVisitor()
233 new AnnotationTypeFilter(annotationType, in createClassPoolVisitor()
480 if (memberSpecification.annotationType != null) in createClassVisitor()
485 new AnnotationTypeFilter(memberSpecification.annotationType, in createClassVisitor()
DConfigurationParser.java580 String annotationType = null; in parseClassSpecificationArguments() local
621 annotationType = in parseClassSpecificationArguments()
717 annotationType, in parseClassSpecificationArguments()
762 String annotationType = null; in parseMemberSpecificationArguments() local
773 annotationType = in parseMemberSpecificationArguments()
846 annotationType, in parseMemberSpecificationArguments()
852 annotationType, in parseMemberSpecificationArguments()
864 annotationType, in parseMemberSpecificationArguments()
876 annotationType, in parseMemberSpecificationArguments()
943 annotationType, in parseMemberSpecificationArguments()
[all …]
DConfigurationWriter.java403 if (classSpecification.annotationType != null) in writeOption()
406 writer.print(ClassUtil.externalType(classSpecification.annotationType)); in writeOption()
515 if (memberSpecification.annotationType != null) in writeFieldSpecification()
518 writer.println(ClassUtil.externalType(memberSpecification.annotationType)); in writeFieldSpecification()
557 if (memberSpecification.annotationType != null) in writeMethodSpecification()
560 writer.println(ClassUtil.externalType(memberSpecification.annotationType)); in writeMethodSpecification()
DFullyQualifiedClassNameChecker.java73 checkType(classSpecification.annotationType); in checkClassSpecifications()
98 checkType(memberSpecification.annotationType); in checkMemberSpecifications()
/external/junit/src/org/junit/experimental/theories/
DParameterSignature.java63 public <T extends Annotation> T findDeepAnnotation(Class<T> annotationType) { in findDeepAnnotation() argument
65 return findDeepAnnotation(annotations2, annotationType, 3); in findDeepAnnotation()
69 Annotation[] annotations, Class<T> annotationType, int depth) { in findDeepAnnotation() argument
73 if (annotationType.isInstance(each)) in findDeepAnnotation()
74 return annotationType.cast(each); in findDeepAnnotation()
75 Annotation candidate= findDeepAnnotation(each.annotationType() in findDeepAnnotation()
76 .getAnnotations(), annotationType, depth - 1); in findDeepAnnotation()
78 return annotationType.cast(candidate); in findDeepAnnotation()
84 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { in getAnnotation() argument
86 if (annotationType.isInstance(each)) in getAnnotation()
[all …]
/external/guava/guava/src/com/google/common/reflect/
DParameter.java64 @Override public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { in isAnnotationPresent() argument
65 return getAnnotation(annotationType) != null; in isAnnotationPresent()
70 public <A extends Annotation> A getAnnotation(Class<A> annotationType) { in getAnnotation() argument
71 checkNotNull(annotationType); in getAnnotation()
73 if (annotationType.isInstance(annotation)) { in getAnnotation()
74 return annotationType.cast(annotation); in getAnnotation()
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotationImpl.java44 private transient Class annotationType; field in AnnotationImpl
96 if (annotationType == null) { in getAnnotationType()
99 annotationType = classLoader.loadClass(typeName); in getAnnotationType()
107 return annotationType; in getAnnotationType()
190 Method[] methods = annotationType.getDeclaredMethods(); in hashCode()
250 Method[] methods = annotationType.getDeclaredMethods(); in checkEquals()
/external/proguard/src/proguard/gui/
DMemberSpecificationDialog.java328 String annotationType = memberSpecification.annotationType; in setMemberSpecification() local
333 …annotationTypeTextField.setText(annotationType == null ? "" : ClassUtil.externalType(annotationTyp… in setMemberSpecification()
371 String annotationType = annotationTypeTextField.getText(); in getMemberSpecification() local
377 annotationType = in getMemberSpecification()
378 annotationType.equals("") || in getMemberSpecification()
379 annotationType.equals("***") ? null : ClassUtil.internalType(annotationType); in getMemberSpecification()
407 new MemberSpecification(0, 0, annotationType, name, type); in getMemberSpecification()
DClassSpecificationDialog.java398 String annotationType = classSpecification.annotationType; in setClassSpecification() local
418 …annotationTypeTextField .setText(annotationType == null ? "" : ClassUtil.externalTyp… in setClassSpecification()
456 String annotationType = annotationTypeTextField.getText(); in getClassSpecification() local
465annotationType.equals("") ? null : ClassUtil.internalType(annotationType), in getClassSpecification()
/external/vogar/src/vogar/target/junit/
DJunit4.java100 if (Parameters.class.isAssignableFrom(a.annotationType())) { in findParameters()
134 Class<?> annotationClass = a.annotationType(); in isJunit4Test()
156 if (org.junit.Test.class.isAssignableFrom(a.annotationType())) { in isJunit4Test()
170 if (RunWith.class.isAssignableFrom(a.annotationType())) { in getSuiteTests()
184 if (SuiteClasses.class.isAssignableFrom(a.annotationType())) { in getSuiteTests()
261 if (annotation.isAssignableFrom(a.annotationType())) { in invokeMethodWithAnnotation()
271 if (org.junit.Test.class.isAssignableFrom(a.annotationType())) { in meetsExpectations()
/external/junit/src/org/junit/runner/
DDescription.java184 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { in getAnnotation() argument
186 if (each.annotationType().equals(annotationType)) in getAnnotation()
187 return annotationType.cast(each); in getAnnotation()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DAnnotationItem.java83 String annotationType = dexFile.getType(typeIndex);
84 return String.format("annotation_item[0x%x]: %s", annotationItemOffset, annotationType);
/external/mockito/src/org/mockito/internal/configuration/
DDefaultAnnotationEngine.java47 if (annotationProcessorMap.containsKey(annotation.annotationType())) { in forAnnotation()
48 … return (FieldAnnotationProcessor<A>) annotationProcessorMap.get(annotation.annotationType()); in forAnnotation()
/external/junit/src/org/junit/runners/model/
DFrameworkMethod.java153 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
154 return fMethod.getAnnotation(annotationType);
DTestClass.java53 Class<? extends Annotation> type= each.annotationType(); in addToAnnotationLists()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DEncodedValueWriter.java68 public void writeAnnotation(TypeKey annotationType, in writeAnnotation() argument
71 writer.writeUleb128(typeSection.getItemIndex(annotationType)); in writeAnnotation()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
DShadowWrangler.java320 String name = annos[i].annotationType().getName(); in isI18nSafe()
426 …if (annotation.annotationType().toString().equals("interface com.xtremelabs.robolectric.internal.I… in isOnShadowClass()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
DRobolectricTestRunner.java489 String name = annos[i].annotationType().getName();
509 if( anno.annotationType().getName().equals( "com.xtremelabs.robolectric.annotation.Values" )){
/external/icu/icu4c/source/layout/
DMorphTables.h340 annotationType = 24, enumerator
DMorphTables2.cpp139 case annotationType: in process()
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
DFeatureUtil.java198 Class<? extends Annotation> annotationClass = a.annotationType(); in getTesterAnnotations()
/external/doclava/src/com/google/doclava/
DConverter.java647 ClassInfo annotationType = Converter.obtainClass(a.annotationType());
654 return new AnnotationInstanceInfo(annotationType, elementValues);
/external/smali/smali/src/main/antlr3/
DsmaliTreeWalker.g284 …{ $encodedValue = new ImmutableAnnotationEncodedValue($subannotation.annotationType, $subannotatio…
1250 …$annotation = new ImmutableAnnotation(visibility, $subannotation.annotationType, $subannotation.el…
1259 subannotation returns[String annotationType, List<AnnotationElement> elements]
1269 $annotationType = $CLASS_DESCRIPTOR.text;

12