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

/art/runtime/
H A Ddex_file.cc485 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
487 const uint32_t name_idx = GetIndexForStringId(name); local
499 if (name_idx > field.name_idx_) {
501 } else if (name_idx < field.name_idx_) {
520 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
522 const uint32_t name_idx = GetIndexForStringId(name); local
534 if (name_idx > method.name_idx_) {
536 } else if (name_idx < method.name_idx_) {
819 uint32_t name_idx; local
844 name_idx
[all...]
H A Ddex_file_verifier.cc664 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
669 ErrorStringPrintf("Out-of-order annotation_element name_idx: %x then %x",
937 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
938 if (name_idx != 0) {
939 name_idx--;
940 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) {
968 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
969 if (name_idx != 0) {
970 name_idx
992 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
[all...]

Completed in 161 milliseconds