Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_compilation_info_test.cc116 ASSERT_TRUE(info1.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
132 ASSERT_TRUE(info2.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
135 ASSERT_TRUE(info2.ContainsMethod(MethodReference(m->GetDexFile(), m->GetDexMethodIndex()))); in TEST_F()
Doffline_profiling_info.h66 bool ContainsMethod(const MethodReference& method_ref) const;
Djit_code_cache.h109 bool ContainsMethod(ArtMethod* method) REQUIRES(!lock_);
Dprofile_saver.cc682 return info->ContainsMethod(MethodReference(dex_file, method_idx)); in HasSeenMethod()
Doffline_profiling_info.cc549 bool ProfileCompilationInfo::ContainsMethod(const MethodReference& method_ref) const { in ContainsMethod() function in art::ProfileCompilationInfo
Djit_code_cache.cc168 bool JitCodeCache::ContainsMethod(ArtMethod* method) { in ContainsMethod() function in art::jit::JitCodeCache
/art/runtime/
Dart_method.cc469 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) { in HasAnyCompiledCode()
/art/compiler/driver/
Dcompiler_driver.cc978 bool result = profile_compilation_info_->ContainsMethod(method_ref); in ShouldCompileBasedOnProfile()