Lines Matching defs:testCtx
58 InstanceFactory1 (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const Arg0& arg0)
59 : TestCase (testCtx, type, name)
64 InstanceFactory1 (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const Programs& progs, const Arg0& arg0)
65 : TestCase (testCtx, type, name)
84 InstanceFactory1WithSupport (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const Arg0& arg0, const Support& support)
85 : TestCase (testCtx, type, name)
91 InstanceFactory1WithSupport (tcu::TestContext& testCtx, tcu::TestNodeType type, const std::string& name, const Programs& progs, const Arg0& arg0, const Support& support)
92 : TestCase (testCtx, type, name)
235 inline TestCase* createFunctionCase (tcu::TestContext& testCtx,
240 return new InstanceFactory1<FunctionInstance0, FunctionInstance0::Function>(testCtx, type, name, testFunction);
243 inline TestCase* createFunctionCase (tcu::TestContext& testCtx,
249 return new InstanceFactory1WithSupport<FunctionInstance0, FunctionInstance0::Function, FunctionSupport0>(testCtx, type, name, testFunction, checkSupport);
252 inline TestCase* createFunctionCaseWithPrograms (tcu::TestContext& testCtx,
259 testCtx, type, name, FunctionPrograms0(initPrograms), testFunction);
262 inline TestCase* createFunctionCaseWithPrograms (tcu::TestContext& testCtx,
270 testCtx, type, name, FunctionPrograms0(initPrograms), testFunction, checkSupport);
274 TestCase* createFunctionCase (tcu::TestContext& testCtx,
281 testCtx, type, name, typename FunctionInstance1<Arg0>::Args(testFunction, arg0));
285 TestCase* createFunctionCase (tcu::TestContext& testCtx,
293 testCtx, type, name, typename FunctionInstance1<Arg0>::Args(testFunction, arg0), typename FunctionSupport1<Arg0>::Args(checkSupport, arg0));
297 TestCase* createFunctionCaseWithPrograms (tcu::TestContext& testCtx,
305 testCtx, type, name, FunctionPrograms1<Arg0>(initPrograms), typename FunctionInstance1<Arg0>::Args(testFunction, arg0));
309 TestCase* createFunctionCaseWithPrograms (tcu::TestContext& testCtx,
318 testCtx, type, name, FunctionPrograms1<Arg0>(initPrograms), typename FunctionInstance1<Arg0>::Args(testFunction, arg0), typename FunctionSupport1<Arg0>::Args(checkSupport, arg0));