Searched refs:FlagType (Results 1 – 3 of 3) sorted by relevance
/art/libartbase/base/ |
D | flags.h | 47 enum class FlagType { enum 64 FlagType type) : in FlagMetaBase() 138 FlagType type_; 162 Flag(const std::string& name, Value default_value, FlagType type); 259 Flag<int32_t> MyFeatureTestFlag{"my-feature-test.flag", 42, FlagType::kDeviceConfig}; 267 "metrics.reporting-spec", "1,5,30,60,600", FlagType::kDeviceConfig}; 271 "metrics.reporting-spec-server", "1,10,60,3600,*", FlagType::kDeviceConfig}; 280 Flag<uint32_t> MetricsReportingMods{"metrics.reporting-mods", 2, FlagType::kDeviceConfig}; 282 "metrics.reporting-mods-server", 2, FlagType::kDeviceConfig}; 290 FlagType::kDeviceConfig}; [all …]
|
D | flags_test.cc | 33 TestFlag(ScratchFile* tmp_file, FlagType flag_type) { in TestFlag() 111 test_flag_.reset(new TestFlag(new ScratchFile(), FlagType::kDeviceConfig)); in SetUpRuntimeOptions() 125 explicit FlagsTestsWithCmdLineBase(FlagType type) : flag_type_(type) { in FlagsTestsWithCmdLineBase() 141 FlagType flag_type_; 146 FlagsTestsWithCmdLine() : FlagsTestsWithCmdLineBase(FlagType::kDeviceConfig) { in FlagsTestsWithCmdLine() 152 FlagsTestsCmdLineOnly() : FlagsTestsWithCmdLineBase(FlagType::kCmdlineOnly) { in FlagsTestsCmdLineOnly()
|
D | flags.cc | 100 Flag<Value>::Flag(const std::string& name, Value default_value, FlagType type) : in Flag() 120 if (type_ == FlagType::kCmdlineOnly) { in Reload()
|