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

1 2 3 4 5 6 7 8

  /external/vogar/src/vogar/target/junit/
Junit4.java 45 Class<?> annotationClass = a.annotationType();
47 if (RunWith.class.isAssignableFrom(annotationClass)) {
55 } else if (Suite.SuiteClasses.class.isAssignableFrom(annotationClass)) {
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 36 Class<? extends Annotation> annotationClass) {
39 annotationClass),
40 annotationClass.getAnnotation(TesterAnnotation.class));
42 annotationClass.getAnnotation(Retention.class);
44 String.format("%s must have a @Retention annotation.", annotationClass),
47 String.format("%s must have RUNTIME RetentionPolicy.", annotationClass),
50 String.format("%s must be inherited.", annotationClass),
51 annotationClass.getAnnotation(Inherited.class));
56 method = annotationClass.getMethod(propertyName);
59 annotationClass, propertyName))
    [all...]
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestPredicates.java 41 public static Predicate<TestMethod> hasAnnotation(Class<? extends Annotation> annotationClass) {
42 return new HasAnnotation(annotationClass);
47 private final Class<? extends Annotation> annotationClass;
49 private HasAnnotation(Class<? extends Annotation> annotationClass) {
50 this.annotationClass = annotationClass;
55 return testMethod.getAnnotation(annotationClass) != null ||
56 testMethod.getEnclosingClass().getAnnotation(annotationClass) != null;
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliAnnotationElementName.java 93 PsiClass annotationClass = facade.findClass(annotationType, getResolveScope());
94 if (annotationClass == null) {
98 for (PsiMethod method : annotationClass.findMethodsByName(getName(), true)) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 198 Class<? extends Annotation> annotationClass = a.annotationType();
199 if (annotationClass.isAnnotationPresent(TesterAnnotation.class)) {
217 Class<? extends Annotation> annotationClass = testerAnnotation.annotationType();
221 presentFeatures = (Feature[]) annotationClass.getMethod("value")
223 absentFeatures = (Feature[]) annotationClass.getMethod("absent")
  /frameworks/base/core/java/android/os/health/
HealthKeys.java 99 final Class<Constant> annotationClass = Constant.class;
110 final Constant constant = field.getAnnotation(annotationClass);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.5/
kotlin-annotation-processing-1.0.5.jar 
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 488 Class<? extends Annotation> annotationClass = getAnnotationClass(annotationClassName);
489 if (annotationClass != null) {
490 return hasAnnotation(annotationClass);
502 Class<? extends Annotation> annotationClass = getAnnotationClass(annotationClassName);
503 if (annotationClass != null) {
504 return TestPredicates.not(hasAnnotation(annotationClass));
520 Class<?> annotationClass = Class.forName(annotationClassName);
521 if (annotationClass.isAnnotation()) {
522 return (Class<? extends Annotation>)annotationClass;
    [all...]
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife/7.0.1/
butterknife-7.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife-compiler/8.4.0/
butterknife-compiler-8.4.0.jar 
  /external/dagger2/lib/
auto-common-1.0-20151022.071545-39.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.4/
auto-common-0.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.6/
auto-common-0.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.7/
auto-common-0.7.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/auto-common/0.3/
auto-common-0.3.jar 
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.11/
junit-4.11.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.8.2/
junit-4.8.2.jar 
  /prebuilts/tools/common/m2/repository/junit/junit-dep/4.10/
junit-dep-4.10.jar 
  /prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar 
  /prebuilts/tools/common/m2/repository/net/sf/json-lib/json-lib/2.3/
json-lib-2.3-jdk15.jar 
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 
  /prebuilts/misc/common/robolectric/lib/
junit-4.12.jar 

Completed in 458 milliseconds

1 2 3 4 5 6 7 8