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

/art/runtime/
H A Dmethod_helper-inl.h35 return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_;
40 if (!DexFileStringEquals(dex_file, mid.name_idx_, other_dex_file, other_mid.name_idx_)) {
H A Dmethod_helper.cc35 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
126 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
H A Ddex_file_test.cc242 const char* name = raw->StringDataByIdx(method_id.name_idx_);
254 const char* name = raw->StringDataByIdx(method_id.name_idx_);
265 const char* name = raw->StringDataByIdx(method_id.name_idx_);
322 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
337 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
H A Ddex_file_verifier.cc1606 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx")
1619 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1622 } else if (prev_item->name_idx_ == item->name_idx_) {
1647 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx")
1666 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1669 } else if (prev_item->name_idx_ == item->name_idx_) {
[all...]
H A Ddex_file.h164 uint32_t name_idx_; // index into string_ids_ array for field name member in struct:art::DexFile::FieldId
174 uint32_t name_idx_; // index into string_ids_ array for method name member in struct:art::DexFile::MethodId
575 return StringDataByIdx(field_id.name_idx_);
617 return StringDataByIdx(method_id.name_idx_);
H A Ddex_file.cc492 if (name_idx > field.name_idx_) {
494 } else if (name_idx < field.name_idx_) {
527 if (name_idx > method.name_idx_) {
529 } else if (name_idx < method.name_idx_) {
H A Dclass_linker.cc2848 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_);
5259 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
5288 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
5435 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_));
/art/compiler/
H A Delf_writer_quick.h196 Elf32_Word name_idx_; member in struct:art::FINAL::ElfSymtabBuilder::ElfSymbolState
H A Delf_writer_quick.cc675 sym.st_name = it->name_idx_;
695 it->name_idx_ = tab.size();
/art/runtime/verifier/
H A Dmethod_verifier.cc2234 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;

Completed in 127 milliseconds