Lines Matching refs:IS_SEPAR
15 #define IS_SEPAR(c) IS_PATH_SEPAR(c) macro
24 if (IS_SEPAR(c)) in FindSepar()
37 if (IS_SEPAR(c)) in FindSepar()
63 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR… in IsDrivePath()
93 #define IS_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '.' && IS_SEP…
94 #define IS_SUPER_PREFIX(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '?' && IS_SEP…
95 …efine IS_SUPER_OR_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && ((s)[2] == '?' || (s)[2]…
101 && IS_SEPAR((s)[3]))
139 if (!IS_SEPAR(s[0]) || !IS_SEPAR(s[1])) in IsNetworkPath()
149 if (!IS_SEPAR(s[0]) || !IS_SEPAR(s[1])) in GetNetworkServerPrefixSize()
189 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath()
210 return IS_SEPAR(s[0]) || IsDrivePath2(s); in IsAbsolutePath()
230 if (IS_SEPAR(c)) in FindAltStreamColon()
253 if (!IS_SEPAR(s[0])) in GetRootPrefixSize_Of_SimplePath()
255 if (s[1] == 0 || !IS_SEPAR(s[1])) in GetRootPrefixSize_Of_SimplePath()
302 if (!IS_SEPAR(s[0])) in GetRootPrefixSize_Of_SimplePath()
304 if (s[1] == 0 || !IS_SEPAR(s[1])) in GetRootPrefixSize_Of_SimplePath()
335 bool IsAbsolutePath(const wchar_t *s) { return IS_SEPAR(s[0]); } in IsAbsolutePath()
338 unsigned GetRootPrefixSize(CFSTR s) { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
340 unsigned GetRootPrefixSize(const wchar_t *s) { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
381 if (c == '.' && (i == 0 || IS_SEPAR(s[i - 1]))) in ResolveDotsFolders()
387 if (IS_SEPAR(c2) || c2 == 0) in ResolveDotsFolders()
398 if (!IS_SEPAR(s[(unsigned)k])) in ResolveDotsFolders()
404 while (k >= 0 && !IS_SEPAR(s[(unsigned)k])); in ResolveDotsFolders()
423 else if (IS_SEPAR(c1) || c1 == 0) in ResolveDotsFolders()
459 if (c == '.' && (i == 0 || IS_SEPAR(s[i - 1]))) in AreThereDotsFolders()
462 if (c1 == 0 || IS_SEPAR(c1) || in AreThereDotsFolders()
463 (c1 == '.' && (s[i + 2] == 0 || IS_SEPAR(s[i + 2])))) in AreThereDotsFolders()
511 if (c2 == 0 || IS_SEPAR(c2)) in GetUseSuperPathType()
516 if (i == 0 || IS_SEPAR(s[i - 1])) in GetUseSuperPathType()
520 if (i - 1 == 0 || IS_SEPAR(s[i - 2])) in GetUseSuperPathType()
582 if (IS_SEPAR(c)) in GetSuperPathBase()
584 if (IS_SEPAR(s[1])) in GetSuperPathBase()
656 if (IS_SEPAR(c)) in GetSuperPathBase()
740 if (!IS_SEPAR(s[0])) in GetFullPath()
814 if (IS_SEPAR(s[0])) in GetFullPath()