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

/art/runtime/
H A Ddex_file_test.cc246 const char* name = raw->StringDataByIdx(method_id.name_idx_);
258 const char* name = raw->StringDataByIdx(method_id.name_idx_);
269 const char* name = raw->StringDataByIdx(method_id.name_idx_);
327 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
342 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
H A Dart_method.cc64 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
113 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
117 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
177 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
H A Ddex_file_verifier.cc1843 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx")
1856 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1859 } else if (prev_item->name_idx_ == item->name_idx_) {
1884 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx")
1903 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1906 } else if (prev_item->name_idx_ == item->name_idx_) {
[all...]
H A Ddex_file_verifier_test.cc243 method_id->name_idx_ = 0xFF;
314 uint32_t name_index = dex_file->GetMethodId(method_index).name_idx_;
702 method_id->name_idx_ = dex_file->NumStringIds();
923 uint32_t name_index = dex_file->GetFieldId(field_index).name_idx_;
1502 CHECK_EQ(dex_file->GetMethodId(method_idx).name_idx_,
1503 dex_file->GetMethodId(method_idx + 1).name_idx_);
H A Dart_field-inl.h325 auto* name = dex_cache->GetResolvedString(field_id.name_idx_);
327 name = ResolveGetStringName(self, *dex_file, field_id.name_idx_, dex_cache);
H A Ddex_file.h182 uint32_t name_idx_; // index into string_ids_ array for field name member in struct:art::DexFile::FieldId
192 uint32_t name_idx_; // index into string_ids_ array for method name member in struct:art::DexFile::MethodId
629 return StringDataByIdx(field_id.name_idx_);
671 return StringDataByIdx(method_id.name_idx_);
H A Ddex_file.cc567 if (name_idx > field.name_idx_) {
569 } else if (name_idx < field.name_idx_) {
602 if (name_idx > method.name_idx_) {
604 } else if (name_idx < method.name_idx_) {
H A Dclass_linker.cc3149 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_);
5592 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_);
5603 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_;
5607 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_,
7686 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
7722 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
7903 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_));
/art/dexlist/
H A Ddexlist.cc104 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_);
/art/dexdump/
H A Ddexdump.cc561 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
573 const char* name = pDexFile->StringDataByIdx(pFieldId.name_idx_);
857 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
920 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
1146 const char* name = pDexFile->StringDataByIdx(pFieldId.name_idx_);
/art/runtime/verifier/
H A Dmethod_verifier.cc695 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
2879 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;

Completed in 238 milliseconds