Home
last modified time | relevance | path

Searched refs:annotation (Results 51 – 75 of 90) sorted by relevance

1234

/art/test/005-annotations/src/android/test/anno/
DAnnoFancyField.java3 import java.lang.annotation.*;
DAnnoRenamedEnumMethod.java19 import java.lang.annotation.*;
DExportedProperty.java4 import java.lang.annotation.*;
DAnnoArrayField.java3 import java.lang.annotation.*;
DAnnoFancyMethod.java3 import java.lang.annotation.*;
DTestAnnotations.java19 import java.lang.annotation.Annotation;
20 import java.lang.annotation.AnnotationFormatError;
/art/test/148-multithread-gc-annotations/src/
DAnnotationThread.java17 import java.lang.annotation.*;
/art/tools/class2greylist/src/com/android/class2greylist/
DUnsupportedAppUsageAnnotationHandler.java87 public void handleAnnotation(AnnotationEntry annotation, AnnotationContext context) { in handleAnnotation() argument
104 for (ElementValuePair property : annotation.getElementValuePairs()) { in handleAnnotation()
177 mAnnotationConsumer.consume(signature, stringifyAnnotationProperties(annotation), in handleAnnotation()
/art/test/044-proxy/src/
DNativeProxy.java17 import java.lang.annotation.Annotation;
/art/test/1339-dead-reference-safe/src/
DDeadReferenceSafeTest.java17 import dalvik.annotation.optimization.DeadReferenceSafe;
DReachabilityFenceTest.java19 import dalvik.annotation.optimization.DeadReferenceSafe;
/art/test/1980-obsolete-object-cleared/
Dexpected.txt36 Calling public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with …
37 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [null] t…
38 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [class j…
39 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [(obsole…
40 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [class M…
41 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [long] t…
42 public java.lang.annotation.Annotation java.lang.Class.getAnnotation(java.lang.Class) with [class j…
43 Calling public java.lang.annotation.Annotation[] java.lang.Class.getAnnotations() with params: []
44 public java.lang.annotation.Annotation[] java.lang.Class.getAnnotations() with [] throws java.lang.…
45 Calling public java.lang.annotation.Annotation[] java.lang.Class.getAnnotationsByType(java.lang.Cla…
[all …]
/art/libprofile/profile/
Dprofile_compilation_info.cc163 const ProfileSampleAnnotation& annotation) { in GetProfileDexFileAugmentedKey() argument
165 return annotation == ProfileSampleAnnotation::kNone in GetProfileDexFileAugmentedKey()
167 : base_key + kSampleMetadataSeparator + annotation.GetOriginPackageName();; in GetProfileDexFileAugmentedKey()
210 const ProfileSampleAnnotation& annotation) { in AddMethods() argument
212 if (!AddMethod(method, flags, annotation)) { in AddMethods()
682 const ProfileSampleAnnotation& annotation) const { in FindDexDataUsingAnnotations()
683 if (annotation == ProfileSampleAnnotation::kNone) { in FindDexDataUsingAnnotations()
694 std::string profile_key = GetProfileDexFileAugmentedKey(dex_file->GetLocation(), annotation); in FindDexDataUsingAnnotations()
716 const ProfileSampleAnnotation& annotation) { in AddMethod() argument
717 DexFileData* const data = GetOrAddDexFileData(pmi.ref.dex_file, annotation); in AddMethod()
[all …]
/art/test/048-reflect-v8/src/
DAnnotationTestHelpers.java17 import java.lang.annotation.Annotation;
/art/test/948-change-annotations/src/
DMain.java22 import java.lang.annotation.*;
/art/test/1929-exception-catch-exception/smali/art/
DTest1929$Impl.smali26 .annotation system Ldalvik/annotation/EnclosingClass;
28 .end annotation
30 .annotation system Ldalvik/annotation/InnerClass;
33 .end annotation
/art/dexlayout/
Ddex_writer.cc198 void DexWriter::WriteEncodedAnnotation(Stream* stream, dex_ir::EncodedAnnotation* annotation) { in WriteEncodedAnnotation() argument
199 stream->WriteUleb128(annotation->GetType()->GetIndex()); in WriteEncodedAnnotation()
200 stream->WriteUleb128(annotation->GetAnnotationElements()->size()); in WriteEncodedAnnotation()
202 *annotation->GetAnnotationElements()) { in WriteEncodedAnnotation()
369 for (auto& annotation : header_->AnnotationItems()) { in WriteAnnotations() local
371 visibility[0] = annotation->GetVisibility(); in WriteAnnotations()
372 ProcessOffset(stream, annotation.get()); in WriteAnnotations()
374 WriteEncodedAnnotation(stream, annotation->GetAnnotation()); in WriteAnnotations()
390 for (dex_ir::AnnotationItem* annotation : *annotation_set->GetItems()) { in WriteAnnotationSets()
391 annotation_off[0] = annotation->GetOffset(); in WriteAnnotationSets()
Ddex_ir_builder.cc161 const dex::AnnotationItem* annotation);
627 const dex::AnnotationItem* annotation = dex_file.GetAnnotationItemAtOffset(current_offset); in AddAnnotationsFromMapListSection() local
628 AnnotationItem* annotation_item = CreateAnnotationItem(dex_file, annotation); in AddAnnotationsFromMapListSection()
673 const dex::AnnotationItem* annotation) { in CreateAnnotationItem() argument
674 const uint8_t* const start_data = reinterpret_cast<const uint8_t*>(annotation); in CreateAnnotationItem()
678 uint8_t visibility = annotation->visibility_; in CreateAnnotationItem()
679 const uint8_t* annotation_data = annotation->annotation_; in CreateAnnotationItem()
703 const dex::AnnotationItem* annotation = in CreateAnnotationSetItem() local
705 if (annotation == nullptr) { in CreateAnnotationSetItem()
708 AnnotationItem* annotation_item = CreateAnnotationItem(dex_file, annotation); in CreateAnnotationSetItem()
Ddexlayout.h150 void DumpEncodedAnnotation(dex_ir::EncodedAnnotation* annotation);
Ddexlayout.cc492 void DexLayout::DumpEncodedAnnotation(dex_ir::EncodedAnnotation* annotation) { in DumpEncodedAnnotation() argument
493 fputs(annotation->GetType()->GetStringId()->Data(), out_file_); in DumpEncodedAnnotation()
495 for (auto& subannotation : *annotation->GetAnnotationElements()) { in DumpEncodedAnnotation()
688 for (dex_ir::AnnotationItem* annotation : *set_item->GetItems()) { in DumpAnnotationSetItem()
689 if (annotation == nullptr) { in DumpAnnotationSetItem()
693 switch (annotation->GetVisibility()) { in DumpAnnotationSetItem()
699 DumpEncodedAnnotation(annotation->GetAnnotation()); in DumpAnnotationSetItem()
757 for (dex_ir::AnnotationSetItem* annotation : *parameter->GetAnnotations()->GetItems()) { in DumpClassAnnotations()
759 DumpAnnotationSetItem(annotation); in DumpClassAnnotations()
/art/runtime/native/
Djava_lang_reflect_Executable.cc142 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i); in Executable_getParameterAnnotationsNative() local
143 resized_annotations->SetWithoutChecks<kTransactionActive>(i + offset, annotation); in Executable_getParameterAnnotationsNative()
150 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i - offset); in Executable_getParameterAnnotationsNative() local
151 resized_annotations->SetWithoutChecks<kTransactionActive>(i, annotation); in Executable_getParameterAnnotationsNative()
/art/tools/libjavac/src/com/android/javac/
DJavac.java35 import javax.annotation.processing.Processor;
/art/test/004-JniTest/src/
DMain.java25 import dalvik.annotation.optimization.CriticalNative;
26 import dalvik.annotation.optimization.FastNative;
/art/test/178-app-image-native-method/src/
DMain.java17 import dalvik.annotation.optimization.FastNative;
18 import dalvik.annotation.optimization.CriticalNative;
/art/test/dexdump/
Dinvoke-polymorphic.txt41 VISIBILITY_SYSTEM Ldalvik/annotation/Throws; value={ Ljava/lang/Throwable; }

1234