Searched refs:name_idx (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Ddex_file.cc684 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
686 const dex::StringIndex name_idx = GetIndexForStringId(name); local
698 if (name_idx > field.name_idx_) {
700 } else if (name_idx < field.name_idx_) {
719 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
721 const dex::StringIndex name_idx = GetIndexForStringId(name); local
733 if (name_idx > method.name_idx_) {
735 } else if (name_idx < method.name_idx_) {
994 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
996 local_in_reg[arg_reg].name_ = StringDataByIdx(dex::StringIndex(name_idx));
1046 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
1163 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
[all...]
H A Ddex_file_verifier.cc906 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
911 ErrorStringPrintf("Out-of-order annotation_element name_idx: %x then %x",
1436 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx);
1437 if (name_idx != 0) {
1438 name_idx--;
1439 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) {
1467 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx);
1468 if (name_idx != 0) {
1469 name_idx
[all...]
/art/dexdump/
H A Ddexdump.cc520 const u4 name_idx = DecodeUnsignedLeb128(data); local
522 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile);
/art/runtime/interpreter/
H A Dinterpreter_common.cc659 dex::StringIndex name_idx(static_cast<uint32_t>(it.GetJavaValue().i));
660 ObjPtr<mirror::String> name = class_linker->ResolveString(*dex_file, name_idx, dex_cache);

Completed in 83 milliseconds