Home | History | Annotate | Download | only in Support

Lines Matching refs:opt

46 cl::opt<int> TestOption("test-option", cl::desc("old description"));
88 cl::opt<std::string> EnvironmentTestOption("env-test-opt");
90 TempEnvVar TEV(test_env_var, "-env-test-opt=hello");
101 // SEGFAULT. This can occur because the cl::opt in the test below is declared
105 // Put cl::opt on stack to check for proper initialization of fields.
106 cl::opt<std::string> EnvironmentTestOptionLocal("env-test-opt-local");
107 TempEnvVar TEV(test_env_var, "-env-test-opt-local=hello-local");
116 cl::opt<int> TestOption2("test-option", cl::cat(TestCategory));