HomeSort by relevance Sort by last modified time
    Searched defs:codepage (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/icu/source/io/
ufile.c 17 * 07/19/99 stephen Fixed to use ucnv's default codepage.
48 const char *codepage,
93 /* If the codepage is not "" use the ucnv_open default behavior */
94 if(codepage == NULL || *codepage != '\0') {
95 result->fConverter = ucnv_open(codepage, &status);
117 const char *codepage)
119 return finit_owner(f, locale, codepage, FALSE);
125 const char *codepage)
127 return finit_owner(f, locale, codepage, TRUE)
277 const char *codepage = NULL; local
    [all...]
  /external/icu4c/io/
ufile.c 17 * 07/19/99 stephen Fixed to use ucnv's default codepage.
45 const char *codepage,
90 /* If the codepage is not "" use the ucnv_open default behavior */
91 if(codepage == NULL || *codepage != '\0') {
92 result->fConverter = ucnv_open(codepage, &status);
114 const char *codepage)
116 return finit_owner(f, locale, codepage, FALSE);
122 const char *codepage)
124 return finit_owner(f, locale, codepage, TRUE)
274 const char *codepage = NULL; local
    [all...]
  /external/chromium/net/proxy/
proxy_script_fetcher_impl.cc 53 const char* codepage; local
57 codepage = base::kCodepageLatin1;
60 codepage = charset.c_str();
66 base::CodepageToUTF16(bytes, codepage,
  /external/chromium_org/net/proxy/
proxy_script_fetcher_impl.cc 54 const char* codepage; local
58 codepage = base::kCodepageLatin1;
61 codepage = charset.c_str();
67 base::CodepageToUTF16(bytes, codepage,
  /external/chromium_org/third_party/icu/source/common/
ucnv_bld.h 70 int32_t codepage; /* +64: 4 codepage # (now IBM-$codepage) */ member in struct:UConverterStaticData
75 int8_t minBytesPerChar; /* +70: 1 Minimum # bytes per char in this codepage */
76 int8_t maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
206 int8_t subCharLen; /* length of the codepage specific character sequence */
216 uint8_t charErrorBuffer[UCNV_ERROR_BUFFER_LENGTH]; /* codepage output from Error functions */
putil.c 1872 static char codepage[64]; local
    [all...]
  /external/icu4c/common/
ucnv_bld.h 71 int32_t codepage; /* +64: 4 codepage # (now IBM-$codepage) */ member in struct:UConverterStaticData
76 int8_t minBytesPerChar; /* +70: 1 Minimum # bytes per char in this codepage */
77 int8_t maxBytesPerChar; /* +71: 1 Maximum # bytes output per UChar in this codepage */
207 int8_t subCharLen; /* length of the codepage specific character sequence */
217 uint8_t charErrorBuffer[UCNV_ERROR_BUFFER_LENGTH]; /* codepage output from Error functions */
putil.cpp 1905 static char codepage[64]; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ncp_fs.h 103 unsigned char codepage[NCP_IOCSNAME_LEN+1]; member in struct:ncp_nls_ioctl
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ncp_fs.h 103 unsigned char codepage[NCP_IOCSNAME_LEN+1]; member in struct:ncp_nls_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ncp_fs.h 103 unsigned char codepage[NCP_IOCSNAME_LEN+1]; member in struct:ncp_nls_ioctl
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.cpp 125 static char *extractBytes(const UnicodeString &source, const char *codepage, int32_t &length)
130 length = source.extract(0, sLength, NULL, codepage);
134 source.extract(0, sLength, bytes, codepage);
152 char codepage[64]; local
154 u_UCharsToChars(eSplit[0].getBuffer(), codepage, cpLength);
155 codepage[cpLength] = '\0';
160 char *bytes = extractBytes(testString, codepage, byteLength);
  /external/icu4c/test/intltest/
csdetest.cpp 137 static char *extractBytes(const UnicodeString &source, const char *codepage, int32_t &length)
142 length = source.extract(0, sLength, NULL, codepage);
146 source.extract(0, sLength, bytes, codepage);
164 char codepage[64]; local
166 u_UCharsToChars(eSplit[0].getBuffer(), codepage, cpLength);
167 codepage[cpLength] = '\0';
172 char *bytes = extractBytes(testString, codepage, byteLength);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysevents.c 100 static int codepage; variable
673 codepage = GetCodePage();
784 codepage = GetCodePage();
850 return MultiByteToWideChar(codepage, 0, (LPCSTR) chars, 1, wchars, wsize);
  /external/chromium_org/third_party/sqlite/src/src/
os_win.c 218 ** current codepage settings for file apis.
226 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; local
228 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
233 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
243 ** user's Ansi codepage.
251 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; local
253 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
258 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,
    [all...]
  /external/kernel-headers/original/linux/
msdos_fs.h 206 unsigned short codepage; /* Codepage for shortname conversions */ member in struct:fat_mount_options
248 struct nls_table *nls_disk; /* Codepage used on disk */
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 31361 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; local
31386 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 33082 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; local
33112 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; local
    [all...]
  /external/sqlite/dist/
sqlite3.c 33110 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; local
33140 int codepage = osAreFileApisANSI() ? CP_ACP : CP_OEMCP; local
    [all...]

Completed in 1144 milliseconds