Lines Matching defs:components
67 static void splitPath (const char* path, std::vector<std::string>& components)
76 components.push_back(pathStr.substr(compStart, pos-compStart));
82 components.push_back(pathStr.substr(compStart));
289 std::vector<std::string> components;
290 splitPath(path, components);
291 DE_ASSERT(!components.empty());
296 for (int ndx = 0; ndx < (int)components.size()-1; ndx++)
300 curGroupPath += components[ndx];
305 TestGroup* newGroup = curGroup->createGroup(components[ndx].c_str());
313 return curGroup->createCase(caseType, components.back().c_str());