Home | History | Annotate | Download | only in executor

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)
156 int compLen = getFirstComponentLength(path);
157 XE_CHECK(compLen > 0);
159 if (compareNameToPathComponent(getName(), path, compLen))
161 if (path[compLen] == 0)
164 return static_cast<const TestGroup*>(this)->findChildNode(path + compLen + 1);
205 int compLen = getFirstComponentLength(path);
206 XE_CHECK(compLen > 0);
212 if (compareNameToPathComponent((*iter)->getName(), path, compLen))
221 if (path[compLen] == 0)
224 return static_cast<const TestGroup*>(matchingNode)->findChildNode(path + compLen + 1);