Home
last modified time | relevance | path

Searched refs:kDexNoIndex16 (Results 1 – 17 of 17) sorted by relevance

/art/compiler/dex/
Dinline_method_analyser.cc204 ConstructorIPutData() : field_index(DexFile::kDexNoIndex16), arg(0u) { } in ConstructorIPutData()
226 if (iputs[old_pos].field_index == DexFile::kDexNoIndex16) { in RecordConstructorIPut()
242 while (new_pos != arraysize(iputs) && iputs[new_pos].field_index != DexFile::kDexNoIndex16) { in RecordConstructorIPut()
263 return iput_data.field_index != DexFile::kDexNoIndex16; in DoAnalyseConstructor()
346 if (iputs[0].field_index != DexFile::kDexNoIndex16 && in DoAnalyseConstructor()
378 DCHECK(iputs[0].field_index != DexFile::kDexNoIndex16 || in AnalyseConstructor()
379 iputs[1].field_index == DexFile::kDexNoIndex16); in AnalyseConstructor()
380 DCHECK(iputs[1].field_index != DexFile::kDexNoIndex16 || in AnalyseConstructor()
381 iputs[2].field_index == DexFile::kDexNoIndex16); in AnalyseConstructor()
/art/libdexfile/dex/
Ddex_file_exception_helpers.cc95 handler_.type_idx_ = dex::TypeIndex(DexFile::kDexNoIndex16); in Next()
Ddex_file_verifier.cc627 CheckSizeLimit(header_->type_ids_size_, DexFile::kDexNoIndex16, "type-ids") && in CheckHeader()
632 CheckSizeLimit(header_->proto_ids_size_, DexFile::kDexNoIndex16, "proto-ids") && in CheckHeader()
2584 DCHECK_NE(prev_idx, dex::TypeIndex(DexFile::kDexNoIndex16)); in CheckInterProtoIdItem()
2585 DCHECK_NE(curr_idx, dex::TypeIndex(DexFile::kDexNoIndex16)); in CheckInterProtoIdItem()
Ddex_file.h87 static constexpr uint16_t kDexNoIndex16 = 0xFFFF; variable
/art/libprofile/profile/
Dprofile_compilation_info.cc693 uint32_t max_artificial_ids = DexFile::kDexNoIndex16 - num_type_ids; in FindOrCreateTypeIndex()
1891 if (new_extra_descriptor_index >= DexFile::kDexNoIndex16 - num_type_ids) { in MergeWith()
1920 if (new_extra_descriptor_index >= DexFile::kDexNoIndex16 - num_type_ids) { in MergeWith()
2496 std::min<size_t>(num_type_ids + extra_descriptors_remap.size(), DexFile::kDexNoIndex16)); in ReadClasses()
2515 if (new_extra_descriptor_index >= DexFile::kDexNoIndex16 - num_type_ids) { in ReadClasses()
2734 std::min<size_t>(num_type_ids + extra_descriptors_remap.size(), DexFile::kDexNoIndex16)); in ReadMethods()
2805 if (new_extra_descriptor_index >= DexFile::kDexNoIndex16 - num_type_ids) { in ReadMethods()
Dprofile_compilation_info.h665 static constexpr ExtraDescriptorIndex kMaxExtraDescriptors = DexFile::kDexNoIndex16;
Dprofile_compilation_info_test.cc256 for (uint32_t type_index = num_type_ids1; type_index != DexFile::kDexNoIndex16; ++type_index) { in TEST_F()
274 for (uint32_t type_index = num_type_ids2; type_index != DexFile::kDexNoIndex16; ++type_index) { in TEST_F()
/art/runtime/
Dhidden_api.cc452 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16); in GetDexFlags()
Doat_file.cc2399 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16); in FindOatClass()
/art/runtime/mirror/
Dclass-inl.h925 klass->SetDexClassDefIndex(DexFile::kDexNoIndex16); // Default to no valid class def index. in operator()
926 klass->SetDexTypeIndex(dex::TypeIndex(DexFile::kDexNoIndex16)); // Default to no valid type in operator()
Dclass.cc1154 if (class_def_idx == DexFile::kDexNoIndex16) { in GetClassDef()
/art/compiler/optimizing/
Doptimizing_unit_test.h281 /* class_def_index= */ DexFile::kDexNoIndex16,
Dinliner.cc1568 iput_field_indexes[number_of_iputs] != DexFile::kDexNoIndex16) { in TryPatternSubstitution()
1578 [](uint16_t index) { return index != DexFile::kDexNoIndex16; })); in TryPatternSubstitution()
Doptimizing_compiler.cc1171 /*class_def_idx=*/ DexFile::kDexNoIndex16, in JniCompile()
Dinstruction_builder.cc1007 uint16_t imt_or_vtable_index = DexFile::kDexNoIndex16; in BuildInvoke()
1184 uint16_t imt_or_vtable_index = DexFile::kDexNoIndex16; in BuildInvokePolymorphic()
/art/dexlayout/
Ddex_ir.h499 return index == DexFile::kDexNoIndex16 ? nullptr : TypeIds()[index]; in GetTypeIdOrNullPtr()
Ddexlayout.cc633 DexFile::kDexNoIndex16 : class_def->Superclass()->GetIndex(); in DumpClassDef()