Lines Matching refs:cmdLine
148 static void mergeTestLogs (const CommandLine& cmdLine) in mergeTestLogs() argument
152 …for (vector<string>::const_iterator filename = cmdLine.srcFilenames.begin(); filename != cmdLine.s… in mergeTestLogs()
153 readLogFile(&batchResult, filename->c_str(), cmdLine.flags); in mergeTestLogs()
155 if (!cmdLine.dstFilename.empty()) in mergeTestLogs()
156 xe::writeBatchResultToFile(batchResult, cmdLine.dstFilename.c_str()); in mergeTestLogs()
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
175 cmdLine.srcFilenames.push_back(arg); in parseCommandLine()
178 if (!cmdLine.dstFilename.empty()) in parseCommandLine()
180 cmdLine.dstFilename = arg+6; in parseCommandLine()
183 cmdLine.flags &= ~FLAG_USE_LAST_INFO; in parseCommandLine()
185 cmdLine.flags |= FLAG_USE_LAST_INFO; in parseCommandLine()
190 if (cmdLine.srcFilenames.empty()) in parseCommandLine()
200 CommandLine cmdLine; in main() local
202 if (!parseCommandLine(cmdLine, argc, argv)) in main()
208 mergeTestLogs(cmdLine); in main()