Lines Matching defs:group

5247 		TestCaseGroup*	group = new TestCaseGroup(ctx.testContext,
5250 group->addChild(createFuncCase(ctx, "scalar", m_funcs.func));
5251 group->addChild(createFuncCase(ctx, "vec2", m_funcs.func2));
5252 group->addChild(createFuncCase(ctx, "vec3", m_funcs.func3));
5253 group->addChild(createFuncCase(ctx, "vec4", m_funcs.func4));
5255 return MovePtr<TestNode>(group);
5279 TestCaseGroup* group = new TestCaseGroup(ctx.testContext,
5281 group->addChild(createFuncCase(ctx, "scalar", instance<GenF<1> >()));
5282 group->addChild(createFuncCase(ctx, "vec2", instance<GenF<2> >()));
5283 group->addChild(createFuncCase(ctx, "vec3", instance<GenF<3> >()));
5284 group->addChild(createFuncCase(ctx, "vec4", instance<GenF<4> >()));
5286 return MovePtr<TestNode>(group);
5298 TestCaseGroup* group = new TestCaseGroup(ctx.testContext,
5300 group->addChild(createFuncCase(ctx, "mat2", instance<GenF<2> >()));
5303 group->addChild(createFuncCase(ctx, "mat3", instance<GenF<3> >()));
5304 group->addChild(createFuncCase(ctx, "mat4", instance<GenF<4> >()));
5307 return MovePtr<TestNode>(group);
5319 TestCaseGroup* const group = new TestCaseGroup(ctx.testContext,
5322 this->addCase<2, 2>(ctx, group);
5323 this->addCase<3, 2>(ctx, group);
5324 this->addCase<4, 2>(ctx, group);
5325 this->addCase<2, 3>(ctx, group);
5326 this->addCase<3, 3>(ctx, group);
5327 this->addCase<4, 3>(ctx, group);
5328 this->addCase<2, 4>(ctx, group);
5329 this->addCase<3, 4>(ctx, group);
5330 this->addCase<4, 4>(ctx, group);
5332 return MovePtr<TestNode>(group);
5339 void addCase (const Context& ctx, TestCaseGroup* group) const
5343 group->addChild(createFuncCase(ctx, name, instance<GenF<Rows, Cols> >()));
5520 TestCaseGroup* const group = new TestCaseGroup(ctx.testCtx,
5540 group->addChild(factory.createCase(caseCtx).release());
5544 return group;