Lines Matching defs:funcs
269 FunctionContainer funcs[] =
276 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs));
2923 tcu::TestCaseGroup* createChildCases (CaseType type, Context& ctx, const char* name, const char* desc, const vector<FunctionContainer>& funcs)
2927 for (size_t ndx = 0; ndx < funcs.size(); ndx++)
2928 host->addChild(createCase(type, ctx, funcs[ndx].name, funcs[ndx].desc, funcs[ndx].function));
3177 vector<TestFunctionWrapper> funcs (allFuncs.begin()+start, allFuncs.begin()+end);
3180 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3182 filtering->addChild(new FilterCase(m_context, name.c_str(), "DebugMessageControl usage", funcs));
3199 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3202 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3204 groups->addChild(new GroupFilterCase(m_context, name.c_str(), "Debug Group usage", funcs));
3221 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3224 async->addChild(new AsyncCase(m_context, (name+"_callback").c_str(), "Async message generation", funcs, true));
3226 async->addChild(new AsyncCase(m_context, (name+"_log").c_str(), "Async message generation", funcs, false));