OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDeclaredAnnotations
(Results
1 - 25
of
79
) 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
()}
336
* #
getDeclaredAnnotations
} returning the first annotation whose
350
for (Annotation annotation :
getDeclaredAnnotations
()) {
385
* #
getDeclaredAnnotations
()} will get called to determine the
389
* #
getDeclaredAnnotations
()} a single time and the returned array
392
* #
getDeclaredAnnotations
()} are assumed to be consistent with the
421
Annotation[]
getDeclaredAnnotations
();
AccessibleObject.java
194
return
getDeclaredAnnotations
();
224
public Annotation[]
getDeclaredAnnotations
() {
Constructor.java
380
public Annotation[]
getDeclaredAnnotations
() {
381
return super.
getDeclaredAnnotations
();
Method.java
489
public Annotation[]
getDeclaredAnnotations
() {
490
return super.
getDeclaredAnnotations
();
Parameter.java
294
public Annotation[]
getDeclaredAnnotations
() {
314
// objects
getDeclaredAnnotations
is the same as
323
return
getDeclaredAnnotations
();
Field.java
[
all
...]
/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
75
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
453
public Annotation[]
getDeclaredAnnotations
() {
454
return getPackageInfo().
getDeclaredAnnotations
();
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java
192
annotations = classOrMethod.
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
133
* <p>Asserts that calling {@link AnnotatedElement#
getDeclaredAnnotations
()} on the supplied
146
Set<Class<? extends Annotation>> actualTypes = annotationsToTypes(element.
getDeclaredAnnotations
());
/art/test/044-proxy/src/
BasicTest.java
90
System.out.println("Decl annos: " + Arrays.deepToString(meth.
getDeclaredAnnotations
()));
Completed in 1079 milliseconds
1
2
3
4