Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file_test.cc420 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
432 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
443 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
501 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F()
516 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F()
Ddex_file-inl.h87 return StringDataByIdx(field_id.name_idx_); in GetFieldName()
104 return StringDataByIdx(method_id.name_idx_); in GetMethodName()
Dart_method.cc145 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_, in GetNameAsString()
194 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature()
198 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { in HasSameNameAndSignature()
255 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_), in FindDexMethodIndexInOtherDexFile()
Ddex_file_verifier.cc124 method_index)->name_idx_.index_; in FindMethodName()
2152 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx") in CheckInterFieldIdItem()
2165 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterFieldIdItem()
2168 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterFieldIdItem()
2193 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx") in CheckInterMethodIdItem()
2212 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) { in CheckInterMethodIdItem()
2215 } else if (prev_item->name_idx_ == item->name_idx_) { in CheckInterMethodIdItem()
2931 std::string field_name = GetStringOrError(begin, header, field_id->name_idx_); in GetFieldDescriptionOrError()
2948 std::string method_name = GetStringOrError(begin, header, method_id->name_idx_); in GetMethodDescriptionOrError()
Ddex_file_verifier_test.cc179 method_id->name_idx_ = dex::StringIndex(0xFF); in TEST_F()
250 dex::StringIndex name_index = dex_file->GetMethodId(method_index).name_idx_; in FindMethodData()
855 dex::StringIndex name_index = dex_file->GetFieldId(field_index).name_idx_; in FindFieldData()
1434 CHECK_EQ(dex_file->GetMethodId(method_idx).name_idx_, in TEST_F()
1435 dex_file->GetMethodId(method_idx + 1).name_idx_); in TEST_F()
Dart_field-inl.h348 ObjPtr<mirror::String> name = dex_cache->GetResolvedString(field_id.name_idx_); in GetStringName()
350 name = ResolveGetStringName(self, *dex_file, field_id.name_idx_, dex_cache); in GetStringName()
Ddex_file.cc719 if (name_idx > field.name_idx_) { in FindFieldId()
721 } else if (name_idx < field.name_idx_) { in FindFieldId()
754 if (name_idx > method.name_idx_) { in FindMethodId()
756 } else if (name_idx < method.name_idx_) { in FindMethodId()
Ddex_file.h166 dex::StringIndex name_idx_; // index into string_ids_ array for field name member
187 dex::StringIndex name_idx_; // index into string_ids_ array for method name member
Dclass_linker.cc3440 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); in LoadMethod()
5736 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_); in GetName()
5747 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
5751 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_, in HasSameNameAndSignature()
8058 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod()
/art/dexdump/
Ddexdump.cc494 fputs(pDexFile->StringDataByIdx(pFieldId.name_idx_), gOutFile); in dumpEncodedValue()
500 fputs(pDexFile->StringDataByIdx(pMethodId.name_idx_), gOutFile); in dumpEncodedValue()
681 const char* field_name = pDexFile->StringDataByIdx(pFieldId.name_idx_); in dumpClassAnnotations()
692 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpClassAnnotations()
703 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpClassAnnotations()
855 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in indexString()
867 const char* name = pDexFile->StringDataByIdx(pFieldId.name_idx_); in indexString()
888 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in indexString()
1146 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpBytecodes()
1207 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod()
[all …]
/art/dexlist/
Ddexlist.cc103 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod()
/art/runtime/mirror/
Dclass.cc462 StringPiece name = dex_file.StringDataByIdx(method_id.name_idx_); in FindInterfaceMethod()
594 name = dex_file.StringDataByIdx(method_id.name_idx_); in FindClassMethod()
615 if (cmp_method_id.name_idx_ == method_id.name_idx_ && in FindClassMethod()
623 name = dex_file.StringDataByIdx(method_id.name_idx_); in FindClassMethod()
651 name = dex_file.StringDataByIdx(method_id.name_idx_); in FindClassMethod()
/art/dexlayout/
Ddex_ir.cc353 GetStringId(disk_field_id.name_idx_.index_)); in CreateFieldId()
361 GetStringId(disk_method_id.name_idx_.index_)); in CreateMethodId()
/art/compiler/
Dverifier_deps_test.cc340 std::string actual_name = dex_dep.first->StringDataByIdx(field_id.name_idx_); in HasField()
392 std::string actual_name = dex_dep.first->StringDataByIdx(method_id.name_idx_); in HasMethod()
Dimage_writer.cc1059 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in PruneAndPreloadDexCache()
1105 const char* name = dex_file.StringDataByIdx(field_id.name_idx_); in PruneAndPreloadDexCache()
/art/runtime/verifier/
Dverifier_deps.cc967 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_)); in VerifyFields()
Dmethod_verifier.cc735 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_); in Verify()
2938 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()