Home
last modified time | relevance | path

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

/aosp12/art/libartbase/base/
H A Dcompiler_filter_test.cc25 EXPECT_TRUE(CompilerFilter::ParseCompilerFilter(name.c_str(), &parsed)); in TestCompilerFilterName()
33 EXPECT_TRUE(CompilerFilter::ParseCompilerFilter(name.c_str(), &parsed)); in TestSafeModeFilter()
40 TEST(CompilerFilterTest, ParseCompilerFilter) { in TEST() argument
53 EXPECT_FALSE(CompilerFilter::ParseCompilerFilter("super-awesome-filter", &filter)); in TEST()
H A Dcompiler_filter.h97 static bool ParseCompilerFilter(const char* name, /*out*/Filter* filter);
H A Dcompiler_filter.cc164 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() function in art::CompilerFilter
/aosp12/art/runtime/native/
H A Ddalvik_system_DexFile.cc527 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) { in GetDexOptNeeded()
717 return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter) in DexFile_isValidCompilerFilter()
730 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_isProfileGuidedCompilerFilter()
745 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getNonProfileGuidedCompilerFilter()
770 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getSafeModeCompilerFilter()
/aosp12/art/compiler/driver/
H A Dcompiler_options_map-inl.h38 if (!CompilerFilter::ParseCompilerFilter(option.c_str(), &compiler_filter)) {
/aosp12/art/runtime/
H A Doat.cc427 CHECK(CompilerFilter::ParseCompilerFilter(key_value, &filter)) in GetCompilerFilter()
/aosp12/art/dexoptanalyzer/
H A Ddexoptanalyzer.cc186 if (!CompilerFilter::ParseCompilerFilter(filter_str, &compiler_filter_)) { in ParseArgs()
/aosp12/art/test/common/
H A Druntime_state.cc153 bool success = CompilerFilter::ParseCompilerFilter(string_filter.c_str(), &compiler_filter); in Java_Main_compiledWithOptimizing()