Lines Matching refs:compLen
47 int compLen = 0;
48 while (path[compLen] != 0 && path[compLen] != '.')
49 compLen++;
50 return compLen;
53 static bool compareNameToPathComponent (const char* name, const char* path, int compLen)
55 for (int pos = 0; pos < compLen; pos++)
61 if (name[compLen] != 0)
155 int compLen = getFirstComponentLength(path);
156 XE_CHECK(compLen > 0);
158 if (compareNameToPathComponent(getName(), path, compLen))
160 if (path[compLen] == 0)
163 return static_cast<const TestGroup*>(this)->findChildNode(path + compLen + 1);
204 int compLen = getFirstComponentLength(path);
205 XE_CHECK(compLen > 0);
211 if (compareNameToPathComponent((*iter)->getName(), path, compLen))
220 if (path[compLen] == 0)
223 return static_cast<const TestGroup*>(matchingNode)->findChildNode(path + compLen + 1);