Home
last modified time | relevance | path

Searched refs:FlagType (Results 1 – 3 of 3) sorted by relevance

/art/libartbase/base/
Dflags.h47 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};
266 Flag<std::string> MetricsReportingSpec{"metrics.reporting-spec", "", FlagType::kDeviceConfig};
270 FlagType::kDeviceConfig};
279 FlagType::kDeviceConfig};
281 FlagType::kDeviceConfig};
289 FlagType::kDeviceConfig};
[all …]
Dflags_test.cc33 TestFlag(ScratchFile* tmp_file, FlagType flag_type) { in TestFlag()
107 test_flag_.reset(new TestFlag(new ScratchFile(), FlagType::kDeviceConfig)); in SetUpRuntimeOptions()
121 explicit FlagsTestsWithCmdLineBase(FlagType type) : flag_type_(type) { in FlagsTestsWithCmdLineBase()
137 FlagType flag_type_;
142 FlagsTestsWithCmdLine() : FlagsTestsWithCmdLineBase(FlagType::kDeviceConfig) { in FlagsTestsWithCmdLine()
148 FlagsTestsCmdLineOnly() : FlagsTestsWithCmdLineBase(FlagType::kCmdlineOnly) { in FlagsTestsCmdLineOnly()
Dflags.cc100 Flag<Value>::Flag(const std::string& name, Value default_value, FlagType type) : in Flag()
120 if (type_ == FlagType::kCmdlineOnly) { in Reload()