Home | History | Annotate | Download | only in mutate

Lines Matching refs:cmd

77   CommandLine* cmd = CommandLine::ForCurrentProcess();
78 CommandLine::StringVector args = cmd->GetArgs();
80 if (args.size() < 1 || args.size() > 2 || cmd->HasSwitch(kHelpSwitch)) {
86 if (cmd->HasSwitch(kStartSwitch)) {
87 int temp = atoi(cmd->GetSwitchValueASCII(kStartSwitch).c_str());
93 if (cmd->HasSwitch(kEndSwitch)) {
94 int temp = atoi(cmd->GetSwitchValueASCII(kEndSwitch).c_str());
99 bool has_regexp = cmd->HasSwitch(kRegexpSwitch);
100 RE2 filter_pattern(cmd->GetSwitchValueASCII(kRegexpSwitch));
102 bool invert = cmd->HasSwitch(kInvertSwitch);
103 bool perform_dump = cmd->HasSwitch(kDumpSwitch);