/external/lzma/CPP/Common/ |
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);
25 inline UString GetUnicodeString(const AString &multiByteString, UINT codePage)
26 { return MultiByteToUnicodeString(multiByteString, codePage); }
52 inline const wchar_t* GetSystemString(const wchar_t* unicodeString, UINT /* codePage */)
54 inline const UString& GetSystemString(const UString &unicodeString, UINT /* codePage */)
[all...] |
StdOutStream.cpp | 52 int codePage = g_CodePage;
53 if (codePage == -1)
54 codePage = CP_OEMCP;
56 if (codePage == CP_UTF8)
59 UnicodeStringToMultiByte2(dest, s, (UINT)codePage);
65 int codePage = g_CodePage;
66 if (codePage == -1)
67 codePage = CP_OEMCP;
68 if (codePage == CP_UTF8)
71 UnicodeStringToMultiByte2(temp, s, (UINT)codePage);
[all...] |
ListFileUtils.h | 12 bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
|
StringConvert.cpp | 12 UString MultiByteToUnicodeString(const AString &srcString, UINT codePage)
17 int numChars = MultiByteToWideChar(codePage, 0, srcString,
27 void MultiByteToUnicodeString2(UString &dest, const AString &srcString, UINT codePage)
45 unsigned numChars = MultiByteToWideChar(codePage, 0, sp + i,
56 void UnicodeStringToMultiByte2(AString &dest, const UString &s, UINT codePage, char defaultChar, bool &defaultCharWasUsed)
77 unsigned numChars = WideCharToMultiByte(codePage, 0, sp + i, s.Len() - i,
89 void UnicodeStringToMultiByte2(AString &dest, const UString &srcString, UINT codePage)
92 UnicodeStringToMultiByte2(dest, srcString, codePage, '_', defaultCharWasUsed);
95 AString UnicodeStringToMultiByte(const UString &s, UINT codePage, char defaultChar, bool &defaultCharWasUsed)
103 int numChars = WideCharToMultiByte(codePage, 0, s, s.Len(), [all...] |
StdInStream.cpp | 64 int codePage = g_CodePage;
65 if (codePage == -1)
66 codePage = CP_OEMCP;
68 if (codePage == CP_UTF8)
71 dest = MultiByteToUnicodeString(s, (UINT)codePage);
|
ListFileUtils.cpp | 28 bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage)
39 if (codePage == MY__CP_UTF16 || codePage == MY__CP_UTF16BE)
52 if (codePage == MY__CP_UTF16)
86 if (codePage == CP_UTF8)
93 MultiByteToUnicodeString2(u, s, codePage);
|
/external/icu/icu4c/source/test/cintltst/ |
ncnvfbts.h | 24 const char *codepage, UBool fallback, const int32_t *expectOffsets); 26 const char *codepage, UBool fallback, const int32_t *expectOffsets); 33 static void setNuConvTestName(const char *codepage, const char *direction);
|
nccbtst.h | 46 const char *codepage, UConverterFromUCallback callback, const int32_t *expectOffsets, 51 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets, 55 const char *codepage, UConverterFromUCallback callback , const int32_t *expectOffsets, 59 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets, 66 static void setNuConvTestName(const char *codepage, const char *direction);
|
eurocreg.c | 31 * changing their contents compared to the NLTC (IBM Toronto codepage database) definition. 33 * Codepage mapping files with "ibm-*.ucm" should always exactly match the files 34 * from the IBM codepage database. 39 * This followed the practice of OS/2 that uses the old codepage number 850 for the new 40 * codepage 858, with the main difference being the additional Euro sign. 42 * codepages, and Microsoft Windows 2000's codepage 850 does not contain a Euro sign mapping. 44 * In these cases, I have changed the codepage name here to point to a newer codepage with the
|
/external/icu/icu4c/source/io/ |
ufile.c | 17 * 07/19/99 stephen Fixed to use ucnv's default codepage. 49 const char *codepage, 106 /* If the codepage is not "" use the ucnv_open default behavior */ 107 if(codepage == NULL || *codepage != '\0') { 108 result->fConverter = ucnv_open(codepage, &status); 130 const char *codepage) 132 return finit_owner(f, locale, codepage, FALSE); 138 const char *codepage) 140 return finit_owner(f, locale, codepage, TRUE) 319 const char *codepage = NULL; local [all...] |
/external/icu/icu4c/source/test/testdata/ |
test4x.ucm | 8 # Test file for MBCS conversion extension with four-byte codepage data.
|
test1.ucm | 8 # Test file for MBCS conversion with single-byte codepage data.
|
test5.ucm | 8 # Test file for MBCS conversion with three-byte codepage data.
|
test1bmp.ucm | 8 # Test file for MBCS conversion with single-byte codepage data.
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
UConverterStaticData.java | 16 int codepage; /* +64: 4 codepage # (now IBM-$codepage) */ field in class:UConverterStaticData 21 byte minBytesPerChar; /* +70: 1 Minimum # bytes per char in this codepage */ 22 byte maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */ 43 codepage = codepage_;
|
/external/icu/icu4c/source/samples/cal/ |
uprint.h | 23 /* Print a ustring to the specified FILE* in the default codepage */
|
readme.txt | 6 Outputting text in the default codepage to the console 11 uprint.h codepage output convenience header 12 uprint.h codepage output convenience implementation
|
/external/icu/icu4c/source/samples/date/ |
uprint.h | 23 /* Print a ustring to the specified FILE* in the default codepage */
|
readme.txt | 6 Outputting text in the default codepage to the console 11 uprint.h codepage output convenience header 12 uprint.h codepage output convenience implementation
|
/external/lzma/CPP/7zip/Archive/Common/ |
ItemNameUtils.h | 17 bool HasTailSlash(const AString &name, UINT codePage);
|
ItemNameUtils.cpp | 64 codePage
72 CharPrevExA((WORD)codePage, name, &name[name.Len()], 0);
|
/external/icu/icu4c/source/common/ |
unistr_cnv.cpp | 61 const char *codepage) { 64 doCodepageCreate(codepageData, (int32_t)uprv_strlen(codepageData), codepage); 70 const char *codepage) { 73 doCodepageCreate(codepageData, dataLength, codepage); 134 const char *codepage) const 170 // if the codepage is the default, use our cache 172 if (codepage == 0) { 178 } else if (*codepage == 0) { 189 converter = ucnv_open(codepage, &status); 195 if (codepage == 0) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
gb18030.h | 13 STDAPI_(DWORD) NlsDllCodePageTranslation(DWORD CodePage,DWORD dwFlags,LPSTR lpMultiByteStr,int cchMultiByte,LPWSTR lpWideCharStr,int cchWideChar,LPCPINFO lpCPInfo);
|
/external/valgrind/none/tests/s390x/ |
tr.c | 10 void tr(uint8_t *codepage, uint8_t *addr, uint64_t len) 17 : "a" (codepage) : "cc", "memory", "1");
|
/toolchain/binutils/binutils-2.25/binutils/ |
winduni.h | 98 /* Specifies the default codepage to be used for unicode 102 /* Specifies the currently used codepage for unicode 120 rc_uint_type codepage; member in struct:local_iconv_map 126 /* Convert an Codepage string to a unicode string. */ 130 /* Convert an unicode string to an codepage string. */
|