• Home
  • Raw
  • Download

Lines Matching defs:s

17 int FindSepar(const wchar_t *s) throw()  in FindSepar()
30 int FindSepar(const FChar *s) throw() in FindSepar()
63 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR… in IsDrivePath()
65 bool IsAltPathPrefix(CFSTR s) throw() in IsAltPathPrefix()
93 #define IS_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '.' && IS_SEP… argument
94 #define IS_SUPER_PREFIX(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && (s)[2] == '?' && IS_SEP… argument
95 #define IS_SUPER_OR_DEVICE_PATH(s) (IS_SEPAR((s)[0]) && IS_SEPAR((s)[1]) && ((s)[2] == '?' || (s)[2… argument
97 #define IS_UNC_WITH_SLASH(s) ( \ argument
103 bool IsDevicePath(CFSTR s) throw() in IsDevicePath()
136 bool IsSuperUncPath(CFSTR s) throw() { return (IS_SUPER_PREFIX(s) && IS_UNC_WITH_SLASH(s + kSuperPa… in IsSuperUncPath()
137 bool IsNetworkPath(CFSTR s) throw() in IsNetworkPath()
147 unsigned GetNetworkServerPrefixSize(CFSTR s) throw() in GetNetworkServerPrefixSize()
166 bool IsNetworkShareRootPath(CFSTR s) throw() in IsNetworkShareRootPath()
180 bool IsDrivePath2(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2()
182 bool IsSuperPath(const wchar_t *s) throw() { return IS_SUPER_PREFIX(s); } in IsSuperPath()
183 bool IsSuperOrDevicePath(const wchar_t *s) throw() { return IS_SUPER_OR_DEVICE_PATH(s); } in IsSuperOrDevicePath()
187 bool IsDrivePath2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; } in IsDrivePath2()
189 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath()
190 bool IsSuperPath(CFSTR s) throw() { return IS_SUPER_PREFIX(s); } in IsSuperPath()
191 bool IsSuperOrDevicePath(CFSTR s) throw() { return IS_SUPER_OR_DEVICE_PATH(s); } in IsSuperOrDevicePath()
203 bool IsDriveRootPath_SuperAllowed(CFSTR s) throw() in IsDriveRootPath_SuperAllowed()
210 bool IsAbsolutePath(const wchar_t *s) throw() in IsAbsolutePath()
239 static unsigned GetRootPrefixSize_Of_NetworkPath(CFSTR s) in GetRootPrefixSize_Of_NetworkPath()
251 static unsigned GetRootPrefixSize_Of_SimplePath(CFSTR s) in GetRootPrefixSize_Of_SimplePath()
263 static unsigned GetRootPrefixSize_Of_SuperPath(CFSTR s) in GetRootPrefixSize_Of_SuperPath()
277 unsigned GetRootPrefixSize(CFSTR s) in GetRootPrefixSize()
288 static unsigned GetRootPrefixSize_Of_NetworkPath(const wchar_t *s) in GetRootPrefixSize_Of_NetworkPath()
300 static unsigned GetRootPrefixSize_Of_SimplePath(const wchar_t *s) in GetRootPrefixSize_Of_SimplePath()
312 static unsigned GetRootPrefixSize_Of_SuperPath(const wchar_t *s) in GetRootPrefixSize_Of_SuperPath()
326 unsigned GetRootPrefixSize(const wchar_t *s) throw() in GetRootPrefixSize()
337 bool IsAbsolutePath(const wchar_t *s) { return IS_SEPAR(s[0]); } in IsAbsolutePath()
340 unsigned GetRootPrefixSize(CFSTR s) { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
342 unsigned GetRootPrefixSize(const wchar_t *s) { return IS_SEPAR(s[0]) ? 1 : 0; } in GetRootPrefixSize()
356 TCHAR s[MAX_PATH + 2]; in GetCurDir() local
364 WCHAR s[MAX_PATH + 2]; in GetCurDir() local
372 static bool ResolveDotsFolders(UString &s) in ResolveDotsFolders()
454 static bool AreThereDotsFolders(CFSTR s) in AreThereDotsFolders()
493 int GetUseSuperPathType(CFSTR s) throw() in GetUseSuperPathType()
544 static bool GetSuperPathBase(CFSTR s, UString &res) in GetSuperPathBase()
736 bool GetFullPath(CFSTR dirPrefix, CFSTR s, FString &res) in GetFullPath()