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

1 2 3 4

  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
Field.java 108 java.lang.annotation.Annotation[] annotations = field.getDeclaredAnnotations();
119 public Annotation[] getDeclaredAnnotations () {
120 java.lang.annotation.Annotation[] annotations = field.getDeclaredAnnotations();
132 java.lang.annotation.Annotation[] annotations = field.getDeclaredAnnotations();
Method.java 123 java.lang.annotation.Annotation[] annotations = method.getDeclaredAnnotations();
137 public Annotation[] getDeclaredAnnotations () {
138 java.lang.annotation.Annotation[] annotations = method.getDeclaredAnnotations();
152 java.lang.annotation.Annotation[] annotations = method.getDeclaredAnnotations();
ClassReflection.java 212 java.lang.annotation.Annotation[] annotations = declType.getDeclaredAnnotations();
224 superAnnotations = superType.getDeclaredAnnotations();
267 static public Annotation[] getDeclaredAnnotations (Class c) {
268 java.lang.annotation.Annotation[] annotations = ReflectionCache.getType(c).getDeclaredAnnotations();
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestRecognizer.java 24 for (Annotation a : m.getDeclaredAnnotations()) {
  /libcore/ojluni/src/main/java/java/lang/reflect/
AccessibleObject.java 180 return getDeclaredAnnotations();
186 public Annotation[] getDeclaredAnnotations() {
AnnotatedElement.java 115 Annotation[] getDeclaredAnnotations();
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/
Method.java 126 public Annotation[] getDeclaredAnnotations () {
127 java.lang.annotation.Annotation[] annotations = method.getDeclaredAnnotations();
139 java.lang.annotation.Annotation[] annotations = method.getDeclaredAnnotations();
Field.java 130 public Annotation[] getDeclaredAnnotations () {
131 java.lang.annotation.Annotation[] annotations = field.getDeclaredAnnotations();
143 java.lang.annotation.Annotation[] annotations = field.getDeclaredAnnotations();
ClassReflection.java 222 static public Annotation[] getDeclaredAnnotations (Class c) {
223 java.lang.annotation.Annotation[] annotations = c.getDeclaredAnnotations();
234 java.lang.annotation.Annotation[] annotations = c.getDeclaredAnnotations();
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiTestUtil.java 46 Annotation[] annotations = method.getDeclaredAnnotations();
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 31 assertEquals(1, getClass().getPackage().getDeclaredAnnotations().length);
  /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();
213 // Package annotations aren't inherited, so getAnnotations and getDeclaredAnnotations are
218 printAnnotationArray(" ", TestAnnotations.class.getPackage().getDeclaredAnnotations());
242 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() {
  /libcore/luni/src/main/java/libcore/reflect/
AnnotatedElements.java 46 Annotation[] annotations = element.getDeclaredAnnotations();
48 // Safeguard: getDeclaredAnnotations should never return null.
78 Annotation[] annotations = element.getDeclaredAnnotations();
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
AnnotationTest.java 98 Annotation[] annotations = field.getDeclaredAnnotations();
113 Annotation[] annotations = method.getDeclaredAnnotations();
  /art/runtime/native/
java_lang_reflect_AbstractMethod.cc 69 NATIVE_METHOD(AbstractMethod, getDeclaredAnnotations, "!()[Ljava/lang/annotation/Annotation;"),
java_lang_reflect_Constructor.cc 183 NATIVE_METHOD(Constructor, getDeclaredAnnotations, "!()[Ljava/lang/annotation/Annotation;"),
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
Field.java 129 public Annotation[] getDeclaredAnnotations () {
Method.java 130 public Annotation[] getDeclaredAnnotations () {
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
ShortNameFactoryTest.java 99 Obj.class.getDeclaredField("field").getDeclaredAnnotations()[0]);
  /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 439 public Annotation[] getDeclaredAnnotations() {
440 return getPackageInfo().getDeclaredAnnotations();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 192 annotations = classOrMethod.getDeclaredAnnotations();

Completed in 1039 milliseconds

1 2 3 4