Lines Matching defs:parse
724 // move to the beginning of the file to parse first line too
871 * \note CommandLine is not fully initialized until parse() has been called.
881 * Calls parse() with given arguments
901 if (!parse(argc, argv))
906 throw Exception("Failed to parse command line");
913 * Calls parse() with given argument.
920 if (!parse(cmdLine))
921 throw Exception("Failed to parse command line");
956 * \note parse() must be called exactly once.
960 bool CommandLine::parse (int argc, const char* const* argv)
972 if (!parser.parse(argc-1, argv+1, &m_cmdLine, std::cerr))
1029 * \note parse() must be called exactly once.
1032 bool CommandLine::parse (const std::string& cmdLine)
1041 isOk = parse(parsedCmdLine->numArgs, parsedCmdLine->args);