• Home
  • Raw
  • Download

Lines Matching defs:s

24 int FindSepar(const wchar_t *s) throw()  in FindSepar()
37 int FindSepar(const FChar *s) throw() in FindSepar()
72 static void NormalizeDirSeparators(UString &s) in NormalizeDirSeparators()
82 void NormalizeDirSeparators(FString &s) in NormalizeDirSeparators()
95 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR… in IsDrivePath()
97 bool IsAltPathPrefix(CFSTR s) throw() in IsAltPathPrefix()
127 #define IS_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '.' && IS_SEP… argument
128 #define IS_SUPER_PREFIX(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '?' && IS_SEP… argument
129 #define IS_SUPER_OR_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && ((s)[2] == '?' || (s)[2… argument
131 #define IS_UNC_WITH_SLASH(s) ( \ argument
137 bool IsDevicePath(CFSTR s) throw() in IsDevicePath()
170 bool IsSuperUncPath(CFSTR s) throw() { return (IS_SUPER_PREFIX(s) && IS_UNC_WITH_SLASH(s + kSuperPa… in IsSuperUncPath()
171 bool IsNetworkPath(CFSTR s) throw() in IsNetworkPath()
181 unsigned GetNetworkServerPrefixSize(CFSTR s) throw() in GetNetworkServerPrefixSize()
200 bool IsNetworkShareRootPath(CFSTR s) throw() in IsNetworkShareRootPath()
214 bool IsDrivePath2(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2()
216 bool IsSuperPath(const wchar_t *s) throw() { return IS_SUPER_PREFIX(s); } in IsSuperPath()
217 bool IsSuperOrDevicePath(const wchar_t *s) throw() { return IS_SUPER_OR_DEVICE_PATH(s); } in IsSuperOrDevicePath()
220 bool IsAltStreamPrefixWithColon(const UString &s) throw() in IsAltStreamPrefixWithColon()
234 bool If_IsSuperPath_RemoveSuperPrefix(UString &s) in If_IsSuperPath_RemoveSuperPrefix()
252 bool IsDrivePath2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2()
254 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath()
255 bool IsSuperPath(CFSTR s) throw() { return IS_SUPER_PREFIX(s); } in IsSuperPath()
256 bool IsSuperOrDevicePath(CFSTR s) throw() { return IS_SUPER_OR_DEVICE_PATH(s); } in IsSuperOrDevicePath()
259 bool IsDrivePath_SuperAllowed(CFSTR s) throw() in IsDrivePath_SuperAllowed()
266 bool IsDriveRootPath_SuperAllowed(CFSTR s) throw() in IsDriveRootPath_SuperAllowed()
273 bool IsAbsolutePath(const wchar_t *s) throw() in IsAbsolutePath()
302 static unsigned GetRootPrefixSize_Of_NetworkPath(CFSTR s) in GetRootPrefixSize_Of_NetworkPath()
314 static unsigned GetRootPrefixSize_Of_SimplePath(CFSTR s) in GetRootPrefixSize_Of_SimplePath()
326 static unsigned GetRootPrefixSize_Of_SuperPath(CFSTR s) in GetRootPrefixSize_Of_SuperPath()
340 unsigned GetRootPrefixSize(CFSTR s) throw() in GetRootPrefixSize()
351 static unsigned GetRootPrefixSize_Of_NetworkPath(const wchar_t *s) throw() in GetRootPrefixSize_Of_NetworkPath()
363 static unsigned GetRootPrefixSize_Of_SimplePath(const wchar_t *s) throw() in GetRootPrefixSize_Of_SimplePath()
375 static unsigned GetRootPrefixSize_Of_SuperPath(const wchar_t *s) throw() in GetRootPrefixSize_Of_SuperPath()
389 unsigned GetRootPrefixSize(const wchar_t *s) throw() in GetRootPrefixSize()
400 bool IsAbsolutePath(const wchar_t *s) throw() { return IS_SEPAR(s[0]); } in IsAbsolutePath()
404 unsigned GetRootPrefixSize(CFSTR s) throw() { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
406 unsigned GetRootPrefixSize(const wchar_t *s) throw() { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
423 FString s; in GetCurDir() local
433 static bool ResolveDotsFolders(UString &s) in ResolveDotsFolders()
515 static bool AreThereDotsFolders(CFSTR s) in AreThereDotsFolders()
554 int GetUseSuperPathType(CFSTR s) throw() in GetUseSuperPathType()
605 static bool GetSuperPathBase(CFSTR s, UString &res) in GetSuperPathBase()
803 bool GetFullPath(CFSTR dirPrefix, CFSTR s, FString &res) in GetFullPath()