Lines Matching refs:IsPathSeparator
92 static bool IsPathSeparator(char c) {
160 if (end - s >= 2 && s[1] == ':' && (end - s == 2 || IsPathSeparator(s[2])) &&
167 } else if (end - s >= 3 && IsPathSeparator(*s) && IsPathSeparator(*(s + 1)) &&
168 !IsPathSeparator(*(s + 2))) {
174 bool stop = IsPathSeparator(*s);
181 } else if (s != end && IsPathSeparator(*s)) {
186 if (s != end && IsPathSeparator(*s)) {
298 IsPathSeparator(pathname_[root_length - 1]);
328 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
392 if (pathname_.end() - i >= 3 && IsPathSeparator(*i) &&
393 IsPathSeparator(*(i + 1)) && !IsPathSeparator(*(i + 2))) {
400 if (!IsPathSeparator(character)) {