• Home
  • Raw
  • Download

Lines Matching refs:UString

72 extern UString HResultToMessage(HRESULT errorCode);
81 UString s = HResultToMessage(errorCode); in MessageBox_HResError()
102 UString _topDirPrefix; // we don't open parent of that folder
103 UString DirPrefix;
115 bool GetParentPath(const UString &path, UString &parentPrefix, UString &name);
117 HRESULT Reload(const UString &pathPrefix, const UString &selectedName);
136 UString Title;
137 UString FilePath; // input/ result path
140 UString FilterDescription;
143 void SetFilter(const UString &s);
148 void CBrowseDialog::SetFilter(const UString &s) in SetFilter()
151 UString mask; in SetFilter()
170 const UString &f = Filters[i]; in SetFilter()
208 UString s; in OnInit()
237 const UString s = LangString(IDS_PROP_SIZE); in OnInit()
278 UString name; in OnInit()
284 UString baseFolder = DirPrefix; in OnInit()
290 UString parent, name2; in OnInit()
462 bool CBrowseDialog::GetParentPath(const UString &path, UString &parentPrefix, UString &name) in GetParentPath()
470 UString s = path; in GetParentPath()
528 HRESULT CBrowseDialog::Reload(const UString &pathPrefix, const UString &selectedName) in Reload()
599 const UString itemName = L".."; in Reload()
621 const UString name = fs2us(fi.Name); in Reload()
630 const UString fullPath = DirPrefix + name; in Reload()
678 UString selected; in Reload()
686 UString dirPathTemp = DirPrefix; in Reload()
692 UString parent, selected; in OpenParentFolder()
729 UString name; in OnCreateDir()
731 UString enteredName; in OnCreateDir()
753 UString tempPath = DirPrefix; in OnCreateDir()
783 UString s = DirPrefix + fs2us(file.Name) + WCHAR_PATH_SEPARATOR; in OnItemEnter()
793 UString s; in FinishOnOK()
809 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath) in MyBrowseForFolder()
839 LPCWSTR filterDescription, LPCWSTR filter, UString &resultPath) in MyBrowseForFile()
866 UString s = errorMessage; in MyBrowseForFile()
898 static void RemoveDotsAndSpaces(UString &path) in RemoveDotsAndSpaces()
910 bool CorrectFsPath(const UString &relBase, const UString &path2, UString &result) in CorrectFsPath()
914 UString path = path2; in CorrectFsPath()
917 UString base; in CorrectFsPath()
969 UString cur; in CorrectFsPath()
1005 bool CorrectFsPath(const UString & /* relBase */, const UString &path, UString &result) in CorrectFsPath() argument
1013 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder()