HomeSort by relevance Sort by last modified time
    Searched refs:NumMethodIds (Results 1 - 25 of 29) sorted by null

1 2

  /art/compiler/utils/
atomic_dex_ref_map_test.cc 42 map.AddDexFile(dex.get(), dex->NumMethodIds());
44 EXPECT_GT(dex->NumMethodIds(), 10u);
test_dex_file_builder_test.cc 74 ASSERT_EQ(2u, dex_file->NumMethodIds());
  /art/runtime/
dex_cache_resolved_classes.h 74 size_t NumMethodIds() const {
art_method-inl.h 114 DCHECK_LT(method_index, GetInterfaceMethodIfProxy(pointer_size)->GetDexFile()->NumMethodIds());
134 DCHECK_LT(method_index, GetInterfaceMethodIfProxy(pointer_size)->GetDexFile()->NumMethodIds());
dex_file.h 656 size_t NumMethodIds() const {
663 DCHECK_LT(idx, NumMethodIds()) << GetLocation();
    [all...]
dex_file.cc 745 int32_t hi = NumMethodIds() - 1;
    [all...]
dex_file_test.cc 498 for (size_t i = 0; i < java_lang_dex_file_->NumMethodIds(); i++) {
dex_file_verifier_test.cc     [all...]
  /art/runtime/mirror/
dex_cache.cc 54 dex_file->NumMethodIds() != 0u ||
68 MethodDexCacheType* methods = (dex_file->NumMethodIds() == 0u) ? nullptr :
86 if (dex_file->NumMethodIds() < num_methods) {
87 num_methods = dex_file->NumMethodIds();
dex_cache_test.cc 58 || java_lang_dex_file_->NumMethodIds() == dex_cache->NumResolvedMethods());
dex_cache-inl.h 212 DCHECK_LT(method_idx, GetDexFile()->NumMethodIds());
  /art/compiler/dex/
verification_results.cc 157 atomic_verified_methods_.AddDexFile(dex_file, dex_file->NumMethodIds());
  /art/profman/
boot_image_profile.cc 54 for (size_t i = 0; i < dex_file->NumMethodIds(); ++i) {
profman.cc 670 return kInvalidMethodIndex >= dex_file->NumMethodIds()
    [all...]
  /art/dexlayout/
dexlayout_test.cc 339 for (uint32_t i = 0; i < dex_file->NumMethodIds(); i += 2) {
353 dex_file->NumMethodIds());
358 dex_file->NumMethodIds());
dex_ir_builder.cc 65 for (uint32_t i = 0; i < dex_file.NumMethodIds(); ++i) {
  /art/dexdump/
dexdump_cfg.cc 357 if (dex_method_idx >= dex_file->NumMethodIds()) {
  /art/dex2oat/
dex2oat_image_test.cc 68 for (size_t i = 0; i < dex_file->NumMethodIds(); ++i) {
  /art/runtime/jit/
profile_compilation_info.cc 592 DexFileData* const data = GetOrAddDexFileData(dex_location, checksum, classes.NumMethodIds());
    [all...]
profile_compilation_info.h 492 dex_file->NumMethodIds());
profile_compilation_info_test.cc 205 class_ref.dex_file->NumMethodIds());
    [all...]
  /art/compiler/driver/
compiler_driver_test.cc 126 || dex.NumMethodIds() == dex_cache->NumResolvedMethods());
compiler_driver.cc 258 method_indexes_(dex_file.NumMethodIds(), false, Allocator::GetMallocAllocator()) {
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 435 total->num_methods += dex_file->NumMethodIds();
  /art/compiler/
image_writer.cc 465 DCHECK_EQ(dex_file->NumMethodIds() != 0u, dex_cache->GetResolvedMethods() != nullptr);
    [all...]

Completed in 290 milliseconds

1 2