HomeSort by relevance Sort by last modified time
    Searched refs:name_idx_ (Results 1 - 17 of 17) sorted by null

  /art/runtime/
dex_file-inl.h 87 return StringDataByIdx(field_id.name_idx_);
104 return StringDataByIdx(method_id.name_idx_);
art_method.cc 145 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
194 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
198 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
255 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
    [all...]
dex_file_verifier.cc 124 method_index)->name_idx_.index_;
    [all...]
dex_file_test.cc 420 const char* name = raw->StringDataByIdx(method_id.name_idx_);
432 const char* name = raw->StringDataByIdx(method_id.name_idx_);
443 const char* name = raw->StringDataByIdx(method_id.name_idx_);
501 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
516 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
dex_file_verifier_test.cc 179 method_id->name_idx_ = dex::StringIndex(0xFF);
250 dex::StringIndex name_index = dex_file->GetMethodId(method_index).name_idx_;
855 dex::StringIndex name_index = dex_file->GetFieldId(field_index).name_idx_
    [all...]
art_field-inl.h 348 ObjPtr<mirror::String> name = dex_cache->GetResolvedString(field_id.name_idx_);
350 name = ResolveGetStringName(self, *dex_file, field_id.name_idx_, dex_cache);
dex_file.cc 719 if (name_idx > field.name_idx_) {
721 } else if (name_idx < field.name_idx_) {
754 if (name_idx > method.name_idx_) {
756 } else if (name_idx < method.name_idx_) {
    [all...]
dex_file.h 166 dex::StringIndex name_idx_; // index into string_ids_ array for field name member in struct:art::DexFile::FieldId
187 dex::StringIndex name_idx_; // index into string_ids_ array for method name member in struct:art::DexFile::MethodId
    [all...]
class_linker.cc     [all...]
  /art/dexdump/
dexdump.cc 494 fputs(pDexFile->StringDataByIdx(pFieldId.name_idx_), gOutFile);
500 fputs(pDexFile->StringDataByIdx(pMethodId.name_idx_), gOutFile);
681 const char* field_name = pDexFile->StringDataByIdx(pFieldId.name_idx_);
692 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
703 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
855 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
867 const char* name = pDexFile->StringDataByIdx(pFieldId.name_idx_);
888 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_);
    [all...]
  /art/dexlist/
dexlist.cc 103 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_);
  /art/runtime/mirror/
class.cc 462 StringPiece name = dex_file.StringDataByIdx(method_id.name_idx_);
594 name = dex_file.StringDataByIdx(method_id.name_idx_);
615 if (cmp_method_id.name_idx_ == method_id.name_idx_ &&
623 name = dex_file.StringDataByIdx(method_id.name_idx_);
651 name = dex_file.StringDataByIdx(method_id.name_idx_);
    [all...]
  /art/compiler/
verifier_deps_test.cc 340 std::string actual_name = dex_dep.first->StringDataByIdx(field_id.name_idx_);
392 std::string actual_name = dex_dep.first->StringDataByIdx(method_id.name_idx_);
    [all...]
image_writer.cc     [all...]
  /art/dexlayout/
dex_ir.cc 353 GetStringId(disk_field_id.name_idx_.index_));
361 GetStringId(disk_method_id.name_idx_.index_));
    [all...]
  /art/runtime/verifier/
verifier_deps.cc     [all...]
method_verifier.cc 735 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
    [all...]

Completed in 220 milliseconds