/art/test/048-reflect-v8/ |
D | expected.txt | 20 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/ |
D | FastNative.java | 17 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;
|
D | CriticalNative.java | 17 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/ |
D | Calendar.java | 17 import java.lang.annotation.Inherited; 18 import java.lang.annotation.Repeatable; 19 import java.lang.annotation.Retention; 20 import java.lang.annotation.RetentionPolicy;
|
D | Calendars.java | 17 import java.lang.annotation.Inherited; 18 import java.lang.annotation.Retention; 19 import java.lang.annotation.RetentionPolicy;
|
/art/test/979-const-method-handle/util-src/annotations/ |
D | ConstantMethodType.java | 19 import java.lang.annotation.ElementType; 20 import java.lang.annotation.Retention; 21 import java.lang.annotation.RetentionPolicy; 22 import java.lang.annotation.Target;
|
D | ConstantMethodHandle.java | 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/952-invoke-custom/util-src/annotations/ |
D | CalledByIndy.java | 19 import java.lang.annotation.ElementType; 20 import java.lang.annotation.Retention; 21 import java.lang.annotation.RetentionPolicy; 22 import java.lang.annotation.Target;
|
D | Constant.java | 19 import java.lang.annotation.ElementType; 20 import java.lang.annotation.Retention; 21 import java.lang.annotation.RetentionPolicy; 22 import java.lang.annotation.Target;
|
D | BootstrapMethod.java | 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/121-modifiers/smali/ |
D | A$C.smali | 23 .annotation system Ldalvik/annotation/EnclosingClass; 25 .end annotation 27 .annotation system Ldalvik/annotation/InnerClass; 30 .end annotation
|
D | A$B.smali | 23 .annotation system Ldalvik/annotation/EnclosingClass; 25 .end annotation 27 .annotation system Ldalvik/annotation/InnerClass; 30 .end annotation
|
D | A.smali | 23 .annotation system Ldalvik/annotation/MemberClasses; 28 .end annotation
|
/art/test/715-clinit-implicit-parameter-annotations/src/ |
D | Main.java | 17 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/ |
D | AnnotationItem.java | 23 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/ |
D | dex_file_annotations.cc | 139 const uint8_t** annotation) 194 const uint8_t* annotation = annotation_item->annotation_; in SearchAnnotationSet() local 195 uint32_t type_index = DecodeUnsignedLeb128(&annotation); in SearchAnnotationSet() 207 const uint8_t* annotation = *annotation_ptr; in SkipAnnotationValue() local 208 uint8_t header_byte = *(annotation++); in SkipAnnotationValue() 229 uint32_t size = DecodeUnsignedLeb128(&annotation); in SkipAnnotationValue() 231 if (!SkipAnnotationValue(dex_file, &annotation)) { in SkipAnnotationValue() 240 DecodeUnsignedLeb128(&annotation); // unused type_index in SkipAnnotationValue() 241 uint32_t size = DecodeUnsignedLeb128(&annotation); in SkipAnnotationValue() 243 DecodeUnsignedLeb128(&annotation); // unused element_name_index in SkipAnnotationValue() [all …]
|
/art/tools/class2greylist/src/com/android/class2greylist/ |
D | AnnotationHandler.java | 15 abstract void handleAnnotation(AnnotationEntry annotation, AnnotationContext context); in handleAnnotation() argument 17 protected Map<String, String> stringifyAnnotationProperties(AnnotationEntry annotation) { in stringifyAnnotationProperties() argument 21 for (ElementValuePair prop : annotation.getElementValuePairs()) { in stringifyAnnotationProperties()
|
D | CovariantReturnTypeHandler.java | 45 public void handleAnnotation(AnnotationEntry annotation, AnnotationContext context) { in handleAnnotation() argument 49 handleAnnotation(annotation, (AnnotatedMemberContext) context); in handleAnnotation() 52 private void handleAnnotation(AnnotationEntry annotation, AnnotatedMemberContext context) { in handleAnnotation() argument 62 String returnType = findReturnType(annotation); in handleAnnotation() 91 mAnnotationConsumer.consume(signature, stringifyAnnotationProperties(annotation), in handleAnnotation()
|
D | RepeatedAnnotationHandler.java | 28 public void handleAnnotation(AnnotationEntry annotation, AnnotationContext context) { in handleAnnotation() argument 30 ElementValuePair value = findValue(annotation); in handleAnnotation() 32 context.reportError("No value found on %s", annotation.getAnnotationType()); in handleAnnotation()
|
D | UnsupportedAppUsageAnnotationHandler.java | 82 public void handleAnnotation(AnnotationEntry annotation, AnnotationContext context) { in handleAnnotation() argument 98 for (ElementValuePair property : annotation.getElementValuePairs()) { in handleAnnotation() 155 mAnnotationConsumer.consume(signature, stringifyAnnotationProperties(annotation), in handleAnnotation()
|
/art/test/656-annotation-lookup-generic-jni/ |
D | info.txt | 2 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/ |
D | MissingAnnotation.java | 3 import java.lang.annotation.Retention; 4 import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
/art/test/1339-dead-reference-safe/src/ |
D | ReachabilitySensitiveTest.java | 19 import dalvik.annotation.optimization.DeadReferenceSafe; 20 import dalvik.annotation.optimization.ReachabilitySensitive;
|
D | ReachabilitySensitiveFunTest.java | 19 import dalvik.annotation.optimization.DeadReferenceSafe; 20 import dalvik.annotation.optimization.ReachabilitySensitive;
|
/art/tools/class2greylist/test/src/com/android/class2greylist/ |
D | RepeatedAnnotationHandlerTest.java | 86 void handleAnnotation(AnnotationEntry annotation, in handleAnnotation() argument 88 classes.add(annotation.getElementValuePairs()[0].getValue().stringifyValue()); in handleAnnotation()
|