Searched defs:name_idx (Results 1 - 3 of 3) sorted by relevance

/art/libdexfile/dex/
H A Ddex_file-inl.h269 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
271 local_in_reg[arg_reg].name_ = index_to_string_data(name_idx);
316 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
329 local_in_reg[reg].name_ = index_to_string_data(name_idx);
468 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
469 entry.source_file_ = index_to_string_data(name_idx);
H A Ddex_file.cc246 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
248 const dex::StringIndex name_idx = GetIndexForStringId(name); local
260 if (name_idx > field.name_idx_) {
262 } else if (name_idx < field.name_idx_) {
281 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
283 const dex::StringIndex name_idx = GetIndexForStringId(name); local
295 if (name_idx > method.name_idx_) {
297 } else if (name_idx < method.name_idx_) {
/art/dexdump/
H A Ddexdump.cc524 const u4 name_idx = DecodeUnsignedLeb128(data); local
526 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile);

Completed in 65 milliseconds