Home
last modified time | relevance | path

Searched refs:AnnotationSetRefList (Results 1 – 12 of 12) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DAnnotationSetRefList.java21 public class AnnotationSetRefList implements RawDexObject { class
DMapList.java123 new ArrayList<AnnotationSetRefList>(mapItem.size); in read()
125 AnnotationSetRefList newAnnotationSetRefList = new AnnotationSetRefList(); in read()
DRawDexFile.java47 public List<AnnotationSetRefList> annotationSetRefLists;
222 for (AnnotationSetRefList annotationSetRefList : annotationSetRefLists) { in write()
/art/dexlayout/
Ddex_verify.h65 bool VerifyAnnotationSetRefList(dex_ir::AnnotationSetRefList* orig,
66 dex_ir::AnnotationSetRefList* output,
Ddex_ir.h38 class AnnotationSetRefList; variable
99 virtual void Dispatch(AnnotationSetRefList* annotation_set_ref_list) = 0;
187 std::map<uint32_t, std::unique_ptr<AnnotationSetRefList>>& AnnotationSetRefLists() in AnnotationSetRefLists()
329 const DexFile::AnnotationSetRefList* annotation_set_ref_list, uint32_t offset);
346 CollectionMap<AnnotationSetRefList> annotation_set_ref_lists_;
1050 class AnnotationSetRefList : public Item {
1052 explicit AnnotationSetRefList(std::vector<AnnotationSetItem*>* items) : items_(items) { in AnnotationSetRefList() function
1055 ~AnnotationSetRefList() OVERRIDE { } in ~AnnotationSetRefList()
1064 DISALLOW_COPY_AND_ASSIGN(AnnotationSetRefList);
1103 ParameterAnnotation(MethodId* method_id, AnnotationSetRefList* annotations) in ParameterAnnotation()
[all …]
Ddex_ir.cc526 const DexFile::AnnotationSetRefList* list = in CreateAnnotationsDirectoryItem()
541 const DexFile::AnnotationSetRefList* annotation_set_ref_list, uint32_t offset) { in GenerateParameterAnnotation()
542 AnnotationSetRefList* set_ref_list = nullptr; in GenerateParameterAnnotation()
555 set_ref_list = new AnnotationSetRefList(annotations); in GenerateParameterAnnotation()
Ddex_verify.cc437 bool VerifyAnnotationSetRefList(dex_ir::AnnotationSetRefList* orig, in VerifyAnnotationSetRefList()
438 dex_ir::AnnotationSetRefList* output, in VerifyAnnotationSetRefList()
Ddex_writer.cc352 std::unique_ptr<dex_ir::AnnotationSetRefList>& annotation_set_ref = anno_set_ref_pair.second; in WriteAnnotationSetRefs()
/art/runtime/
Ddex_file.h396 struct AnnotationSetRefList { struct
401 DISALLOW_COPY_AND_ASSIGN(AnnotationSetRefList); argument
975 const AnnotationSetRefList* GetParameterAnnotationSetRefList( in GetParameterAnnotationSetRefList()
981 return reinterpret_cast<const AnnotationSetRefList*>(begin_ + offset); in GetParameterAnnotationSetRefList()
Ddex_file_annotations.cc966 const DexFile::AnnotationSetRefList* set_ref_list, in ProcessAnnotationSetRefList()
1119 const DexFile::AnnotationSetRefList* set_ref_list = in GetParameterAnnotations()
1137 const DexFile::AnnotationSetRefList* set_ref_list = in GetAnnotationForMethodParameter()
Ddex_file_verifier.cc2499 const DexFile::AnnotationSetRefList* list = in CheckInterAnnotationSetRefList()
2500 reinterpret_cast<const DexFile::AnnotationSetRefList*>(ptr_); in CheckInterAnnotationSetRefList()
/art/dexdump/
Ddexdump.cc705 const DexFile::AnnotationSetRefList* in dumpClassAnnotations()