Lines Matching refs:compLen
47 int compLen = 0; in getFirstComponentLength() local
48 while (path[compLen] != 0 && path[compLen] != '.') in getFirstComponentLength()
49 compLen++; in getFirstComponentLength()
50 return compLen; in getFirstComponentLength()
53 static bool compareNameToPathComponent (const char* name, const char* path, int compLen) in compareNameToPathComponent() argument
55 for (int pos = 0; pos < compLen; pos++) in compareNameToPathComponent()
61 if (name[compLen] != 0) in compareNameToPathComponent()
156 int compLen = getFirstComponentLength(path); in find() local
157 XE_CHECK(compLen > 0); in find()
159 if (compareNameToPathComponent(getName(), path, compLen)) in find()
161 if (path[compLen] == 0) in find()
164 return static_cast<const TestGroup*>(this)->findChildNode(path + compLen + 1); in find()
205 int compLen = getFirstComponentLength(path); in findChildNode() local
206 XE_CHECK(compLen > 0); in findChildNode()
212 if (compareNameToPathComponent((*iter)->getName(), path, compLen)) in findChildNode()
221 if (path[compLen] == 0) in findChildNode()
224 return static_cast<const TestGroup*>(matchingNode)->findChildNode(path + compLen + 1); in findChildNode()