Lines Matching refs:Options
43 const std::unordered_map<std::string, Options::ArgInfo> Options::kArgs = {
44 {"deadline_threshold_ms", {FLAG_REQUIRES_VALUE, &Options::SetNumeric}},
45 {"slow_threshold_ms", {FLAG_REQUIRES_VALUE, &Options::SetNumeric}},
46 {"gtest_format", {FLAG_NONE, &Options::SetBool}},
47 {"no_gtest_format", {FLAG_NONE, &Options::SetBool}},
48 {"gtest_list_tests", {FLAG_NONE, &Options::SetBool}},
49 {"gtest_filter", {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE, &Options::SetString}},
52 {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE, &Options::SetIterations},
54 {"gtest_output", {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE, &Options::SetXmlFile}},
55 {"gtest_print_time", {FLAG_ENVIRONMENT_VARIABLE | FLAG_OPTIONAL_VALUE, &Options::SetPrintTime}},
58 {FLAG_ENVIRONMENT_VARIABLE | FLAG_CHILD, &Options::SetBool},
61 {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE | FLAG_CHILD, &Options::SetString}},
71 {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE, &Options::SetNumericEnvOnly}},
73 {FLAG_ENVIRONMENT_VARIABLE | FLAG_REQUIRES_VALUE, &Options::SetNumericEnvOnly}},
109 bool Options::SetPrintTime(const std::string&, const std::string& value, bool) { in SetPrintTime()
116 bool Options::SetNumeric(const std::string& arg, const std::string& value, bool from_env) { in SetNumeric()
128 bool Options::SetNumericEnvOnly(const std::string& arg, const std::string& value, bool from_env) { in SetNumericEnvOnly()
140 bool Options::SetBool(const std::string& arg, const std::string&, bool) { in SetBool()
145 bool Options::SetIterations(const std::string& arg, const std::string& value, bool from_env) { in SetIterations()
152 bool Options::SetString(const std::string& arg, const std::string& value, bool) { in SetString()
157 bool Options::SetXmlFile(const std::string& arg, const std::string& value, bool from_env) { in SetXmlFile()
189 bool Options::HandleArg(const std::string& arg, const std::string& value, const ArgInfo& info, in HandleArg()
214 bool Options::Process(const std::vector<const char*>& args, std::vector<const char*>* child_args) { in Process()