Home
last modified time | relevance | path

Searched refs:checkTestGroupName (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/common/
DtcuCommandLine.hpp178 bool checkTestGroupName (const char* groupName) const;
DtcuCommandLine.cpp630 static bool checkTestGroupName (const CaseTreeNode* node, const char* groupName) in checkTestGroupName() function
643 return checkTestGroupName(child, groupName + prefixLen + 1); in checkTestGroupName()
670 bool CommandLine::checkTestGroupName (const char* groupName) const in checkTestGroupName() function in tcu::CommandLine
675 return groupName[0] == 0 || tcu::checkTestGroupName(m_caseTree, groupName); in checkTestGroupName()
DtcuTestExecutor.cpp257 …if (!(isLeaf ? m_cmdLine.checkTestCaseName(nodePath.c_str()) : m_cmdLine.checkTestGroupName(nodePa… in iterate()