OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getAnnotations
(Results
1 - 25
of
119
) sorted by null
1
2
3
4
5
/cts/tools/dex-tools/src/dex/structure/
DexAnnotatedElement.java
32
Set<DexAnnotation>
getAnnotations
();
/cts/tools/signature-tools/src/signature/model/
IAnnotatableElement.java
38
Set<IAnnotation>
getAnnotations
();
/cts/tools/signature-tools/src/signature/model/impl/
SigAnnotatableElement.java
35
public Set<IAnnotation>
getAnnotations
() {
46
for (IAnnotation annotation :
getAnnotations
()) {
SigField.java
64
if (
getAnnotations
() != null && !
getAnnotations
().isEmpty()) {
/external/junit/src/org/junit/runners/model/
FrameworkMember.java
10
abstract Annotation[]
getAnnotations
();
FrameworkField.java
25
public Annotation[]
getAnnotations
() {
26
return fField.
getAnnotations
();
/libcore/luni/src/main/java/java/lang/reflect/
AnnotatedElement.java
49
Annotation[]
getAnnotations
();
/libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java
43
type.
getAnnotations
();
49
field.
getAnnotations
();
55
method.
getAnnotations
();
105
HasLargeAnnotation.class.
getAnnotations
();
111
HasSmallAnnotation.class.
getAnnotations
();
117
HasMarkerAnnotation.class.
getAnnotations
();
123
HasNoAnnotations.class.
getAnnotations
();
129
HasThreeAnnotations.class.
getAnnotations
();
138
ExtendsHasThreeAnnotations.class.
getAnnotations
();
144
ExtendsHasThreeAnnotations.class.
getAnnotations
();
[
all
...]
/cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterProjection.java
37
public Set<IAnnotation>
getAnnotations
() {
38
return original.
getAnnotations
();
ExecutableMemberProjection.java
43
public Set<IAnnotation>
getAnnotations
() {
44
return original.
getAnnotations
();
/dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java
69
public final Annotations
getAnnotations
() {
/libcore/libart/src/main/java/java/lang/reflect/
AccessibleObject.java
95
@Override public Annotation[]
getAnnotations
() {
96
// for all but Class,
getAnnotations
== getDeclaredAnnotations
/libcore/luni/src/main/java/java/lang/
Package.java
86
for (Annotation annotation :
getAnnotations
()) {
97
public Annotation[]
getAnnotations
() {
100
return c.
getAnnotations
();
108
* inherited, so this is equivalent to {@link #
getAnnotations
}.
111
return
getAnnotations
();
/libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java
29
assertEquals(0, getClass().getPackage().
getAnnotations
().length);
/cts/tools/signature-tools/test/signature/converter/
ConvertPackageTest.java
41
assertEquals(1, sigPackage.
getAnnotations
().size());
42
IAnnotation annotation = sigPackage.
getAnnotations
().iterator().next();
/external/junit/src/org/junit/experimental/theories/
ParameterSignature.java
51
public List<Annotation>
getAnnotations
() {
76
.
getAnnotations
(), annotationType, depth - 1);
85
for (Annotation each :
getAnnotations
())
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
Injector.java
76
for (Annotation annotation : field.
getAnnotations
()) {
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
AnnotationFormatter.java
43
for (AnnotationItem annotationItem: annotationSet.
getAnnotations
()) {
/cts/tools/dex-tools/src/dex/reader/
DexFieldImpl.java
81
public synchronized Set<DexAnnotation>
getAnnotations
() {
96
builder.append(formatter.formatAnnotations(
getAnnotations
()));
/dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
MethodAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
/dalvik/dx/src/com/android/dx/dex/file/
FieldAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
MethodAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
MethodAnnotationStruct.java
119
public Annotations
getAnnotations
() {
120
return annotations.
getAnnotations
();
Completed in 561 milliseconds
1
2
3
4
5