Searched refs:ParseCompilerFilter (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
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 54 EXPECT_FALSE(CompilerFilter::ParseCompilerFilter("super-awesome-filter", &filter)); in TEST()
|
D | compiler_filter.h | 102 static bool ParseCompilerFilter(const char* name, /*out*/Filter* filter);
|
D | compiler_filter.cc | 190 bool CompilerFilter::ParseCompilerFilter(const char* option, Filter* filter) { in ParseCompilerFilter() function in art::CompilerFilter
|
D | oat.cc | 403 CHECK(CompilerFilter::ParseCompilerFilter(key_value, &filter)) in GetCompilerFilter()
|
/art/runtime/native/ |
D | dalvik_system_DexFile.cc | 549 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) { in GetDexOptNeeded() 730 return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter) in DexFile_isValidCompilerFilter() 743 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_isProfileGuidedCompilerFilter() 758 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getNonProfileGuidedCompilerFilter() 783 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { in DexFile_getSafeModeCompilerFilter()
|
/art/compiler/driver/ |
D | compiler_options_map-inl.h | 38 if (!CompilerFilter::ParseCompilerFilter(map.Get(Base::CompilerFilter)->c_str(), in ReadCompilerOptions()
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 186 if (!CompilerFilter::ParseCompilerFilter(filter_str, &compiler_filter_)) { in ParseArgs()
|