Home
last modified time | relevance | path

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

/art/dexlayout/
Ddexlayout.h87 void DumpAnnotationSetItem(dex_ir::AnnotationSetItem* set_item);
Ddexlayout.cc693 void DexLayout::DumpAnnotationSetItem(dex_ir::AnnotationSetItem* set_item) { in DumpAnnotationSetItem() argument
694 if (set_item == nullptr || set_item->GetItems()->size() == 0) { in DumpAnnotationSetItem()
698 for (dex_ir::AnnotationItem* annotation : *set_item->GetItems()) { in DumpAnnotationSetItem()
/art/dexdump/
Ddexdump.cc629 …c void dumpAnnotationSetItem(const DexFile* pDexFile, const DexFile::AnnotationSetItem* set_item) { in dumpAnnotationSetItem() argument
630 if (set_item == nullptr || set_item->size_ == 0) { in dumpAnnotationSetItem()
634 for (u4 i = 0; i < set_item->size_; i++) { in dumpAnnotationSetItem()
635 const DexFile::AnnotationItem* annotation = pDexFile->GetAnnotationItem(set_item, i); in dumpAnnotationSetItem()
/art/runtime/
Ddex_file.h981 const AnnotationItem* GetAnnotationItem(const AnnotationSetItem* set_item, uint32_t index) const { in GetAnnotationItem() argument
982 DCHECK_LE(index, set_item->size_); in GetAnnotationItem()
983 uint32_t offset = set_item->entries_[index]; in GetAnnotationItem()
Ddex_file_annotations.cc987 const DexFile::AnnotationSetItem* set_item = dex_file.GetSetRefItemItem(set_ref_item); in ProcessAnnotationSetRefList() local
988 mirror::Object* annotation_set = ProcessAnnotationSet(klass, set_item, in ProcessAnnotationSetRefList()