Home
last modified time | relevance | path

Searched refs:name_idx_ (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Dmethod_helper-inl.h35 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()
Ddex_file_test.cc245 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()
Dmethod_helper.cc35 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()
Ddex_file_verifier.cc1606 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()
Ddex_file.h166 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()
Ddex_file.cc499 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()
Dclass_linker.cc2885 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/
Delf_writer_quick.h196 Elf32_Word name_idx_; member
Delf_writer_quick.cc675 sym.st_name = it->name_idx_; in GenerateSymtab()
695 it->name_idx_ = tab.size(); in GenerateStrtab()
/art/runtime/verifier/
Dmethod_verifier.cc2269 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()