Home
last modified time | relevance | path

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

/art/runtime/
Dart_method.cc64 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()
Ddex_file_test.cc246 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()
Ddex_file_verifier.cc1633 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()
Dart_field-inl.h324 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()
Ddex_file.h167 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()
Ddex_file.cc551 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()
Dclass_linker.cc2395 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/
Delf_builder.h331 sym.st_name = it.name_idx_; in Write()
355 Elf_Word name_idx_; // index in the strtab. member
/art/runtime/verifier/
Dmethod_verifier.cc2446 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()