/art/runtime/ |
D | subtype_check_info.h | 245 if (HasNext() && !bitstring_and_of_.overflow_) { in CreateChild() 283 DCHECK(!HasNext() || GetNext() != 0u) in GetState() 312 DCHECK(HasNext()); in GetNext() 321 if (HasNext()) { in MaybeGetNext() 343 if (HasNext()) { in SubtypeCheckInfo() 373 DCHECK(HasNext()); in SetNext() 387 if (HasNext()) { in MaybeInitNext() 401 bool HasNext() const { in HasNext() function 438 if (HasNext()) { in OverwriteNextValueFromParent()
|
D | subtype_check_info_test.cc | 124 static bool HasNext(const SubtypeCheckInfo& io) { in HasNext() function 125 return io.HasNext(); in HasNext() 243 EXPECT_FALSE(HasNext(MakeSubtypeCheckInfoUnchecked(MakeBitStringMax<BitString::kCapacity>(), in TEST_F() 247 EXPECT_FALSE(HasNext(MakeSubtypeCheckInfoUnchecked(MakeBitStringMax<BitString::kCapacity>(), in TEST_F() 250 EXPECT_FALSE(HasNext(MakeSubtypeCheckInfoUnchecked(MakeBitStringMax(), in TEST_F() 315 EXPECT_TRUE(HasNext(sci)); // Root always has a "Next". in TEST_F()
|
D | art_method.cc | 277 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
|
/art/libdexfile/dex/ |
D | dex_file_exception_helpers.h | 49 bool HasNext() const { in HasNext() function 54 CHECK(!HasNext()); in EndDataPointer()
|
D | dex_file_exception_helpers.cc | 66 DCHECK(!HasNext()); in Init()
|
D | dex_file_verifier.cc | 1139 if (!array_it.HasNext()) { in CheckStaticFieldTypes() 1224 if (array_it.HasNext()) { in CheckStaticFieldTypes() 2557 while (it.HasNext() && *shorty != '\0') { in CheckInterProtoIdItem() 2570 if (UNLIKELY(it.HasNext() || *shorty != '\0')) { in CheckInterProtoIdItem() 2585 while (curr_it.HasNext() && prev_it.HasNext()) { in CheckInterProtoIdItem() 2601 if (!curr_it.HasNext()) { in CheckInterProtoIdItem() 2886 if (!it.HasNext() || it.GetValueType() != EncodedArrayValueIterator::ValueType::kMethodHandle) { in CheckInterCallSiteIdItem() 2899 if (!it.HasNext() || in CheckInterCallSiteIdItem() 2913 if (!it.HasNext() || in CheckInterCallSiteIdItem()
|
D | dex_file.cc | 379 while (it.HasNext() && i < signature_length && compare == 0) { in FindProtoId() 385 if (it.HasNext()) { in FindProtoId()
|
D | dex_file.h | 903 bool HasNext() const { return pos_ < size_; } in HasNext() function 924 bool HasNext() const { return pos_ < array_size_; } in HasNext() function
|
D | dex_file-inl.h | 350 for (; it.HasNext(); it.Next()) { in DecodeDebugLocalInfo()
|
D | dex_file_verifier_test.cc | 1425 CHECK(!DexFileParameterIterator(*dex_file, proto1).HasNext()); in TEST_F() 1426 CHECK(DexFileParameterIterator(*dex_file, proto2).HasNext()); in TEST_F()
|
/art/compiler/ |
D | exception_test.cc | 144 ASSERT_TRUE(iter.HasNext()); in TEST_F() 147 ASSERT_TRUE(iter.HasNext()); in TEST_F() 149 EXPECT_FALSE(iter.HasNext()); in TEST_F() 154 ASSERT_TRUE(iter.HasNext()); in TEST_F() 156 EXPECT_FALSE(iter.HasNext()); in TEST_F() 160 EXPECT_FALSE(iter.HasNext()); in TEST_F()
|
/art/compiler/jni/quick/ |
D | calling_convention.cc | 81 bool ManagedRuntimeCallingConvention::HasNext() { in HasNext() function in art::ManagedRuntimeCallingConvention 86 CHECK(HasNext()); in Next() 197 bool JniCallingConvention::HasNext() { in HasNext() function in art::JniCallingConvention 207 CHECK(HasNext()); in Next()
|
D | calling_convention.h | 254 bool HasNext(); 334 bool HasNext();
|
D | jni_compiler.cc | 267 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal() 268 CHECK(main_jni_conv->HasNext()); in ArtJniCompileMethodInternal() 442 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal()
|
/art/dexdump/ |
D | dexdump_cfg.cc | 198 for (; catch_it.HasNext(); catch_it.Next()) { in DumpMethodCFG() 257 for (; catch_it.HasNext(); catch_it.Next()) { in DumpMethodCFG() 298 if (catch_it.HasNext()) { in DumpMethodCFG() 300 for (; catch_it.HasNext(); catch_it.Next()) { in DumpMethodCFG()
|
D | dexdump.cc | 745 for (CatchHandlerIterator it(accessor, try_item); it.HasNext(); it.Next()) { in dumpCatches() 1708 while (it.HasNext()) { in dumpCallSite()
|
/art/compiler/optimizing/ |
D | block_builder.cc | 93 for (; iterator.HasNext(); iterator.Next()) { in CreateBranchTargets() 241 it.HasNext(); in LinkToCatchBlocks() 316 for (; iterator.HasNext(); iterator.Next()) { in InsertTryBoundaryBlocks()
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 236 while (HasNext()) { in EntrySpills() 479 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam in Next()
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.cc | 172 while (HasNext()) { in EntrySpills()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 171 while (HasNext()) { in EntrySpills()
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 216 while (HasNext()) { in EntrySpills()
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 777 for (int32_t i = 0; it->HasNext(); it->Next(), ++i) { \ in PackCollectorArrayForBootstrapMethod() 800 for (int32_t i = 0; it->HasNext(); it->Next(), ++i) { \ in PackCollectorArrayForBootstrapMethod() 877 while (it.HasNext()) { in BuildCallSiteForBootstrapMethod() 1060 DCHECK(!it.HasNext()); in InvokeBootstrapMethod()
|
/art/tools/veridex/ |
D | flow_analysis.cc | 80 for (; iterator.HasNext(); iterator.Next()) { in FindBranches()
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 845 for (CatchHandlerIterator it(accessor, disk_try_item); it.HasNext(); it.Next()) { in DedupeOrCreateCodeItem()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 2372 for ( ; value_it.HasNext(); value_it.Next()) { in InternStrings()
|