Lines Matching full:funcs
262 FunctionContainer funcs[] =
269 return std::vector<FunctionContainer>(DE_ARRAY_BEGIN(funcs), DE_ARRAY_END(funcs));
2915 tcu::TestCaseGroup* createChildCases (CaseType type, Context& ctx, const char* name, const char* desc, const vector<FunctionContainer>& funcs)
2919 for (size_t ndx = 0; ndx < funcs.size(); ndx++)
2920 host->addChild(createCase(type, ctx, funcs[ndx].name, funcs[ndx].desc, funcs[ndx].function));
3134 vector<TestFunctionWrapper> funcs (allFuncs.begin()+start, allFuncs.begin()+end);
3137 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3139 filtering->addChild(new FilterCase(m_context, name.c_str(), "DebugMessageControl usage", funcs));
3156 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3159 funcs.insert(funcs.end(), externalFuncs[caseNdx%externalFuncs.size()].function);
3161 groups->addChild(new GroupFilterCase(m_context, name.c_str(), "Debug Group usage", funcs));
3178 vector<TestFunctionWrapper> funcs (&allFuncs[0]+start, &allFuncs[0]+end);
3181 async->addChild(new AsyncCase(m_context, (name+"_callback").c_str(), "Async message generation", funcs, true));
3183 async->addChild(new AsyncCase(m_context, (name+"_log").c_str(), "Async message generation", funcs, false));