HomeSort by relevance Sort by last modified time
    Searched refs:codePage (Results 1 - 14 of 14) sorted by null

  /external/lzma/CPP/Common/
ListFileUtils.h 9 bool ReadNamesFromListFile(LPCWSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
StringConvert.h 10 UString MultiByteToUnicodeString(const AString &srcString, UINT codePage = CP_ACP);
11 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage, char defaultChar, bool &defaultCharWasUsed);
12 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage = CP_ACP);
21 inline UString GetUnicodeString(const AString &multiByteString, UINT codePage)
22 { return MultiByteToUnicodeString(multiByteString, codePage); }
48 inline const wchar_t* GetSystemString(const wchar_t* unicodeString, UINT /* codePage */)
50 inline const UString& GetSystemString(const UString &unicodeString, UINT /* codePage */)
52 inline UString GetSystemString(const AString &multiByteString, UINT codePage)
53 { return MultiByteToUnicodeString(multiByteString, codePage);}
65 inline AString GetSystemString(const UString &unicodeString, UINT codePage)
    [all...]
StringConvert.cpp 12 UString MultiByteToUnicodeString(const AString &srcString, UINT codePage)
17 int numChars = MultiByteToWideChar(codePage, 0, srcString,
27 AString UnicodeStringToMultiByte(const UString &s, UINT codePage, char defaultChar, bool &defaultCharWasUsed)
35 int numChars = WideCharToMultiByte(codePage, 0, s, s.Length(),
46 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage)
49 return UnicodeStringToMultiByte(srcString, codePage, '_', defaultCharWasUsed);
64 UString MultiByteToUnicodeString(const AString &srcString, UINT codePage)
80 AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage)
StdInStream.cpp 75 int codePage = g_CodePage;
76 if (codePage == -1)
77 codePage = CP_OEMCP;
79 if (codePage == CP_UTF8)
82 dest = MultiByteToUnicodeString(s, (UINT)codePage);
StdOutStream.cpp 74 int codePage = g_CodePage;
75 if (codePage == -1)
76 codePage = CP_OEMCP;
78 if (codePage == CP_UTF8)
81 dest = UnicodeStringToMultiByte(s, (UINT)codePage);
ListFileUtils.cpp 20 bool ReadNamesFromListFile(LPCWSTR fileName, UStringVector &resultStrings, UINT codePage)
41 if (codePage == CP_UTF8)
48 u = MultiByteToUnicodeString(s, codePage);
  /external/lzma/CPP/7zip/Archive/Common/
ItemNameUtils.h 14 bool HasTailSlash(const AString &name, UINT codePage);
ItemNameUtils.cpp 39 bool HasTailSlash(const AString &name, UINT codePage)
45 CharPrevExA((WORD)codePage, name, &name[name.Length()], 0);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.cpp 283 LPCWSTR fileName, bool include, NRecursedType::EEnum type, UINT codePage)
288 if (!ReadNamesFromListFile(fileName, names, codePage))
298 bool thereAreSwitchIncludes, UINT codePage)
308 AddToCensorFromListFile(wildcardCensor, s.Mid(1), true, type, codePage);
380 NRecursedType::EEnum commonRecursedType, UINT codePage)
405 AddToCensorFromListFile(wildcardCensor, tail, include, recursedType, codePage);
728 UINT CodePage;
750 return pair.CodePage;
838 UINT codePage = FindCharset(parser, NKey::kListfileCharSet, CP_UTF8);
845 parser[NKey::kInclude].PostStrings, true, recursedType, codePage);
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp     [all...]