Lines Matching full:ustring
11 static UString ReplaceIncorrectChars(const UString &s)
14 UString res;
37 static bool CheckTail(const UString &name, int len)
42 UString s = name.Left(dotPos);
47 static bool CheckNameNum(const UString &name, const wchar_t *reservedName)
60 static bool IsSupportedName(const UString &name)
79 static UString GetCorrectFileName(const UString &path)
82 return UString();
90 UString &s = pathParts[i];
98 s = (UString)L"_" + s;
105 UString MakePathNameFromParts(const UStringVector &parts)
107 UString result;
117 UString GetCorrectFsPath(const UString &path)
119 UString res = GetCorrectFileName(path);
122 res = (UString)L"_" + res;
127 UString GetCorrectFullFsPath(const UString &path)
133 UString &s = parts[i];
138 s = (UString)L"_" + s;