Lines Matching refs:m_cmdLine

682 	m_cmdLine.clear();  in clear()
691 return m_cmdLine; in getCommandLine()
717 if (!parser.parse(argc-1, argv+1, &m_cmdLine, std::cerr)) in parse()
726 if (!m_cmdLine.getOption<opt::LogImages>()) in parse()
729 if (!m_cmdLine.getOption<opt::LogShaderSources>()) in parse()
732 if (!m_cmdLine.getOption<opt::LogFlush>()) in parse()
735 if ((m_cmdLine.hasOption<opt::CasePath>()?1:0) + in parse()
736 (m_cmdLine.hasOption<opt::CaseList>()?1:0) + in parse()
737 (m_cmdLine.hasOption<opt::CaseListFile>()?1:0) + in parse()
738 (m_cmdLine.getOption<opt::StdinCaseList>()?1:0) > 1) in parse()
747 if (m_cmdLine.hasOption<opt::CaseList>()) in parse()
749 std::istringstream str(m_cmdLine.getOption<opt::CaseList>()); in parse()
753 else if (m_cmdLine.hasOption<opt::CaseListFile>()) in parse()
755 std::ifstream in(m_cmdLine.getOption<opt::CaseListFile>().c_str(), std::ios_base::binary); in parse()
758 …throw Exception("Failed to open case list file '" + m_cmdLine.getOption<opt::CaseListFile>() + "'"… in parse()
762 else if (m_cmdLine.getOption<opt::StdinCaseList>()) in parse()
766 else if (m_cmdLine.hasOption<opt::CasePath>()) in parse()
767 m_casePaths = de::MovePtr<const CasePaths>(new CasePaths(m_cmdLine.getOption<opt::CasePath>())); in parse()
805 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFil… in getLogFileName()
807 RunMode CommandLine::getRunMode (void) const { return m_cmdLine.getOption<opt::RunMode>(); … in getRunMode()
808 const char* CommandLine::getCaseListExportFile (void) const { return m_cmdLine.getOption<opt::E… in getCaseListExportFile()
809 WindowVisibility CommandLine::getVisibility (void) const { return m_cmdLine.getOption<opt::Visi… in getVisibility()
810 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>(… in isWatchDogEnabled()
811 bool CommandLine::isCrashHandlingEnabled (void) const { return m_cmdLine.getOption<opt::CrashH… in isCrashHandlingEnabled()
812 int CommandLine::getBaseSeed (void) const { return m_cmdLine.getOption<opt::BaseSeed>(); … in getBaseSeed()
813 int CommandLine::getTestIterationCount (void) const { return m_cmdLine.getOption<opt::TestIte… in getTestIterationCount()
814 int CommandLine::getSurfaceWidth (void) const { return m_cmdLine.getOption<opt::SurfaceWidth… in getSurfaceWidth()
815 int CommandLine::getSurfaceHeight (void) const { return m_cmdLine.getOption<opt::SurfaceHeig… in getSurfaceHeight()
816 SurfaceType CommandLine::getSurfaceType (void) const { return m_cmdLine.getOption<opt::Surfac… in getSurfaceType()
817 ScreenRotation CommandLine::getScreenRotation (void) const { return m_cmdLine.getOption<opt::Sc… in getScreenRotation()
818 int CommandLine::getGLConfigId (void) const { return m_cmdLine.getOption<opt::GLConfigID>()… in getGLConfigId()
819 int CommandLine::getCLPlatformId (void) const { return m_cmdLine.getOption<opt::CLPlatformID… in getCLPlatformId()
820 const std::vector<int>& CommandLine::getCLDeviceIds (void) const { return m_cmdLine.getOption<op… in getCLDeviceIds()
821 int CommandLine::getVKDeviceId (void) const { return m_cmdLine.getOption<opt::VKDeviceID>()… in getVKDeviceId()
822 bool CommandLine::isValidationEnabled (void) const { return m_cmdLine.getOption<opt::Validatio… in isValidationEnabled()
823 bool CommandLine::isOutOfMemoryTestEnabled (void) const { return m_cmdLine.getOption<opt::TestO… in isOutOfMemoryTestEnabled()
827 if (m_cmdLine.hasOption<opt::GLContextType>()) in getGLContextType()
828 return m_cmdLine.getOption<opt::GLContextType>().c_str(); in getGLContextType()
834 if (m_cmdLine.hasOption<opt::GLConfigName>()) in getGLConfigName()
835 return m_cmdLine.getOption<opt::GLConfigName>().c_str(); in getGLConfigName()
842 if (m_cmdLine.hasOption<opt::GLContextFlags>()) in getGLContextFlags()
843 return m_cmdLine.getOption<opt::GLContextFlags>().c_str(); in getGLContextFlags()
850 if (m_cmdLine.hasOption<opt::CLBuildOptions>()) in getCLBuildOptions()
851 return m_cmdLine.getOption<opt::CLBuildOptions>().c_str(); in getCLBuildOptions()
858 if (m_cmdLine.hasOption<opt::EGLDisplayType>()) in getEGLDisplayType()
859 return m_cmdLine.getOption<opt::EGLDisplayType>().c_str(); in getEGLDisplayType()
866 if (m_cmdLine.hasOption<opt::EGLWindowType>()) in getEGLWindowType()
867 return m_cmdLine.getOption<opt::EGLWindowType>().c_str(); in getEGLWindowType()
874 if (m_cmdLine.hasOption<opt::EGLPixmapType>()) in getEGLPixmapType()
875 return m_cmdLine.getOption<opt::EGLPixmapType>().c_str(); in getEGLPixmapType()