Searched refs:ParseCompilerFilter (Results 1 – 10 of 10) sorted by relevance
/art/libartbase/base/ |
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 52 EXPECT_FALSE(CompilerFilter::ParseCompilerFilter("super-awesome-filter", &filter)); in TEST()
|
D | compiler_filter.h | 98 static bool ParseCompilerFilter(const char* name, /*out*/Filter* filter);
|
D | compiler_filter.cc | 150 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() function in art::CompilerFilter
|
/art/runtime/native/ |
D | dalvik_system_DexFile.cc | 589 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) { in GetDexOptNeeded() 769 return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter) in DexFile_isValidCompilerFilter() 782 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_isProfileGuidedCompilerFilter() 797 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_isVerifiedCompilerFilter() 812 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_isOptimizedCompilerFilter() 832 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getNonProfileGuidedCompilerFilter() 857 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getSafeModeCompilerFilter()
|
/art/runtime/ |
D | startup_completed_task.cc | 59 if (CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter) && in Run()
|
/art/compiler/driver/ |
D | compiler_options_map-inl.h | 38 if (!CompilerFilter::ParseCompilerFilter(option.c_str(), &compiler_filter)) {
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 179 if (!CompilerFilter::ParseCompilerFilter(filter_str, &compiler_filter_)) { in ParseArgs()
|
/art/runtime/oat/ |
D | oat.cc | 441 CHECK(CompilerFilter::ParseCompilerFilter(key_value, &filter)) in GetCompilerFilter()
|
/art/artd/ |
D | artd.cc | 187 Result<CompilerFilter::Filter> ParseCompilerFilter(const std::string& compiler_filter_str) { in ParseCompilerFilter() function 189 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_str.c_str(), &compiler_filter)) { in ParseCompilerFilter() 969 oat_file_assistant->GetDexOptNeeded(OR_RETURN_FATAL(ParseCompilerFilter(in_compilerFilter)), in getDexoptNeeded()
|
/art/test/common/ |
D | runtime_state.cc | 158 bool success = CompilerFilter::ParseCompilerFilter(string_filter.c_str(), &compiler_filter); in Java_Main_compiledWithOptimizing()
|