Lines Matching defs:name
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)
237 const std::string& name,
240 return new InstanceFactory1<FunctionInstance0, FunctionInstance0::Function>(testCtx, type, name, testFunction);
245 const std::string& name,
249 return new InstanceFactory1WithSupport<FunctionInstance0, FunctionInstance0::Function, FunctionSupport0>(testCtx, type, name, testFunction, checkSupport);
254 const std::string& name,
259 testCtx, type, name, FunctionPrograms0(initPrograms), testFunction);
264 const std::string& name,
270 testCtx, type, name, FunctionPrograms0(initPrograms), testFunction, checkSupport);
276 const std::string& name,
281 testCtx, type, name, typename FunctionInstance1<Arg0>::Args(testFunction, arg0));
287 const std::string& name,
293 testCtx, type, name, typename FunctionInstance1<Arg0>::Args(testFunction, arg0), typename FunctionSupport1<Arg0>::Args(checkSupport, arg0));
299 const std::string& name,
305 testCtx, type, name, FunctionPrograms1<Arg0>(initPrograms), typename FunctionInstance1<Arg0>::Args(testFunction, arg0));
311 const std::string& name,
318 testCtx, type, name, FunctionPrograms1<Arg0>(initPrograms), typename FunctionInstance1<Arg0>::Args(testFunction, arg0), typename FunctionSupport1<Arg0>::Args(checkSupport, arg0));
324 const std::string& name,
327 group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, testFunc));
331 const std::string& name,
335 group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, testFunc));
339 const std::string& name,
343 group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, initPrograms, testFunc));
347 const std::string& name,
352 group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, initPrograms, testFunc));
357 const std::string& name,
361 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, testFunc, arg0));
366 const std::string& name,
371 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, testFunc, arg0));
377 const std::string& name,
381 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), type, name, testFunc, arg0));
386 const std::string& name,
391 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, initPrograms, testFunc, arg0));
396 const std::string& name,
402 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, initPrograms, testFunc, arg0));
408 const std::string& name,
413 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), type, name, initPrograms, testFunc, arg0));