Home
last modified time | relevance | path

Searched refs:NumMethodIds (Results 1 – 13 of 13) sorted by relevance

/art/compiler/utils/
Dtest_dex_file_builder_test.cc72 ASSERT_EQ(2u, dex_file->NumMethodIds()); in TEST()
/art/runtime/mirror/
Ddex_cache_test.cc45 EXPECT_EQ(java_lang_dex_file_->NumMethodIds(), dex_cache->NumResolvedMethods()); in TEST_F()
/art/compiler/driver/
Dcompiler_driver_test.cc121 EXPECT_EQ(dex.NumMethodIds(), dex_cache->NumResolvedMethods()); in TEST_F()
Dcompiler_driver.cc342 method_indexes_(dex_file.NumMethodIds(), false, Allocator::GetMallocAllocator()) { in DexFileMethodSet()
/art/runtime/
Ddex_file_test.cc324 for (size_t i = 0; i < java_lang_dex_file_->NumMethodIds(); i++) { in TEST_F()
Ddex_file.h633 size_t NumMethodIds() const { in NumMethodIds() function
640 DCHECK_LT(idx, NumMethodIds()) << GetLocation(); in GetMethodId()
Dutils.cc377 if (method_idx >= dex_file.NumMethodIds()) { in PrettyMethod()
1807 if (dex_method_idx >= dex_file->NumMethodIds()) { in DumpMethodCFG()
Ddex_file_verifier_test.cc1501 CHECK_LT(method_idx + 1u, dex_file->NumMethodIds()); in TEST_F()
Dclass_linker.cc1277 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()
Ddex_file_verifier.cc97 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) { in CheckLoadMethodId()
Ddex_file.cc593 int32_t hi = NumMethodIds() - 1; in FindMethodId()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc427 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
/art/compiler/
Dimage_writer.cc452 DCHECK_EQ(dex_file->NumMethodIds() != 0u, dex_cache->GetResolvedMethods() != nullptr); in PrepareDexCacheArraySlots()