Home | History | Annotate | Download | only in functional

Lines Matching defs:funcs

268 	FunctionContainer funcs[] =
275 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs));
2922 tcu::TestCaseGroup* createChildCases (CaseType type, Context& ctx, const char* name, const char* desc, const vector<FunctionContainer>& funcs)
2926 for (size_t ndx = 0; ndx < funcs.size(); ndx++)
2927 host->addChild(createCase(type, ctx, funcs[ndx].name, funcs[ndx].desc, funcs[ndx].function));
3176 vector<TestFunctionWrapper> funcs (allFuncs.begin()+start, allFuncs.begin()+end);
3179 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3181 filtering->addChild(new FilterCase(m_context, name.c_str(), "DebugMessageControl usage", funcs));
3198 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3201 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3203 groups->addChild(new GroupFilterCase(m_context, name.c_str(), "Debug Group usage", funcs));
3220 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3223 async->addChild(new AsyncCase(m_context, (name+"_callback").c_str(), "Async message generation", funcs, true));
3225 async->addChild(new AsyncCase(m_context, (name+"_log").c_str(), "Async message generation", funcs, false));