Lines Matching defs:CommandLine

626  * \note CommandLine is not fully initialized until parse() has been called.
628 CommandLine::CommandLine (void)
641 CommandLine::CommandLine (int argc, const char* const* argv)
655 CommandLine::CommandLine (const std::string& cmdLine)
663 CommandLine::~CommandLine (void)
668 void CommandLine::clear (void)
683 bool CommandLine::parse (int argc, const char* const* argv)
755 bool CommandLine::parse (const std::string& cmdLine)
776 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFilename>().c_str(); }
777 deUint32 CommandLine::getLogFlags (void) const { return m_logFlags; }
778 RunMode CommandLine::getRunMode (void) const { return m_cmdLine.getOption<opt::RunMode>(); }
779 WindowVisibility CommandLine::getVisibility (void) const { return m_cmdLine.getOption<opt::Visibility>(); }
780 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>(); }
781 bool CommandLine::isCrashHandlingEnabled (void) const { return m_cmdLine.getOption<opt::CrashHandler>(); }
782 int CommandLine::getBaseSeed (void) const { return m_cmdLine.getOption<opt::BaseSeed>(); }
783 int CommandLine::getTestIterationCount (void) const { return m_cmdLine.getOption<opt::TestIterationCount>(); }
784 int CommandLine::getSurfaceWidth (void) const { return m_cmdLine.getOption<opt::SurfaceWidth>(); }
785 int CommandLine::getSurfaceHeight (void) const { return m_cmdLine.getOption<opt::SurfaceHeight>(); }
786 SurfaceType CommandLine::getSurfaceType (void) const { return m_cmdLine.getOption<opt::SurfaceType>(); }
787 ScreenRotation CommandLine::getScreenRotation (void) const { return m_cmdLine.getOption<opt::ScreenRotation>(); }
788 int CommandLine::getGLConfigId (void) const { return m_cmdLine.getOption<opt::GLConfigID>(); }
789 int CommandLine::getCLPlatformId (void) const { return m_cmdLine.getOption<opt::CLPlatformID>(); }
790 const std::vector<int>& CommandLine::getCLDeviceIds (void) const { return m_cmdLine.getOption<opt::CLDeviceIDs>(); }
791 bool CommandLine::isOutOfMemoryTestEnabled (void) const { return m_cmdLine.getOption<opt::TestOOM>(); }
793 const char* CommandLine::getGLContextType (void) const
800 const char* CommandLine::getGLConfigName (void) const
808 const char* CommandLine::getGLContextFlags (void) const
816 const char* CommandLine::getCLBuildOptions (void) const
824 const char* CommandLine::getEGLDisplayType (void) const
832 const char* CommandLine::getEGLWindowType (void) const
840 const char* CommandLine::getEGLPixmapType (void) const
860 bool CommandLine::checkTestGroupName (const char* groupName) const
870 bool CommandLine::checkTestCaseName (const char* caseName) const