Home
last modified time | relevance | path

Searched refs:HasNext (Results 1 – 25 of 26) sorted by relevance

12

/art/runtime/
Dsubtype_check_info.h245 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()
Dsubtype_check_info_test.cc124 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()
Dart_method.cc277 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
/art/libdexfile/dex/
Ddex_file_exception_helpers.h49 bool HasNext() const { in HasNext() function
54 CHECK(!HasNext()); in EndDataPointer()
Ddex_file_exception_helpers.cc66 DCHECK(!HasNext()); in Init()
Ddex_file_verifier.cc1139 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()
Ddex_file.cc379 while (it.HasNext() && i < signature_length && compare == 0) { in FindProtoId()
385 if (it.HasNext()) { in FindProtoId()
Ddex_file.h903 bool HasNext() const { return pos_ < size_; } in HasNext() function
924 bool HasNext() const { return pos_ < array_size_; } in HasNext() function
Ddex_file-inl.h350 for (; it.HasNext(); it.Next()) { in DecodeDebugLocalInfo()
Ddex_file_verifier_test.cc1425 CHECK(!DexFileParameterIterator(*dex_file, proto1).HasNext()); in TEST_F()
1426 CHECK(DexFileParameterIterator(*dex_file, proto2).HasNext()); in TEST_F()
/art/compiler/
Dexception_test.cc144 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/
Dcalling_convention.cc81 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()
Dcalling_convention.h254 bool HasNext();
334 bool HasNext();
Djni_compiler.cc267 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal()
268 CHECK(main_jni_conv->HasNext()); in ArtJniCompileMethodInternal()
442 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal()
/art/dexdump/
Ddexdump_cfg.cc198 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()
Ddexdump.cc745 for (CatchHandlerIterator it(accessor, try_item); it.HasNext(); it.Next()) { in dumpCatches()
1708 while (it.HasNext()) { in dumpCallSite()
/art/compiler/optimizing/
Dblock_builder.cc93 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/
Dcalling_convention_arm.cc236 while (HasNext()) { in EntrySpills()
479 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam in Next()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc172 while (HasNext()) { in EntrySpills()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc171 while (HasNext()) { in EntrySpills()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc216 while (HasNext()) { in EntrySpills()
/art/runtime/interpreter/
Dinterpreter_common.cc777 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/
Dflow_analysis.cc80 for (; iterator.HasNext(); iterator.Next()) { in FindBranches()
/art/dexlayout/
Ddex_ir_builder.cc845 for (CatchHandlerIterator it(accessor, disk_try_item); it.HasNext(); it.Next()) { in DedupeOrCreateCodeItem()
/art/dex2oat/driver/
Dcompiler_driver.cc2372 for ( ; value_it.HasNext(); value_it.Next()) { in InternStrings()

12