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

  /art/runtime/
dex_instruction.cc 210 uint32_t type_idx = VRegB_21c(); local
211 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyType(type_idx, *file)
212 << " // type@" << type_idx;
312 uint32_t type_idx = VRegC_22c(); local
314 << PrettyType(type_idx, *file) << " // type@" << type_idx;
320 uint32_t type_idx = VRegC_22c(); local
322 << PrettyType(type_idx, *file) << " // type@" << type_idx;
art_method.cc 348 auto type_idx = proto_params->GetTypeItem(i).type_idx_; local
349 auto* type = cl->ResolveType(type_idx, this);
reflection.cc 363 uint16_t type_idx = params->GetTypeItem(i).type_idx_; local
364 mirror::Class* param_type = m->GetClassFromTypeIndex(type_idx,
370 << m->GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
    [all...]
class_linker_test.cc 1049 uint32_t type_idx = dex_file->GetIndexForTypeId(*type_id); local
    [all...]
dex_file.cc 528 uint16_t type_idx = GetIndexForTypeId(*type_id); local
531 if (class_def.class_idx_ == type_idx) {
539 const DexFile::ClassDef* DexFile::FindClassDef(uint16_t type_idx) const {
543 if (class_def.class_idx_ == type_idx) {
556 const uint16_t type_idx = GetIndexForTypeId(type); local
572 if (type_idx > field.type_idx_) {
574 } else if (type_idx < field.type_idx_) {
774 uint16_t type_idx = GetIndexForTypeId(*type_id); local
776 param_type_idxs->push_back(type_idx);
778 *return_type_idx = type_idx;
    [all...]
dex_file_verifier.cc 80 const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) {
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
84 const DexFile::TypeId& type_id = dex_file_->GetTypeId(type_idx);
111 #define LOAD_STRING_BY_TYPE(var, type_idx, error) \
112 const char* var = CheckLoadStringByTypeIdx(type_idx, error); \
471 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_); local
472 if (!CheckIndex(type_idx, header_->type_ids_size_, "handler type_idx")) {
732 if (!CheckIndex(idx, header_->type_ids_size_, "encoded_annotation type_idx")) {
1174 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_); local
1205 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_); local
    [all...]
class_linker.cc 3718 uint16_t type_idx = dex_file->GetIndexForTypeId(*type_id); local
    [all...]
  /art/compiler/utils/
test_dex_file_builder.h 113 uint32_t type_idx = 0u; local
115 entry.second = type_idx;
116 type_idx += 1u;
177 ++type_idx;
  /art/runtime/mirror/
object_test.cc 312 uint32_t type_idx = java_lang_dex_file_->GetIndexForTypeId(*type_id); local
314 type_idx, 3, sort, Thread::Current(), false,
class.h 1136 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, dex_type_idx_), type_idx); local
    [all...]
class.cc 866 uint16_t type_idx = klass->GetDirectInterfaceTypeIdx(idx); local
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 201 public int type_idx; // type of field : index of type_ids field in class:DexFileReader.FieldIdItem
215 item.type_idx = b.readUShort();
  /art/runtime/interpreter/
interpreter_common.cc 837 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 2338 const uint32_t type_idx = (is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c(); local
4272 uint32_t type_idx; local
    [all...]

Completed in 785 milliseconds