HomeSort by relevance Sort by last modified time
    Searched full:codepage (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/core/
codepage.S 2 .globl codepage
3 codepage: label
4 .incbin "codepage.cp"
5 .size codepage, .-codepage
  /external/syslinux/core/include/
codepage.h 2 * Codepage data structure as generated by cptable.pl
11 struct codepage { struct
15 uint8_t upper[256]; /* Codepage upper case table */
16 uint8_t lower[256]; /* Codepage lower case table */
25 extern const struct codepage codepage;
  /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 16 MultiByteToWideChar(CodePage, DWORD dwFlags,
42 void MultiByteToUnicodeString2(UString &dest, const AString &src, UINT codePage)
63 unsigned len = MultiByteToWideChar(codePage, 0, s + i,
74 unsigned len = MultiByteToWideChar(codePage, 0, src, src.Len(), NULL, 0);
82 len = MultiByteToWideChar(codePage, 0, src, src.Len(), dest.GetBuf(len), len);
92 UINT CodePage, DWORD dwFlags,
100 if (CodePage == CP_UTF7 || CodePage == CP_UTF8)
108 static void UnicodeStringToMultiByte2(AString &dest, const UString &src, UINT codePage, char defaultChar, bool &defaultCharWasUsed)
134 bool isUtf = (codePage == CP_UTF8 || codePage == CP_UTF7);
    [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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
genwincodec.py 11 def genwinmap(codepage):
26 codepage, 0,
43 def genwincodec(codepage):
45 map = genwinmap(codepage)
46 encodingname = 'cp%d' % codepage
54 ''' % (encodingname, ' '.join(platform.win32_ver()), codepage
  /external/python/cpython2/Tools/unicode/
genwincodec.py 11 def genwinmap(codepage):
26 codepage, 0,
43 def genwincodec(codepage):
45 map = genwinmap(codepage)
46 encodingname = 'cp%d' % codepage
54 ''' % (encodingname, ' '.join(platform.win32_ver()), codepage
  /external/python/cpython3/Tools/unicode/
genwincodec.py 11 def genwinmap(codepage):
26 codepage, 0,
43 def genwincodec(codepage):
45 map = genwinmap(codepage)
46 encodingname = 'cp%d' % codepage
54 ''' % (encodingname, ' '.join(platform.win32_ver()), codepage
  /external/icu/icu4c/source/io/
ufile.cpp 19 * 07/19/99 stephen Fixed to use ucnv's default codepage.
54 const char *codepage,
85 /* If the codepage is not "" use the ucnv_open default behavior */
86 if(codepage == NULL || *codepage != '\0') {
87 result->fConverter = ucnv_open(codepage, &status);
109 const char *codepage)
111 return finit_owner(f, locale, codepage, FALSE);
117 const char *codepage)
119 return finit_owner(f, locale, codepage, TRUE)
302 const char *codepage = NULL; local
    [all...]
  /external/syslinux/codepage/
cptable.pl 3 # Produce a codepage matching table. For each 8-bit character, list
47 # Filesystem and console codepages. The filesystem codepage is used
48 # for FAT shortnames, whereas the console codepage is whatever is used
54 or die "$0: could not open fs codepage: $cpfs: $!\n";
60 $xtab[hex $f[0]] = hex $f[1]; # Codepage -> Unicode
61 $tabx{hex $f[1]} = hex $f[0]; # Unicode -> Codepage
68 or die "$0: could not open console codepage: $cpco: $!\n";
74 $ytab[hex $f[0]] = hex $f[1]; # Codepage -> Unicode
75 $taby{hex $f[1]} = hex $f[0]; # Unicode -> Codepage
92 # This depends both on the console codepage and the filesystem codepage
    [all...]
Makefile 11 # This generates codepage files where the display and filesystem
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterStaticData.java 18 int codepage; /* +64: 4 codepage # (now IBM-$codepage) */ field in class:UConverterStaticData
23 byte minBytesPerChar; /* +70: 1 Minimum # bytes per char in this codepage */
24 byte maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
45 codepage = codepage_;
  /external/lzma/CPP/7zip/Archive/Common/
ItemNameUtils.h 17 bool HasTailSlash(const AString &name, UINT codePage);
  /external/icu/icu4c/source/test/cintltst/
ncnvfbts.h 26 const char *codepage, UBool fallback, const int32_t *expectOffsets);
28 const char *codepage, UBool fallback, const int32_t *expectOffsets);
35 static void setNuConvTestName(const char *codepage, const char *direction);
nccbtst.h 51 const char *codepage, UConverterFromUCallback callback, const int32_t *expectOffsets,
56 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets,
60 const char *codepage, UConverterFromUCallback callback , const int32_t *expectOffsets,
64 const char *codepage, UConverterToUCallback callback, const int32_t *expectOffsets,
71 static void setNuConvTestName(const char *codepage, const char *direction);
eurocreg.c 33 * changing their contents compared to the NLTC (IBM Toronto codepage database) definition.
35 * Codepage mapping files with "ibm-*.ucm" should always exactly match the files
36 * from the IBM codepage database.
41 * This followed the practice of OS/2 that uses the old codepage number 850 for the new
42 * codepage 858, with the main difference being the additional Euro sign.
44 * codepages, and Microsoft Windows 2000's codepage 850 does not contain a Euro sign mapping.
46 * In these cases, I have changed the codepage name here to point to a newer codepage with the
  /external/icu/icu4c/source/common/
unistr_cnv.cpp 63 const char *codepage) {
66 doCodepageCreate(codepageData, (int32_t)uprv_strlen(codepageData), codepage);
72 const char *codepage) {
75 doCodepageCreate(codepageData, dataLength, codepage);
136 const char *codepage) const
172 // if the codepage is the default, use our cache
174 if (codepage == 0) {
180 } else if (*codepage == 0) {
191 converter = ucnv_open(codepage, &status);
197 if (codepage == 0)
    [all...]
  /external/icu/icu4c/source/samples/cal/
uprint.h 27 /* Print a ustring to the specified FILE* in the default codepage */
  /external/icu/icu4c/source/samples/date/
uprint.h 27 /* Print a ustring to the specified FILE* in the default codepage */
  /external/icu/icu4c/source/test/testdata/
test4x.ucm 10 # Test file for MBCS conversion extension with four-byte codepage data.
  /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/expat/xmlwf/
xmlwf.vcxproj.filters 18 <ClCompile Include="codepage.c">
38 <ClInclude Include="codepage.h">

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011>>