Lines Matching defs:arg0
72 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
73 typedef void (*CleanupGroupFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
78 const Arg0& arg0,
83 , m_arg0 (arg0)
99 typedef void(*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0, Arg1 arg1);
100 typedef void(*CleanupGroupFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0, Arg1 arg1);
105 const Arg0& arg0,
111 , m_arg0 (arg0)
137 Arg0 arg0,
140 return new TestGroupHelper1<Arg0>(testCtx, name, createChildren, arg0, cleanupGroup);
146 Arg0 arg0,
150 return new TestGroupHelper2<Arg0, Arg1>(testCtx, name, createChildren, arg0, arg1, cleanupGroup);
164 Arg0 arg0,
167 parent->addChild(createTestGroup<Arg0>(parent->getTestContext(), name, createChildren, arg0, cleanupGroup));
174 Arg0 arg0,
178 parent->addChild(createTestGroup<Arg0,Arg1>(parent->getTestContext(), name, createChildren, arg0, arg1, cleanupGroup));