Searched refs:IsPathSeparator (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc92 static bool IsPathSeparator(char c) { function in namespace:testing::internal
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
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.h83 bool IsPathSeparator(const char c);
H A Dsanitizer_posix.cpp274 bool IsPathSeparator(const char c) { function in namespace:__sanitizer
279 return path != nullptr && IsPathSeparator(path[0]);
H A Dsanitizer_file.cpp84 if (!IsPathSeparator(path[i]))
H A Dsanitizer_win.cpp564 bool IsPathSeparator(const char c) {
575 IsPathSeparator(path[2]);

Completed in 80 milliseconds