OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDeclaredAnnotation
(Results
1 - 25
of
30
) sorted by null
1
2
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
VersionInfo.java
49
ProvidesInterface provider = cls.
getDeclaredAnnotation
(ProvidesInterface.class);
53
Requires requires = cls.
getDeclaredAnnotation
(Requires.class);
57
Requirements requirements = cls.
getDeclaredAnnotation
(Requirements.class);
63
DependsOn depends = cls.
getDeclaredAnnotation
(DependsOn.class);
67
Dependencies dependencies = cls.
getDeclaredAnnotation
(Dependencies.class);
100
ProvidesInterface provider = cls.
getDeclaredAnnotation
(ProvidesInterface.class);
PluginManager.java
44
ProvidesInterface info = cls.
getDeclaredAnnotation
(ProvidesInterface.class);
PluginManagerImpl.java
103
ProvidesInterface info = cls.
getDeclaredAnnotation
(ProvidesInterface.class);
/libcore/ojluni/src/main/java/java/lang/reflect/
AnnotatedElement.java
115
* <tr><td align=right>{@code T}</td><td>{@link #
getDeclaredAnnotation
(Class)
getDeclaredAnnotation
(Class<T>)}
347
default <T extends Annotation> T
getDeclaredAnnotation
(Class<T> annotationClass) {
371
* #
getDeclaredAnnotation
(Class)} is that this method detects if its
380
* #
getDeclaredAnnotation
(Class)} one or more times to find a
393
* results of calling {@link #
getDeclaredAnnotation
(Class)}.
AccessibleObject.java
202
public <T extends Annotation> T
getDeclaredAnnotation
(Class<T> annotationClass) {
204
// objects
getDeclaredAnnotation
is the same as
Parameter.java
301
public <T extends Annotation> T
getDeclaredAnnotation
(Class<T> annotationClass) {
303
// objects
getDeclaredAnnotation
is the same as
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
AnnotatedElementTestSupport.java
138
* that {@link AnnotatedElement#
getDeclaredAnnotation
(Class)} works as expected.
155
element.
getDeclaredAnnotation
(null);
187
assertNotNull(element.
getDeclaredAnnotation
(annotation));
189
assertNull(element.
getDeclaredAnnotation
(annotation));
209
* Asserts that {@link AnnotatedElement#
getDeclaredAnnotation
(Class)} returns the expected
215
Annotation annotation = annotatedElement.
getDeclaredAnnotation
(annotationType);
/external/guava/guava/src/com/google/common/reflect/
Parameter.java
106
public <A extends Annotation> A
getDeclaredAnnotation
(Class<A> annotationType) {
/frameworks/base/packages/SystemUI/tests/src/com/android/
AAAPlusPlusVerifySysuiRequiredTestPropertiesTest.java
103
if (cls.
getDeclaredAnnotation
(SUPPORTED_SIZES[i]) != null) return true;
/libcore/luni/src/main/java/libcore/reflect/
AnnotatedElements.java
151
Repeatable repeatableAnnotation = annotationClass.
getDeclaredAnnotation
(Repeatable.class);
/art/test/048-reflect-v8/src/
AnnotationTest.java
144
A anno = annotationUseClass.
getDeclaredAnnotation
(annotationDefClass);
242
Annotation annotationsByType = m.
getDeclaredAnnotation
(annotationClass);
/libcore/ojluni/src/main/java/java/lang/
Package.java
437
public <A extends Annotation> A
getDeclaredAnnotation
(Class<A> annotationClass) {
438
return getPackageInfo().
getDeclaredAnnotation
(annotationClass);
Class.java
[
all
...]
/art/runtime/native/
java_lang_Class.cc
757
FAST_NATIVE_METHOD(Class,
getDeclaredAnnotation
,
[
all
...]
/prebuilts/sdk/24/
android.jar
/cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar
/external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar
/prebuilts/devtools/tools/lib/
guava-18.0.jar
/prebuilts/misc/common/guava/
guava-18.0.jar
guava-20.0.jar
/prebuilts/misc/common/robolectric/lib/
guava-19.0.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
/prebuilts/tools/common/google-java-format/
google-java-format-1.0-all-deps.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/18.0/
guava-18.0.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/19.0/
guava-19.0.jar
Completed in 688 milliseconds
1
2