HomeSort by relevance Sort by last modified time
    Searched refs:name_idx (Results 1 - 7 of 7) 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.cc 537 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
539 const uint32_t name_idx = GetIndexForStringId(name); local
551 if (name_idx > field.name_idx_) {
553 } else if (name_idx < field.name_idx_) {
572 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
574 const uint32_t name_idx = GetIndexForStringId(name); local
586 if (name_idx > method.name_idx_) {
588 } else if (name_idx < method.name_idx_) {
872 uint32_t name_idx; local
897 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",
964 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
995 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
1019 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
    [all...]
  /art/compiler/
elf_builder.h 306 Elf_Word name_idx = strtab_->AddName(name); local
308 MakeStInfo(binding, type), other, name_idx });
    [all...]

Completed in 159 milliseconds