/external/lzma/CPP/7zip/UI/Common/ |
DefaultName.h | 8 UString GetDefaultName2(const UString &fileName,
9 const UString &extension, const UString &addSubExtension);
|
Property.h | 10 UString Name;
11 UString Value;
|
ExtractingFilePath.h | 9 void Correct_AltStream_Name(UString &s);
13 UString Get_Correct_FsFile_Name(const UString &name);
17 UString MakePathFromParts(const UStringVector &parts);
|
ArchiveName.h | 10 UString CreateArchiveName(const UString &path, bool fromPrev, bool keepName);
11 UString CreateArchiveName(const NWindows::NFile::NFind::CFileInfo &fileInfo, bool keepName);
|
DefaultName.cpp | 7 static UString GetDefaultName3(const UString &fileName,
8 const UString &extension, const UString &addSubExtension)
31 UString GetDefaultName2(const UString &fileName,
32 const UString &extension, const UString &addSubExtension)
34 UString name = GetDefaultName3(fileName, extension, addSubExtension);
|
/external/lzma/CPP/7zip/UI/FileManager/ |
FormatUtils.h | 9 UString NumberToString(UInt64 number);
11 UString MyFormatNew(const UString &format, const UString &argument);
12 UString MyFormatNew(UINT resourceID, const UString &argument);
|
FormatUtils.cpp | 11 UString NumberToString(UInt64 number)
18 UString MyFormatNew(const UString &format, const UString &argument)
20 UString result = format;
25 UString MyFormatNew(UINT resourceID, const UString &argument)
|
BrowseDialog.h | 8 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath);
9 bool MyBrowseForFile(HWND owner, LPCWSTR title, LPCWSTR path, LPCWSTR filterDescription, LPCWSTR filter, UString &resultPath);
17 bool CorrectFsPath(const UString &relBase, const UString &path, UString &result);
19 bool Dlg_CreateFolder(HWND wnd, UString &destName);
|
PropertyName.h | 8 UString GetNameOfProperty(PROPID propID, const wchar_t *name);
|
ComboDialog.h | 19 UString Title;
20 UString Static;
21 UString Value;
|
LangUtils.h | 10 extern UString g_LangID;
27 UString LangString(UInt32 langID);
28 void AddLangString(UString &s, UInt32 langID);
29 void LangString(UInt32 langID, UString &dest);
30 void LangString_OnlyFromLangFile(UInt32 langID, UString &dest);
34 inline UString LangString(UInt32 langID) { return NWindows::MyLoadString(langID); }
35 inline void LangString(UInt32 langID, UString &dest) { NWindows::MyLoadString(langID, dest); }
36 inline void AddLangString(UString &s, UInt32 langID) { s += NWindows::MyLoadString(langID); }
|
PropertyName.cpp | 10 UString GetNameOfProperty(PROPID propID, const wchar_t *name)
14 UString s = LangString(1000 + propID);
|
/external/lzma/CPP/7zip/Archive/Common/ |
ItemNameUtils.h | 13 UString MakeLegalName(const UString &name);
14 UString GetOSName(const UString &name);
15 UString GetOSName2(const UString &name);
16 void ConvertToOSName2(UString &name);
20 inline UString WinNameToOSName(const UString &name) { return name; }
22 UString WinNameToOSName(const UString &name); [all...] |
ItemNameUtils.cpp | 28 UString MakeLegalName(const UString &name)
30 UString zipName = name;
35 UString GetOSName(const UString &name)
37 UString newName = name;
42 UString GetOSName2(const UString &name)
45 return UString();
46 UString newName = GetOSName(name); [all...] |
/external/lzma/CPP/Common/ |
TextConfig.h | 10 UString ID;
11 UString String;
16 int FindTextConfigItem(const CObjectVector<CTextConfigPair> &pairs, const UString &id) throw();
17 UString GetTextConfigValue(const CObjectVector<CTextConfigPair> &pairs, const UString &id);
|
Wildcard.h | 15 void SplitPathToParts(const UString &path, UStringVector &pathParts);
16 void SplitPathToParts_2(const UString &path, UString &dirPrefix, UString &name);
17 void SplitPathToParts_Smart(const UString &path, UString &dirPrefix, UString &name); // ignores dir delimiter at the end of (path)
19 UString ExtractDirPrefixFromPath(const UString &path);
20 UString ExtractFileNameFromPath(const UString &path); [all...] |
UTFConvert.h | 9 bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString);
10 void ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString);
|
StringConvert.h | 9 UString MultiByteToUnicodeString(const AString &srcString, UINT codePage = CP_ACP);
12 void MultiByteToUnicodeString2(UString &dest, const AString &srcString, UINT codePage = CP_ACP);
13 // void UnicodeStringToMultiByte2(AString &dest, const UString &s, UINT codePage, char defaultChar, bool &defaultCharWasUsed);
14 void UnicodeStringToMultiByte2(AString &dest, const UString &srcString, UINT codePage);
16 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage, char defaultChar, bool &defaultCharWasUsed);
17 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage = CP_ACP);
21 inline const UString& GetUnicodeString(const UString &unicodeString)
23 inline UString GetUnicodeString(const AString &ansiString)
25 inline UString GetUnicodeString(const AString &multiByteString, UINT codePage) [all...] |
CommandLineParser.h | 10 bool SplitCommandLine(const UString &src, UString &dest1, UString &dest2);
11 void SplitCommandLine(const UString &s, UStringVector &parts);
49 bool ParseString(const UString &s, const CSwitchForm *switchForms);
53 UString ErrorLine;
|
/external/lzma/CPP/Windows/ |
ResourceString.h | 10 UString MyLoadString(UINT resourceID);
11 void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
12 void MyLoadString(UINT resourceID, UString &dest);
|
ErrorMsg.h | 11 UString MyFormatMessage(DWORD errorCode);
|
FileSystem.h | 15 UString &volumeName,
19 UString &fileSystemName);
|
/external/icu/icu4c/source/tools/genrb/ |
ustr.h | 54 struct UString { 60 U_CFUNC void ustr_init(struct UString *s); 63 ustr_initChars(struct UString *s, const char* source, int32_t length, UErrorCode *status); 65 U_CFUNC void ustr_deinit(struct UString *s); 67 U_CFUNC void ustr_setlen(struct UString *s, int32_t len, UErrorCode *status); 69 U_CFUNC void ustr_cpy(struct UString *dst, const struct UString *src, 72 U_CFUNC void ustr_cat(struct UString *dst, const struct UString *src, 75 U_CFUNC void ustr_ncat(struct UString *dst, const struct UString *src [all...] |
/external/lzma/CPP/7zip/UI/GUI/ |
HashGUI.h | 14 void AddHashBundleRes(UString &s, const CHashBundle &hb, const UString &firstFileName);
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
ExtractEngine.h | 9 bool showProgress, bool &isCorrupt, UString &errorMessage);
|