Lines Matching full:parts
137 UString MakePathNameFromParts(const UStringVector &parts) in MakePathNameFromParts() argument
140 FOR_VECTOR (i, parts) in MakePathNameFromParts()
144 result += parts[i]; in MakePathNameFromParts()
151 void Correct_IfEmptyLastPart(UStringVector &parts) in Correct_IfEmptyLastPart() argument
153 if (parts.IsEmpty()) in Correct_IfEmptyLastPart()
154 parts.Add(k_EmptyReplaceName); in Correct_IfEmptyLastPart()
157 UString &s = parts.Back(); in Correct_IfEmptyLastPart()
177 UStringVector parts; in GetCorrectFullFsPath() local
178 SplitPathToParts(path, parts); in GetCorrectFullFsPath()
179 FOR_VECTOR (i, parts) in GetCorrectFullFsPath()
181 UString &s = parts[i]; in GetCorrectFullFsPath()
189 return MakePathNameFromParts(parts); in GetCorrectFullFsPath()