Lines Matching refs:UString
11 static UString ReplaceIncorrectChars(const UString &s, bool repaceColon) in ReplaceIncorrectChars()
14 UString res; in ReplaceIncorrectChars()
56 static bool CheckTail(const UString &name, unsigned len) in CheckTail()
61 UString s = name.Left(dotPos); in CheckTail()
66 static bool CheckNameNum(const UString &name, const wchar_t *reservedName) in CheckNameNum()
79 static bool IsSupportedName(const UString &name) in IsSupportedName()
99 static UString GetCorrectFileName(const UString &path, bool repaceColon) in GetCorrectFileName()
102 return UString(); in GetCorrectFileName()
110 UString &s = pathParts[i]; in MakeCorrectPath()
115 UString s2 = s[0]; in MakeCorrectPath()
130 s = (UString)L"_" + s; in MakeCorrectPath()
137 UString MakePathNameFromParts(const UStringVector &parts) in MakePathNameFromParts()
139 UString result; in MakePathNameFromParts()
157 UString &s = parts.Back(); in Correct_IfEmptyLastPart()
163 UString GetCorrectFsPath(const UString &path) in GetCorrectFsPath()
165 UString res = GetCorrectFileName(path, true); in GetCorrectFsPath()
168 res = (UString)L"_" + res; in GetCorrectFsPath()
175 UString GetCorrectFullFsPath(const UString &path) in GetCorrectFullFsPath()
181 UString &s = parts[i]; in GetCorrectFullFsPath()