Searched refs:ParseCompilerFilter (Results 1 – 8 of 8) sorted by relevance
/aosp12/art/libartbase/base/ |
H A D | compiler_filter_test.cc | 25 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 D | compiler_filter.h | 97 static bool ParseCompilerFilter(const char* name, /*out*/Filter* filter);
|
H A D | compiler_filter.cc | 164 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() function in art::CompilerFilter
|
/aosp12/art/runtime/native/ |
H A D | dalvik_system_DexFile.cc | 527 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 D | compiler_options_map-inl.h | 38 if (!CompilerFilter::ParseCompilerFilter(option.c_str(), &compiler_filter)) {
|
/aosp12/art/runtime/ |
H A D | oat.cc | 427 CHECK(CompilerFilter::ParseCompilerFilter(key_value, &filter)) in GetCompilerFilter()
|
/aosp12/art/dexoptanalyzer/ |
H A D | dexoptanalyzer.cc | 186 if (!CompilerFilter::ParseCompilerFilter(filter_str, &compiler_filter_)) { in ParseArgs()
|
/aosp12/art/test/common/ |
H A D | runtime_state.cc | 153 bool success = CompilerFilter::ParseCompilerFilter(string_filter.c_str(), &compiler_filter); in Java_Main_compiledWithOptimizing()
|