Home | History | Annotate | Download | only in tools

Lines Matching refs:cmdLine

221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst)
223 BatchResultValues values(cmdLine.tagNames);
225 readLogFile(values, cmdLine.filename.c_str());
230 if (cmdLine.statusCode)
244 if (cmdLine.statusCode)
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
267 cmdLine.statusCode = true;
270 if (cmdLine.filename.empty())
271 cmdLine.filename = arg;
273 cmdLine.tagNames.push_back(arg);
279 if (cmdLine.filename.empty())
289 CommandLine cmdLine;
291 if (!parseCommandLine(cmdLine, argc, argv))
297 printTaggedValues(cmdLine, std::cout);