Searched refs:name_idx_ (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
D | method_helper-inl.h | 35 return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature() 40 if (!DexFileStringEquals(dex_file, mid.name_idx_, other_dex_file, other_mid.name_idx_)) { in HasSameNameAndSignature()
|
D | dex_file_test.cc | 245 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 257 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 268 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F() 325 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F() 340 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F()
|
D | method_helper.cc | 35 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_, in GetNameAsString() 126 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_), in FindDexMethodIndexInOtherDexFile()
|
D | dex_file_verifier.cc | 1606 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx") in CheckInterFieldIdItem() 1619 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterFieldIdItem() 1622 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterFieldIdItem() 1647 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx") in CheckInterMethodIdItem() 1666 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterMethodIdItem() 1669 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterMethodIdItem()
|
D | dex_file.h | 166 uint32_t name_idx_; // index into string_ids_ array for field name member 176 uint32_t name_idx_; // index into string_ids_ array for method name member 578 return StringDataByIdx(field_id.name_idx_); in GetFieldName() 620 return StringDataByIdx(method_id.name_idx_); in GetMethodName()
|
D | dex_file.cc | 499 if (name_idx > field.name_idx_) { in FindFieldId() 501 } else if (name_idx < field.name_idx_) { in FindFieldId() 534 if (name_idx > method.name_idx_) { in FindMethodId() 536 } else if (name_idx < method.name_idx_) { in FindMethodId()
|
D | class_linker.cc | 2885 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); in LoadMethod() 4815 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_); in GetName() 4826 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature() 4830 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_, in HasSameNameAndSignature() 5710 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod() 5739 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod() 5886 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_)); in ResolveFieldJLS()
|
/art/compiler/ |
D | elf_writer_quick.h | 196 Elf32_Word name_idx_; member
|
D | elf_writer_quick.cc | 675 sym.st_name = it->name_idx_; in GenerateSymtab() 695 it->name_idx_ = tab.size(); in GenerateStrtab()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2269 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()
|