Home
last modified time | relevance | path

Searched refs:annotation (Results 1 – 25 of 72) sorted by relevance

123

/art/test/048-reflect-v8/
Dexpected.txt20 Annotations by type, defined by class SingleUser with annotation Calendar: @Calendar(dayOfMonth=uns…
21 Annotations by type, defined by class SingleUser with annotation Calendars: <empty>
22 Annotations by type, defined by class User with annotation Calendar: @Calendar(dayOfMonth=last, day…
23 Annotations by type, defined by class User with annotation Calendars: @Calendars(value=[@Calendar(d…
24 Annotations by type, defined by class User2 with annotation Calendar: @Calendar(dayOfMonth=z, dayOf…
25 Annotations by type, defined by class User2 with annotation Calendars: @Calendars(value=[@Calendar(…
26 Annotations by type, defined by class UserComplex with annotation Calendar: @Calendar(dayOfMonth=af…
27 Annotations by type, defined by class UserComplex with annotation Calendars: @Calendars(value=[@Cal…
28 Annotations by type, defined by class UserSub with annotation Calendar: @Calendar(dayOfMonth=last, …
29 Annotations by type, defined by class UserSub with annotation Calendars: @Calendars(value=[@Calenda…
[all …]
/art/test/004-JniTest/src/dalvik/annotation/optimization/
DFastNative.java17 package dalvik.annotation.optimization;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
DCriticalNative.java17 package dalvik.annotation.optimization;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
/art/test/048-reflect-v8/src/
DCalendar.java17 import java.lang.annotation.Inherited;
18 import java.lang.annotation.Repeatable;
19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
DCalendars.java17 import java.lang.annotation.Inherited;
18 import java.lang.annotation.Retention;
19 import java.lang.annotation.RetentionPolicy;
/art/test/952-invoke-custom/src/annotations/
DCalledByIndy.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
DConstant.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
DBootstrapMethod.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
/art/test/121-modifiers/smali/
DA$C.smali23 .annotation system Ldalvik/annotation/EnclosingClass;
25 .end annotation
27 .annotation system Ldalvik/annotation/InnerClass;
30 .end annotation
DA$B.smali23 .annotation system Ldalvik/annotation/EnclosingClass;
25 .end annotation
27 .annotation system Ldalvik/annotation/InnerClass;
30 .end annotation
DA.smali23 .annotation system Ldalvik/annotation/MemberClasses;
28 .end annotation
/art/test/715-clinit-implicit-parameter-annotations/src/
DMain.java17 import java.lang.annotation.Annotation;
18 import java.lang.annotation.Retention;
19 import java.lang.annotation.RetentionPolicy;
102 private static String annotationToNormalizedString(Annotation annotation) { in annotationToNormalizedString() argument
104 return annotation.toString().replace("\"", ""); in annotationToNormalizedString()
117 for (Annotation annotation : parameters[i].getAnnotations()) { in DumpConstructorParameterAnnotations()
118 System.out.println(" Indexed : " + annotationToNormalizedString(annotation)); in DumpConstructorParameterAnnotations()
120 for (Annotation annotation : annotations[i]) { in DumpConstructorParameterAnnotations()
121 System.out.println(" Array : " + annotationToNormalizedString(annotation)); in DumpConstructorParameterAnnotations()
131 Annotation annotation = parameters[i].getDeclaredAnnotation(annotationClass); in DumpConstructorParameterAnnotations() local
[all …]
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DAnnotationItem.java23 public EncodedAnnotation annotation; field in AnnotationItem
29 (annotation = new EncodedAnnotation()).read(file); in read()
36 annotation.write(file); in write()
41 annotation.incrementIndex(kind, insertedIdx); in incrementIndex()
/art/runtime/dex/
Ddex_file_annotations.cc121 const uint8_t** annotation)
174 const uint8_t* annotation = annotation_item->annotation_; in SearchAnnotationSet() local
175 uint32_t type_index = DecodeUnsignedLeb128(&annotation); in SearchAnnotationSet()
187 const uint8_t* annotation = *annotation_ptr; in SkipAnnotationValue() local
188 uint8_t header_byte = *(annotation++); in SkipAnnotationValue()
209 uint32_t size = DecodeUnsignedLeb128(&annotation); in SkipAnnotationValue()
211 if (!SkipAnnotationValue(dex_file, &annotation)) { in SkipAnnotationValue()
220 DecodeUnsignedLeb128(&annotation); // unused type_index in SkipAnnotationValue()
221 uint32_t size = DecodeUnsignedLeb128(&annotation); in SkipAnnotationValue()
223 DecodeUnsignedLeb128(&annotation); // unused element_name_index in SkipAnnotationValue()
[all …]
/art/test/656-annotation-lookup-generic-jni/
Dinfo.txt2 method with an annotation (to be found in a custom class loader)
6 annotation classes (during the CriticalNative/FastNative optimization
7 annotation lookup).
/art/test/005-annotations/src/android/test/anno/
DMissingAnnotation.java3 import java.lang.annotation.Retention;
4 import static java.lang.annotation.RetentionPolicy.RUNTIME;
DClassWithInnerAnnotationClass.java3 import java.lang.annotation.*;
DAnnoMissingClass.java19 import java.lang.annotation.*;
/art/test/148-multithread-gc-annotations/src/
DAnnoClass3.java17 import java.lang.annotation.*;
DAnnoClass1.java17 import java.lang.annotation.*;
/art/test/948-change-annotations/src/
DTestMethodAnnotation1.java17 import java.lang.annotation.*;
DTestClassAnnotation1.java17 import java.lang.annotation.*;
DTestClassAnnotation2.java17 import java.lang.annotation.*;
DTestMethodAnnotation2.java17 import java.lang.annotation.*;
/art/test/005-annotations/src/android/test/
DAnnoSimplePackage1.java3 import java.lang.annotation.*;

123