HomeSort by relevance Sort by last modified time
    Searched refs:name_idx (Results 1 - 6 of 6) 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();
DexFieldImpl.java 70 return stringPool[fieldIdItem.name_idx];
DexEncodedValueImpl.java 164 String constantName = stringPool[fieldIdItem.name_idx];
189 String fieldName = stringPool[fieldIdItem.name_idx];
DexMethodImpl.java 97 return stringPool[methodsIdItem.name_idx];
  /art/runtime/
dex_file_verifier.cc 741 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
746 ErrorStringPrintf("Out-of-order annotation_element name_idx: %x then %x",
1167 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
1198 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
1222 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
    [all...]
dex_file.cc 553 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
555 const uint32_t name_idx = GetIndexForStringId(name); local
567 if (name_idx > field.name_idx_) {
569 } else if (name_idx < field.name_idx_) {
588 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
590 const uint32_t name_idx = GetIndexForStringId(name); local
602 if (name_idx > method.name_idx_) {
604 } else if (name_idx < method.name_idx_) {
882 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
884 local_in_reg[arg_reg].name_ = StringDataByIdx(name_idx);
934 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
1050 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
    [all...]

Completed in 112 milliseconds