HomeSort by relevance Sort by last modified time
    Searched refs:proto_idx (Results 1 - 5 of 5) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 223 public int proto_idx; // proto of method : index of protoIdItems field in class:DexFileReader.MethodsIdItem
237 item.proto_idx = b.readUShort();
DexClassImpl.java 298 protoIdItems[methodIdItems[methodIdIdx].proto_idx],
  /art/compiler/utils/
test_dex_file_builder.h 122 uint32_t proto_idx = 0u; local
124 entry.second.idx = proto_idx;
125 proto_idx += 1u;
  /art/runtime/
dex_file.h 785 const char* GetShorty(uint32_t proto_idx) const {
786 const ProtoId& proto_id = GetProtoId(proto_idx);
    [all...]
dex_file.cc 553 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
588 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
591 const uint16_t proto_idx = GetIndexForProtoId(signature); local
607 if (proto_idx > method.proto_idx_) {
609 } else if (proto_idx < method.proto_idx_) {
    [all...]

Completed in 118 milliseconds