Searched refs:name_idx_ (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | art_method.cc | 64 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_, in GetNameAsString() 102 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature() 106 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { in HasSameNameAndSignature() 170 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_), in FindDexMethodIndexInOtherDexFile()
|
D | dex_file_test.cc | 246 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 258 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 269 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 326 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F() 341 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F()
|
D | dex_file_verifier.cc | 1633 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx") in CheckInterFieldIdItem() 1646 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterFieldIdItem() 1649 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterFieldIdItem() 1674 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx") in CheckInterMethodIdItem() 1693 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterMethodIdItem() 1696 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterMethodIdItem()
|
D | art_field-inl.h | 324 auto* name = dex_cache->GetResolvedString(field_id.name_idx_); in GetStringName() 326 name = ResolveGetStringName(self, *dex_file, field_id.name_idx_, dex_cache); in GetStringName()
|
D | dex_file.h | 167 uint32_t name_idx_; // index into string_ids_ array for field name member 177 uint32_t name_idx_; // index into string_ids_ array for method name member 595 return StringDataByIdx(field_id.name_idx_); in GetFieldName() 637 return StringDataByIdx(method_id.name_idx_); in GetMethodName()
|
D | dex_file.cc | 551 if (name_idx > field.name_idx_) { in FindFieldId() 553 } else if (name_idx < field.name_idx_) { in FindFieldId() 586 if (name_idx > method.name_idx_) { in FindMethodId() 588 } else if (name_idx < method.name_idx_) { in FindMethodId()
|
D | class_linker.cc | 2395 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); in LoadMethod() 4432 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_); in GetName() 4443 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature() 4447 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_, in HasSameNameAndSignature() 5390 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod() 5420 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod() 5566 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_)); in ResolveFieldJLS()
|
/art/compiler/ |
D | elf_builder.h | 331 sym.st_name = it.name_idx_; in Write() 355 Elf_Word name_idx_; // index in the strtab. member
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2446 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()
|