HomeSort by relevance Sort by last modified time
    Searched refs:getDeclaredAnnotations (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/java/lang/reflect/
AnnotatedElement.java 43 * {@link #getAnnotations()} and {@link #getDeclaredAnnotations()} can be affected
118 * <tr><td align=right>{@code Annotation[]}</td><td>{@link #getDeclaredAnnotations getDeclaredAnnotations()}
339 * #getDeclaredAnnotations} returning the first annotation whose
353 for (Annotation annotation : getDeclaredAnnotations()) {
388 * #getDeclaredAnnotations()} will get called to determine the
392 * #getDeclaredAnnotations()} a single time and the returned array
395 * #getDeclaredAnnotations()} are assumed to be consistent with the
427 Annotation[] getDeclaredAnnotations();
AccessibleObject.java 227 return getDeclaredAnnotations();
257 public Annotation[] getDeclaredAnnotations() {
Constructor.java 390 public Annotation[] getDeclaredAnnotations() {
391 return super.getDeclaredAnnotations();
Method.java 501 public Annotation[] getDeclaredAnnotations() {
502 return super.getDeclaredAnnotations();
Parameter.java 298 public Annotation[] getDeclaredAnnotations() {
318 // objects getDeclaredAnnotations is the same as
327 return getDeclaredAnnotations();
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestRecognizer.java 24 for (Annotation a : m.getDeclaredAnnotations()) {
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiTestUtil.java 46 Annotation[] annotations = method.getDeclaredAnnotations();
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java 36 Annotation [] annotations = AnnotatedClass.class.getDeclaredAnnotations();
49 m1.getDeclaredAnnotations()[0].equals(m2
50 .getDeclaredAnnotations()[0]));
75 Annotation a1 = me1.getDeclaredAnnotations()[0];
76 Annotation a2 = me2.getDeclaredAnnotations()[0];
88 Annotation a1 = me1.getDeclaredAnnotations()[0];
89 Annotation a2 = me2.getDeclaredAnnotations()[0];
103 Annotation a1 = AnnotatedClass.class.getDeclaredAnnotations()[0];
121 m1.getDeclaredAnnotations()[0].hashCode());
126 m2.getDeclaredAnnotations()[0].hashCode())
    [all...]
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 56 annos = c.getDeclaredAnnotations();
67 annos = m.getDeclaredAnnotations();
78 annos = f.getDeclaredAnnotations();
212 // Package annotations aren't inherited, so getAnnotations and getDeclaredAnnotations are
217 printAnnotationArray(" ", TestAnnotations.class.getPackage().getDeclaredAnnotations());
241 Annotation[] annos = m.getDeclaredAnnotations();
  /external/guava/guava/src/com/google/common/reflect/
Element.java 64 @Override public final Annotation[] getDeclaredAnnotations() {
65 return accessibleObject.getDeclaredAnnotations();
Parameter.java 82 return getDeclaredAnnotations();
97 @Override public Annotation[] getDeclaredAnnotations() {
  /art/test/948-change-annotations/src/
Main.java 83 + Arrays.toString(sortedAnno(m.getDeclaredAnnotations())));
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 32 assertEquals(1, getClass().getPackage().getDeclaredAnnotations().length);
OldClassTest.java 356 Annotation [] annotations = PublicTestClass.class.getDeclaredAnnotations();
359 annotations = ExtendTestClass.class.getDeclaredAnnotations();
362 annotations = TestInterface.class.getDeclaredAnnotations();
365 annotations = String.class.getDeclaredAnnotations();
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
AnnotatedElements.java 48 Annotation[] annotations = element.getDeclaredAnnotations();
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
ShortNameFactoryTest.java 99 Obj.class.getDeclaredField("field").getDeclaredAnnotations()[0]);
  /external/mockito/src/test/java/org/mockito/
AnnotationsAreCopiedFromMockedTypeTest.java 79 public Annotation[] getDeclaredAnnotations() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
AccessibleObjectTest.java 172 Annotation[] annotations = ao.getDeclaredAnnotations();
  /libcore/ojluni/src/main/java/java/lang/
Package.java 457 public Annotation[] getDeclaredAnnotations() {
458 return getPackageInfo().getDeclaredAnnotations();
  /external/annotation-tools/scene-lib/src/annotations/el/
AnnotationDef.java 80 jannos = annoType.getDeclaredAnnotations();
83 throw new Error("Exception in anno.getDeclaredAnnotations() for anno = " + annoType, e);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 192 annotations = classOrMethod.getDeclaredAnnotations();
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassAdapter.java 166 for (Annotation a : clazz.getDeclaredAnnotations()) {
  /external/junit/src/main/java/org/junit/internal/runners/
JUnit38ClassRunner.java 132 return m.getDeclaredAnnotations();
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 144 ExtendsHasThreeAnnotations.class.getDeclaredAnnotations();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
AnnotatedElementTestSupport.java 134 * <p>Asserts that calling {@link AnnotatedElement#getDeclaredAnnotations()} on the supplied
147 Set<Class<? extends Annotation>> actualTypes = annotationsToTypes(element.getDeclaredAnnotations());

Completed in 1119 milliseconds

1 2 3 4