Searched refs:NumMethodIds (Results 1 – 13 of 13) sorted by relevance
/art/compiler/utils/ |
D | test_dex_file_builder_test.cc | 72 ASSERT_EQ(2u, dex_file->NumMethodIds()); in TEST()
|
/art/runtime/mirror/ |
D | dex_cache_test.cc | 45 EXPECT_EQ(java_lang_dex_file_->NumMethodIds(), dex_cache->NumResolvedMethods()); in TEST_F()
|
/art/compiler/driver/ |
D | compiler_driver_test.cc | 121 EXPECT_EQ(dex.NumMethodIds(), dex_cache->NumResolvedMethods()); in TEST_F()
|
D | compiler_driver.cc | 342 method_indexes_(dex_file.NumMethodIds(), false, Allocator::GetMallocAllocator()) { in DexFileMethodSet()
|
/art/runtime/ |
D | dex_file_test.cc | 324 for (size_t i = 0; i < java_lang_dex_file_->NumMethodIds(); i++) { in TEST_F()
|
D | dex_file.h | 633 size_t NumMethodIds() const { in NumMethodIds() function 640 DCHECK_LT(idx, NumMethodIds()) << GetLocation(); in GetMethodId()
|
D | utils.cc | 377 if (method_idx >= dex_file.NumMethodIds()) { in PrettyMethod() 1807 if (dex_method_idx >= dex_file->NumMethodIds()) { in DumpMethodCFG()
|
D | dex_file_verifier_test.cc | 1501 CHECK_LT(method_idx + 1u, dex_file->NumMethodIds()); in TEST_F()
|
D | class_linker.cc | 1277 const size_t num_methods = dex_file->NumMethodIds(); in UpdateAppImageClassLoadersAndDexCaches() 2081 dex_file.NumMethodIds() != 0u || dex_file.NumFieldIds() != 0u) { in AllocDexCache() 2091 ArtMethod** methods = (dex_file.NumMethodIds() == 0u) ? nullptr : in AllocDexCache() 2103 for (size_t i = 0; i < dex_file.NumMethodIds(); ++i) { in AllocDexCache() 2117 dex_file.NumMethodIds(), in AllocDexCache()
|
D | dex_file_verifier.cc | 97 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) { in CheckLoadMethodId()
|
D | dex_file.cc | 593 int32_t hi = NumMethodIds() - 1; in FindMethodId()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 427 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
|
/art/compiler/ |
D | image_writer.cc | 452 DCHECK_EQ(dex_file->NumMethodIds() != 0u, dex_cache->GetResolvedMethods() != nullptr); in PrepareDexCacheArraySlots()
|