Home
last modified time | relevance | path

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

1234

/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/
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;
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;
/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/979-const-method-handle/util-src/annotations/
DConstantMethodType.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
DConstantMethodHandle.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/952-invoke-custom/util-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/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/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/class2greylist/src/com/android/class2greylist/
DAnnotationHandler.java15 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()
DCovariantReturnTypeHandler.java45 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()
DRepeatedAnnotationHandler.java28 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()
/art/runtime/dex/
Ddex_file_annotations.cc139 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/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;
/art/test/1339-dead-reference-safe/src/
DReachabilitySensitiveTest.java19 import dalvik.annotation.optimization.DeadReferenceSafe;
20 import dalvik.annotation.optimization.ReachabilitySensitive;
DReachabilitySensitiveFunTest.java19 import dalvik.annotation.optimization.DeadReferenceSafe;
20 import dalvik.annotation.optimization.ReachabilitySensitive;
/art/libprofile/profile/
Dprofile_compilation_info.h339 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone);
350 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) {
351 DexFileData* data = GetOrAddDexFileData(dex_file, annotation);
364 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone);
376 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) {
377 DexFileData* data = GetOrAddDexFileData(dex_file, annotation);
453 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) const;
461 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) const;
471 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) const;
491 const ProfileSampleAnnotation& annotation = ProfileSampleAnnotation::kNone) const;
[all …]
/art/tools/class2greylist/test/src/com/android/class2greylist/
DRepeatedAnnotationHandlerTest.java86 void handleAnnotation(AnnotationEntry annotation, in handleAnnotation() argument
88 classes.add(annotation.getElementValuePairs()[0].getValue().stringifyValue()); in handleAnnotation()

1234