Lines Matching defs:argv
879 * \brief Construct command line from standard argc, argv pair.
884 * \param argv Command line arguments
886 CommandLine::CommandLine (int argc, const char* const* argv)
887 : m_appName(argv[0]), m_logFlags (0), m_hadHelpSpecified(false)
894 m_initialCmdLine += std::string(argv[loop++]);
901 if (!parse(argc, argv))
955 * \brief Parse command line from standard argc, argv pair.
958 * \param argv Command line arguments
960 bool CommandLine::parse (int argc, const char* const* argv)
972 if (!parser.parse(argc-1, argv+1, &m_cmdLine, std::cerr))
974 debugOut << "\n" << de::FilePath(argv[0]).getBaseName() << " [options]\n\n";
1017 debugOut << "\n" << de::FilePath(argv[0]).getBaseName() << " [options]\n\n";