Lines Matching refs:group
323 inline void addFunctionCase (tcu::TestCaseGroup* group,
327 group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, testFunc));
330 inline void addFunctionCase (tcu::TestCaseGroup* group,
335 group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, testFunc));
338 inline void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group,
343 group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, initPrograms, testFunc));
346 inline void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group,
352 group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, initPrograms, testFunc));
356 void addFunctionCase (tcu::TestCaseGroup* group,
361 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, testFunc, arg0));
365 void addFunctionCase (tcu::TestCaseGroup* group,
371 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, testFunc, arg0));
375 void addFunctionCase (tcu::TestCaseGroup* group,
381 group->addChild(createFunctionCase<Arg0>(group->getTestContext(), type, name, testFunc, arg0));
385 void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group,
391 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, initPrograms, testFunc, arg0));
395 void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group,
402 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, checkSupport, initPrograms, testFunc, arg0));
406 void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group,
413 group->addChild(createFunctionCaseWithPrograms<Arg0>(group->getTestContext(), type, name, initPrograms, testFunc, arg0));