/art/runtime/ |
D | dex_method_iterator.h | 39 bool HasNext() { in HasNext() function 90 DCHECK(!GetIterator().HasNext()); in HasNext() 107 CHECK(HasNext()); in GetDexFile() 112 CHECK(HasNext()); in GetMemberIndex() 117 CHECK(HasNext()); in GetInvokeType()
|
D | exception_test.cc | 138 ASSERT_TRUE(iter.HasNext()); in TEST_F() 141 ASSERT_TRUE(iter.HasNext()); in TEST_F() 143 EXPECT_FALSE(iter.HasNext()); in TEST_F() 148 ASSERT_TRUE(iter.HasNext()); in TEST_F() 150 EXPECT_FALSE(iter.HasNext()); in TEST_F() 154 EXPECT_FALSE(iter.HasNext()); in TEST_F()
|
D | dex_method_iterator_test.cc | 37 while (it.HasNext()) { in TEST_F()
|
D | dex_file.h | 1041 bool HasNext() const { return pos_ < size_; } in HasNext() function 1123 bool HasNext() const { in HasNext() function 1150 DCHECK(!HasNext()); in Next() 1206 CHECK(!HasNext()); in EndDataPointer() 1282 bool HasNext() { return pos_ < array_size_; } in HasNext() function 1340 bool HasNext() const { in HasNext() function 1345 CHECK(!HasNext()); in EndDataPointer()
|
D | dex_file.cc | 619 while (it.HasNext() && i < signature_length && compare == 0) { in FindProtoId() 625 if (it.HasNext()) { in FindProtoId() 783 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) { in DecodeDebugInfo0() 810 if (it.HasNext()) { in DecodeDebugInfo0() 1271 DCHECK(!HasNext()); in Init()
|
D | dex_file_verifier.cc | 1533 while (it.HasNext() && *shorty != '\0') { in CheckInterProtoIdItem() 1545 if (UNLIKELY(it.HasNext() || *shorty != '\0')) { in CheckInterProtoIdItem() 1560 while (curr_it.HasNext() && prev_it.HasNext()) { in CheckInterProtoIdItem()
|
D | class_linker.cc | 2387 DCHECK(!it.HasNext()); in GetOatMethodIndexFromMethodIndex() 2869 DCHECK(!it.HasNext()); in LoadClassMembers() 3757 for (; iterator.HasNext(); iterator.Next()) { in ResolveMethodExceptionHandlerTypes() 4228 if (it.HasNext()) { in InitializeClass() 4234 for (size_t i = 0; it.HasNext(); i++, it.Next()) { in InitializeClass() 4531 DCHECK(!dex_data.HasNext()); in CountMethodsAndFields()
|
/art/compiler/jni/quick/ |
D | calling_convention.cc | 51 bool ManagedRuntimeCallingConvention::HasNext() { in HasNext() function in art::ManagedRuntimeCallingConvention 56 CHECK(HasNext()); in Next() 138 bool JniCallingConvention::HasNext() { in HasNext() function in art::JniCallingConvention 148 CHECK(HasNext()); in Next()
|
D | calling_convention.h | 232 bool HasNext(); 305 bool HasNext();
|
D | jni_compiler.cc | 141 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal() 142 CHECK(main_jni_conv->HasNext()); in ArtJniCompileMethodInternal() 248 while (mr_conv->HasNext()) { in ArtJniCompileMethodInternal()
|
/art/runtime/entrypoints/portable/ |
D | portable_throw_entrypoints.cc | 91 for (CatchHandlerIterator it(*code_item, *try_item); it.HasNext(); it.Next()) { in art_portable_find_catch_block_from_code()
|
/art/compiler/ |
D | elf_writer_mclinker.cc | 245 while (it.HasNext()) { in AddMethodInputs() 355 while (it.HasNext()) { in FixupOatMethodOffsets()
|
/art/compiler/sea_ir/types/ |
D | type_inference.cc | 93 for (; iterator.HasNext(); iterator.Next()) { in GetDeclaredArgumentTypes()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 108 while (HasNext()) { in EntrySpills()
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 113 while (HasNext()) { in EntrySpills()
|
/art/runtime/mirror/ |
D | art_method.cc | 226 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 634 for (; iterator.HasNext(); iterator.Next()) { in ScanTryCatchBlocks() 1217 for (; iterator.HasNext(); iterator.Next()) { in SetTypesFromSignature() 2841 for (; iterator.HasNext(); iterator.Next()) { in CodeFlowVerifyInstruction() 2999 for (; iterator.HasNext(); iterator.Next()) { in GetCaughtExceptionType() 3210 for ( ; it->HasNext(); it->Next()) { in VerifyInvocationArgsFromIterator() 3273 bool HasNext() { in HasNext() function in art::verifier::MethodParamListDescriptorIterator
|
/art/compiler/dex/ |
D | mir_graph.cc | 323 for (; iterator.HasNext(); iterator.Next()) { in ProcessTryCatchBlocks() 560 for (; iterator.HasNext(); iterator.Next()) { in ProcessCanThrow()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1693 DCHECK(!it.HasNext()); in ResolveClassFieldsAndMethods() 2081 DCHECK(!it.HasNext()); in CompileClass()
|
/art/oatdump/ |
D | oatdump.cc | 437 DCHECK(!it.HasNext()); in DumpOatClass()
|
/art/compiler/llvm/ |
D | gbc_expander.cc | 2784 for (uint32_t c = 0; iter.HasNext(); iter.Next(), ++c) { in GetLandingPadBasicBlock()
|