HomeSort by relevance Sort by last modified time
    Searched refs:getCommandLine (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/deqp/modules/gles31/
tes31Context.cpp 43 if (m_testCtx.getCommandLine().getRunMode() == tcu::RUNMODE_EXECUTE)
60 m_renderCtx = glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(3,1));
  /external/deqp/modules/gles2/
tes2Context.cpp 47 m_renderCtx = glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(2,0));
  /external/deqp/modules/gles3/
tes3Context.cpp 44 m_renderCtx = glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(3,0));
  /external/deqp/framework/common/
tcuApp.cpp 83 writeXmlCaselists(*m_testRoot, *m_testCtx, m_testCtx->getCommandLine());
85 writeTxtCaselists(*m_testRoot, *m_testCtx, m_testCtx->getCommandLine());
123 DE_ASSERT(m_testCtx->getCommandLine().getRunMode() != RUNMODE_EXECUTE);
151 const RunMode runMode = m_testCtx->getCommandLine().getRunMode();
tcuCommandLine.hpp 185 const de::cmdline::CommandLine& getCommandLine (void) const;
tcuTestContext.hpp 60 const CommandLine& getCommandLine (void) const { return m_cmdLine; }
tcuTestSessionExecutor.cpp 51 , m_iterator (root, m_inflater, testCtx.getCommandLine())
  /external/deqp/framework/platform/android/
tcuAndroidPlatformCapabilityQueryJNI.cpp 73 return getCommandLine().hasOption<opt::GLMajorVersion>();
78 return getCommandLine().hasOption<opt::GLMinorVersion>();
84 return getCommandLine().getOption<opt::GLMajorVersion>();
90 return getCommandLine().getOption<opt::GLMinorVersion>();
  /external/deqp/modules/egl/
teglTestCase.cpp 49 , m_glLibraryCache (testCtx.getPlatform().getEGLPlatform(), testCtx.getCommandLine())
teglTestPackage.cpp 159 const eglu::NativeDisplayFactory& factory = eglu::selectNativeDisplayFactory(testCtx.getPlatform().getEGLPlatform().getNativeDisplayFactoryRegistry(), testCtx.getCommandLine());
teglCreateSurfaceTests.cpp 121 const eglu::NativeWindowFactory& windowFactory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
142 de::UniquePtr<eglu::NativeWindow> window (windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), display, config, DE_NULL, eglu::WindowParams(width, height, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))));
179 const eglu::NativePixmapFactory& pixmapFactory = eglu::selectNativePixmapFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
teglRenderCase.cpp 132 const eglu::NativeWindowFactory& windowFactory = eglu::selectNativeWindowFactory(displayFactory, m_testCtx.getCommandLine());
136 const eglu::WindowParams params (width, height, eglu::parseWindowVisibility(m_testCtx.getCommandLine()));
157 const eglu::NativePixmapFactory& pixmapFactory = eglu::selectNativePixmapFactory(displayFactory, m_testCtx.getCommandLine());
teglQuerySurfaceTests.cpp 309 const eglu::NativeWindowFactory& windowFactory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
317 de::UniquePtr<eglu::NativeWindow> window (windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), display, config, DE_NULL, eglu::WindowParams(width, height, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))));
340 const eglu::NativePixmapFactory& pixmapFactory = eglu::selectNativePixmapFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
582 const eglu::NativeWindowFactory& windowFactory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
590 de::UniquePtr<eglu::NativeWindow> window (windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), display, config, DE_NULL, eglu::WindowParams(width, height, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))));
611 const eglu::NativePixmapFactory& pixmapFactory = eglu::selectNativePixmapFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
teglMakeCurrentPerfTests.cpp 278 const eglu::NativeWindowFactory& windowFactory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
285 window = windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_display, m_config, DE_NULL, eglu::WindowParams(width, height, eglu::parseWindowVisibility(m_eglTestCtx.getTestContext().getCommandLine())));
307 const eglu::NativePixmapFactory& pixmapFactory = eglu::selectNativePixmapFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
teglImageUtil.cpp 115 const NativeWindowFactory& windowFactory = selectNativeWindowFactory(displayFactory, eglTestCtx.getTestContext().getCommandLine());
124 const NativePixmapFactory& pixmapFactory = selectNativePixmapFactory(displayFactory, eglTestCtx.getTestContext().getCommandLine());
teglPreservingSwapTests.cpp 331 const eglu::NativeWindowFactory& factory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
333 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL, eglu::WindowParams(480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine())));
teglCreateContextExtTests.cpp 923 const eglu::NativeWindowFactory& factory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
925 de::UniquePtr<eglu::NativeWindow> window (factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_display, config, DE_NULL, eglu::WindowParams(256, 256, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))));
932 const eglu::NativePixmapFactory& factory = eglu::selectNativePixmapFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine());
    [all...]
teglMemoryStressTests.cpp 367 if (!m_testCtx.getCommandLine().isOutOfMemoryTestEnabled())
  /external/deqp/framework/platform/ios/
tcuIOSApp.mm 73 const char* getCommandLine (void) const { return m_cmdLine.c_str(); }
335 m_cmdLine = new tcu::CommandLine(m_state.getCommandLine());
  /external/deqp/modules/gles2/functional/
es2fDitheringTests.cpp 469 const int numQuads = m_testCtx.getCommandLine().getTestIterationCount() > 0 ? m_testCtx.getCommandLine().getTestIterationCount() : 30;
  /external/deqp/modules/gles3/functional/
es3fDitheringTests.cpp 469 const int numQuads = m_testCtx.getCommandLine().getTestIterationCount() > 0 ? m_testCtx.getCommandLine().getTestIterationCount() : 30;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-weblogic.jar 
  /external/deqp/scripts/
build_android_mustpass.py 111 def getCommandLine (config):
318 commandLine = getCommandLine(config))
  /external/deqp/modules/gles31/functional/
es31fFboColorbufferTests.cpp 136 de::Random rnd (deStringHash(getName()) ^ 0xed607a89 ^ m_testCtx.getCommandLine().getBaseSeed());
es31fUniformBlockTests.cpp 52 baseSeed += (deUint32)context.getTestContext().getCommandLine().getBaseSeed();

Completed in 865 milliseconds

1 2 3 4 5 6 7