Home | History | Annotate | Download | only in common

Lines Matching refs:parse

638  * \note CommandLine is not fully initialized until parse() has been called.
649 * Calls parse() with given arguments
657 if (!parse(argc, argv))
658 throw Exception("Failed to parse command line");
664 * Calls parse() with given argument.
671 if (!parse(cmdLine))
672 throw Exception("Failed to parse command line");
700 * \brief Parse command line from standard argc, argv pair.
701 * \note parse() must be called exactly once.
705 bool CommandLine::parse (int argc, const char* const* argv)
717 if (!parser.parse(argc-1, argv+1, &m_cmdLine, std::cerr))
771 debugOut << "ERROR: Failed to parse test case list: " << e.what() << "\n";
780 * \brief Parse command line from string.
781 * \note parse() must be called exactly once.
784 bool CommandLine::parse (const std::string& cmdLine)
793 isOk = parse(parsedCmdLine->numArgs, parsedCmdLine->args);