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

/art/runtime/
H A Ddex_file.cc371 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
373 const uint32_t name_idx = GetIndexForStringId(name); local
385 if (name_idx > field.name_idx_) {
387 } else if (name_idx < field.name_idx_) {
406 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
408 const uint32_t name_idx = GetIndexForStringId(name); local
420 if (name_idx > method.name_idx_) {
422 } else if (name_idx < method.name_idx_) {
723 uint16_t name_idx; local
748 name_idx
[all...]
H A Ddex_file_verifier.cc544 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
549 LOG(ERROR) << StringPrintf("Out-of-order annotation_element name_idx: %x then %x",
813 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
814 if (name_idx != 0) {
815 name_idx--;
816 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) {
844 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
845 if (name_idx != 0) {
846 name_idx
868 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
[all...]

Completed in 60 milliseconds