Lines Matching refs:funcs
268 FunctionContainer funcs[] =
275 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs));
2921 tcu::TestCaseGroup* createChildCases (CaseType type, Context& ctx, const char* name, const char* desc, const vector<FunctionContainer>& funcs)
2925 for (size_t ndx = 0; ndx < funcs.size(); ndx++)
2926 host->addChild(createCase(type, ctx, funcs[ndx].name, funcs[ndx].desc, funcs[ndx].function));
3175 vector<TestFunctionWrapper> funcs (allFuncs.begin()+start, allFuncs.begin()+end);
3178 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3180 filtering->addChild(new FilterCase(m_context, name.c_str(), "DebugMessageControl usage", funcs));
3197 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3200 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3202 groups->addChild(new GroupFilterCase(m_context, name.c_str(), "Debug Group usage", funcs));
3219 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3222 async->addChild(new AsyncCase(m_context, (name+"_callback").c_str(), "Async message generation", funcs, true));
3224 async->addChild(new AsyncCase(m_context, (name+"_log").c_str(), "Async message generation", funcs, false));