Searched refs:kDexNoIndex (Results 1 - 25 of 32) sorted by relevance

12

/art/runtime/
H A Dtype_lookup_table_test.cc28 static const size_t kDexNoIndex = DexFile::kDexNoIndex; // Make copy to prevent linking errors. member in namespace:art
59 testing::Values(DescriptorClassDefIdxPair("LDA;", kDexNoIndex)));
H A Doat_quick_method_header.cc51 return DexFile::kDexNoIndex;
61 return DexFile::kDexNoIndex;
H A Dtype_lookup_table.h43 // If no data found then the method returns DexFile::kDexNoIndex
54 return DexFile::kDexNoIndex;
59 return DexFile::kDexNoIndex;
H A Dcheck_reference_map_visitor.h37 CHECK_EQ(GetDexPc(), DexFile::kDexNoIndex); member in class:art::CheckReferenceMapVisitor::DexFile
H A Dart_method-inl.h242 return dex_method_index_ == DexFile::kDexNoIndex;
280 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
296 if (dex_method_idx != DexFile::kDexNoIndex) {
306 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
338 if (dex_pc == DexFile::kDexNoIndex) {
H A Dart_method.cc183 return DexFile::kDexNoIndex;
195 uint32_t found_dex_pc = DexFile::kDexNoIndex;
224 if (found_dex_pc != DexFile::kDexNoIndex) {
H A Dquick_exception_handler.cc99 uint32_t dex_pc = DexFile::kDexNoIndex;
103 if (dex_pc != DexFile::kDexNoIndex) {
109 if (found_dex_pc != DexFile::kDexNoIndex) {
H A Dfault_handler.cc384 return !check_dex_pc || dexpc != DexFile::kDexNoIndex;
H A Dinstrumentation.cc265 ? DexFile::kDexNoIndex
1078 uint32_t dex_pc = DexFile::kDexNoIndex;
1134 uint32_t dex_pc = DexFile::kDexNoIndex;
H A Dart_field-inl.h321 CHECK_NE(dex_field_index, DexFile::kDexNoIndex);
H A Ddex_file.h77 static const uint32_t kDexNoIndex = 0xFFFFFFFF; member in class:art::DexFile
532 if (idx == kDexNoIndex) {
H A Dstack.cc162 return DexFile::kDexNoIndex;
H A Ddebugger.cc2912 catch_dex_pc_(DexFile::kDexNoIndex),
2913 throw_dex_pc_(DexFile::kDexNoIndex) {
2935 if (dex_pc != DexFile::kDexNoIndex) {
2941 if (found_dex_pc != DexFile::kDexNoIndex) {
/art/compiler/driver/
H A Dcompiler_driver-inl.h181 uint32_t storage_idx = DexFile::kDexNoIndex;
191 if (storage_idx != DexFile::kDexNoIndex) {
198 *storage_index = DexFile::kDexNoIndex;
/art/dexlist/
H A Ddexlist.cc146 if (pClassDef.source_file_idx_ == DexFile::kDexNoIndex) {
/art/compiler/optimizing/
H A Dinliner.cc192 uint32_t index = DexFile::kDexNoIndex;
214 if (index != DexFile::kDexNoIndex && dex_cache->GetResolvedType(index) != cls) {
215 index = DexFile::kDexNoIndex;
374 if (class_index == DexFile::kDexNoIndex) {
500 if (class_index == DexFile::kDexNoIndex ||
H A Dinstruction_builder.cc998 uint32_t storage_index = DexFile::kDexNoIndex;
1015 } else if (storage_index != DexFile::kDexNoIndex) {
/art/runtime/interpreter/
H A Dinterpreter.cc338 if (shadow_frame.GetDexPC() == DexFile::kDexNoIndex) {
545 // or DexFile::kDexNoIndex if there is none.
589 if (new_dex_pc != DexFile::kDexNoIndex) {
H A Dinterpreter_switch_impl.cc35 if (found_dex_pc == DexFile::kDexNoIndex) { \
40 shadow_frame.SetDexPC(DexFile::kDexNoIndex); \
81 shadow_frame.SetDexPC(DexFile::kDexNoIndex); \
222 shadow_frame.SetDexPC(DexFile::kDexNoIndex);
239 shadow_frame.SetDexPC(DexFile::kDexNoIndex);
257 shadow_frame.SetDexPC(DexFile::kDexNoIndex);
274 shadow_frame.SetDexPC(DexFile::kDexNoIndex);
313 shadow_frame.SetDexPC(DexFile::kDexNoIndex);
H A Dinterpreter_common.cc438 if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) {
/art/compiler/
H A Doat_writer.cc536 class_def_index_(DexFile::kDexNoIndex) {
541 DCHECK_EQ(class_def_index_, DexFile::kDexNoIndex);
552 class_def_index_ = DexFile::kDexNoIndex;
/art/runtime/interpreter/mterp/
H A Dmterp.cc425 if (found_dex_pc == DexFile::kDexNoIndex) {
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1079 if ((update_dex_cache_method_index != DexFile::kDexNoIndex) &&
2170 if (LIKELY(interface_method->GetDexMethodIndex() != DexFile::kDexNoIndex)) {
/art/dexdump/
H A Ddexdump.cc1400 if (pClassDef.source_file_idx_ != DexFile::kDexNoIndex) {
/art/runtime/mirror/
H A Dclass.cc1050 return (type_id == nullptr) ? DexFile::kDexNoIndex : dex_file.GetIndexForTypeId(*type_id);

Completed in 438 milliseconds

12