Home
last modified time | relevance | path

Searched refs:ContainsMethod (Results 1 – 10 of 10) sorted by relevance

/art/runtime/jit/
Dprofile_compilation_info_test.cc294 ASSERT_TRUE(info1.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
310 ASSERT_TRUE(info2.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
313 ASSERT_TRUE(info2.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
659 ASSERT_TRUE(info.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
Djit_code_cache.h127 bool ContainsMethod(ArtMethod* method) REQUIRES(!lock_);
Dprofile_compilation_info.h228 bool ContainsMethod(const MethodReference& method_ref) const;
Dprofile_saver.cc605 return info.ContainsMethod(MethodReference(dex_file, method_idx)); in HasSeenMethod()
Djit_code_cache.cc182 bool JitCodeCache::ContainsMethod(ArtMethod* method) { in ContainsMethod() function in art::jit::JitCodeCache
Dprofile_compilation_info.cc980 bool ProfileCompilationInfo::ContainsMethod(const MethodReference& method_ref) const { in ContainsMethod() function in art::ProfileCompilationInfo
/art/dexlayout/
Ddex_visualize.cc177 if (!profile_info->ContainsMethod(MethodReference(dex_file, method_idx))) { in DumpMethodItem()
Ddexlayout.cc1560 info_->ContainsMethod(MethodReference(dex_file, method_id->GetIndex())); in LayoutStringData()
1702 info_->ContainsMethod(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems()
/art/runtime/
Dart_method.cc714 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) { in HasAnyCompiledCode()
/art/compiler/driver/
Dcompiler_driver.cc1008 bool result = profile_compilation_info_->ContainsMethod(method_ref); in ShouldCompileBasedOnProfile()