HomeSort by relevance Sort by last modified time
    Searched defs:name_idx (Results 1 - 3 of 3) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 202 public int name_idx; // name of field : index into string id (or field in class:DexFileReader.FieldIdItem
216 item.name_idx = b.readUInt();
224 public int name_idx; // name of method : index into string id (or field in class:DexFileReader.MethodsIdItem
238 item.name_idx = b.readUInt();
  /art/runtime/
dex_file.cc 478 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
480 const uint32_t name_idx = GetIndexForStringId(name); local
492 if (name_idx > field.name_idx_) {
494 } else if (name_idx < field.name_idx_) {
513 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
515 const uint32_t name_idx = GetIndexForStringId(name); local
527 if (name_idx > method.name_idx_) {
529 } else if (name_idx < method.name_idx_) {
812 uint32_t name_idx; local
837 name_idx = DecodeUnsignedLeb128P1(&stream)
    [all...]
dex_file_verifier.cc 664 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
992 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
    [all...]

Completed in 6705 milliseconds