Lines Matching refs:CommandLine
657 CommandLine::CommandLine (void) in CommandLine() function in tcu::CommandLine
670 CommandLine::CommandLine (int argc, const char* const* argv) in CommandLine() function in tcu::CommandLine
684 CommandLine::CommandLine (const std::string& cmdLine) in CommandLine() function in tcu::CommandLine
690 CommandLine::~CommandLine (void) in ~CommandLine()
694 void CommandLine::clear (void) in clear()
700 const de::cmdline::CommandLine& CommandLine::getCommandLine (void) const in getCommandLine()
705 void CommandLine::registerExtendedOptions (de::cmdline::Parser& parser) in registerExtendedOptions()
716 bool CommandLine::parse (int argc, const char* const* argv) in parse()
765 bool CommandLine::parse (const std::string& cmdLine) in parse()
786 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFi… in getLogFileName()
787 deUint32 CommandLine::getLogFlags (void) const { return m_logFlags; } in getLogFlags()
788 RunMode CommandLine::getRunMode (void) const { return m_cmdLine.getOption<opt::RunMode>();… in getRunMode()
789 const char* CommandLine::getCaseListExportFile (void) const { return m_cmdLine.getOption<opt::… in getCaseListExportFile()
790 WindowVisibility CommandLine::getVisibility (void) const { return m_cmdLine.getOption<opt::Vis… in getVisibility()
791 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>… in isWatchDogEnabled()
792 bool CommandLine::isCrashHandlingEnabled (void) const { return m_cmdLine.getOption<opt::Crash… in isCrashHandlingEnabled()
793 int CommandLine::getBaseSeed (void) const { return m_cmdLine.getOption<opt::BaseSeed>(); … in getBaseSeed()
794 int CommandLine::getTestIterationCount (void) const { return m_cmdLine.getOption<opt::TestIt… in getTestIterationCount()
795 int CommandLine::getSurfaceWidth (void) const { return m_cmdLine.getOption<opt::SurfaceWidt… in getSurfaceWidth()
796 int CommandLine::getSurfaceHeight (void) const { return m_cmdLine.getOption<opt::SurfaceHei… in getSurfaceHeight()
797 SurfaceType CommandLine::getSurfaceType (void) const { return m_cmdLine.getOption<opt::Surfa… in getSurfaceType()
798 ScreenRotation CommandLine::getScreenRotation (void) const { return m_cmdLine.getOption<opt::S… in getScreenRotation()
799 int CommandLine::getGLConfigId (void) const { return m_cmdLine.getOption<opt::GLConfigID>(… in getGLConfigId()
800 int CommandLine::getCLPlatformId (void) const { return m_cmdLine.getOption<opt::CLPlatformI… in getCLPlatformId()
801 const std::vector<int>& CommandLine::getCLDeviceIds (void) const { return m_cmdLine.getOption<o… in getCLDeviceIds()
802 int CommandLine::getVKDeviceId (void) const { return m_cmdLine.getOption<opt::VKDeviceID>(… in getVKDeviceId()
803 int CommandLine::getVKDeviceGroupId (void) const { return m_cmdLine.getOption<opt::VKDevice… in getVKDeviceGroupId()
804 bool CommandLine::isValidationEnabled (void) const { return m_cmdLine.getOption<opt::Validati… in isValidationEnabled()
805 bool CommandLine::isOutOfMemoryTestEnabled (void) const { return m_cmdLine.getOption<opt::Test… in isOutOfMemoryTestEnabled()
806 bool CommandLine::isShadercacheEnabled (void) const { return m_cmdLine.getOption<opt::ShaderC… in isShadercacheEnabled()
807 const char* CommandLine::getShaderCacheFilename (void) const { return m_cmdLine.getOption<opt:… in getShaderCacheFilename()
808 bool CommandLine::isShaderCacheTruncateEnabled (void) const { return m_cmdLine.getOption<opt::S… in isShaderCacheTruncateEnabled()
809 int CommandLine::getOptimizationRecipe (void) const { return m_cmdLine.getOption<opt::Optimi… in getOptimizationRecipe()
810 bool CommandLine::isSpirvOptimizationEnabled (void) const { return m_cmdLine.getOption<opt::Op… in isSpirvOptimizationEnabled()
811 bool CommandLine::isRenderDocEnabled (void) const { return m_cmdLine.getOption<opt::RenderDo… in isRenderDocEnabled()
813 const char* CommandLine::getGLContextType (void) const in getGLContextType()
820 const char* CommandLine::getGLConfigName (void) const in getGLConfigName()
828 const char* CommandLine::getGLContextFlags (void) const in getGLContextFlags()
836 const char* CommandLine::getCLBuildOptions (void) const in getCLBuildOptions()
844 const char* CommandLine::getEGLDisplayType (void) const in getEGLDisplayType()
852 const char* CommandLine::getEGLWindowType (void) const in getEGLWindowType()
860 const char* CommandLine::getEGLPixmapType (void) const in getEGLPixmapType()
880 de::MovePtr<CaseListFilter> CommandLine::createCaseListFilter (const tcu::Archive& archive) const in createCaseListFilter()
910 CaseListFilter::CaseListFilter (const de::cmdline::CommandLine& cmdLine, const tcu::Archive& archiv… in CaseListFilter()