Home | History | Annotate | Download | only in runtime

Lines Matching full:prev_item

1477     const DexFile::StringId* prev_item = reinterpret_cast<const DexFile::StringId*>(previous_item_);
1478 const char* prev_str = dex_file_->GetStringData(*prev_item);
1503 const DexFile::TypeId* prev_item = reinterpret_cast<const DexFile::TypeId*>(previous_item_);
1504 if (UNLIKELY(prev_item->descriptor_idx_ >= item->descriptor_idx_)) {
1506 prev_item->descriptor_idx_, item->descriptor_idx_);
1614 const DexFile::FieldId* prev_item = reinterpret_cast<const DexFile::FieldId*>(previous_item_);
1615 if (UNLIKELY(prev_item->class_idx_ > item->class_idx_)) {
1618 } else if (prev_item->class_idx_ == item->class_idx_) {
1619 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1622 } else if (prev_item->name_idx_ == item->name_idx_) {
1623 if (UNLIKELY(prev_item->type_idx_ >= item->type_idx_)) {
1661 const DexFile::MethodId* prev_item = reinterpret_cast<const DexFile::MethodId*>(previous_item_);
1662 if (UNLIKELY(prev_item->class_idx_ > item->class_idx_)) {
1665 } else if (prev_item->class_idx_ == item->class_idx_) {
1666 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1669 } else if (prev_item->name_idx_ == item->name_idx_) {
1670 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) {