Home
last modified time | relevance | path

Searched refs:set_item (Results 1 – 5 of 5) sorted by relevance

/art/dexlayout/
Ddexlayout.h137 void DumpAnnotationSetItem(dex_ir::AnnotationSetItem* set_item);
Ddexlayout.cc683 void DexLayout::DumpAnnotationSetItem(dex_ir::AnnotationSetItem* set_item) { in DumpAnnotationSetItem() argument
684 if (set_item == nullptr || set_item->GetItems()->size() == 0) { in DumpAnnotationSetItem()
688 for (dex_ir::AnnotationItem* annotation : *set_item->GetItems()) { in DumpAnnotationSetItem()
/art/libdexfile/dex/
Ddex_file.h625 const dex::AnnotationItem* GetAnnotationItem(const dex::AnnotationSetItem* set_item, in GetAnnotationItem() argument
627 DCHECK_LE(index, set_item->size_); in GetAnnotationItem()
628 return GetAnnotationItemAtOffset(set_item->entries_[index]); in GetAnnotationItem()
/art/dexdump/
Ddexdump.cc662 static void dumpAnnotationSetItem(const DexFile* pDexFile, const dex::AnnotationSetItem* set_item) { in dumpAnnotationSetItem() argument
663 if (set_item == nullptr || set_item->size_ == 0) { in dumpAnnotationSetItem()
667 for (u4 i = 0; i < set_item->size_; i++) { in dumpAnnotationSetItem()
668 const dex::AnnotationItem* annotation = pDexFile->GetAnnotationItem(set_item, i); in dumpAnnotationSetItem()
/art/runtime/dex/
Ddex_file_annotations.cc973 const AnnotationSetItem* set_item = dex_file.GetSetRefItemItem(set_ref_item); in ProcessAnnotationSetRefList() local
975 set_item, in ProcessAnnotationSetRefList()