Lines Matching refs:Arg1
81 template<typename Arg0, typename Arg1>
85 typedef void(*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0, Arg1 arg1);
86 typedef void(*CleanupGroupFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0, Arg1 arg1);
93 const Arg1& arg1, in TestGroupHelper2()
109 const Arg1 m_arg1;
131 template<typename Arg0, typename Arg1>
135 typename TestGroupHelper2<Arg0, Arg1>::CreateChildrenFunc createChildren, in createTestGroup()
137 Arg1 arg1, in createTestGroup()
138 typename TestGroupHelper2<Arg0, Arg1>::CleanupGroupFunc cleanupGroup = DE_NULL) in createTestGroup()
140 …return new TestGroupHelper2<Arg0, Arg1>(testCtx, name, description, createChildren, arg0, arg1, cl… in createTestGroup()
162 template<typename Arg0, typename Arg1>
166 typename TestGroupHelper2<Arg0,Arg1>::CreateChildrenFunc createChildren, in addTestGroup()
168 Arg1 arg1, in addTestGroup()
169 typename TestGroupHelper2<Arg0,Arg1>::CleanupGroupFunc cleanupGroup = DE_NULL) in addTestGroup()
171 …parent->addChild(createTestGroup<Arg0,Arg1>(parent->getTestContext(), name, description, createChi… in addTestGroup()