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

1 2 3 4 5 6 7 8 91011>>

  /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)
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);
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);
ListFileUtils.cpp 20 bool ReadNamesFromListFile(LPCWSTR fileName, UStringVector &resultStrings, UINT codePage)
41 if (codePage == CP_UTF8)
48 u = MultiByteToUnicodeString(s, codePage);
  /external/chromium_org/third_party/icu/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);
  /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);
  /external/chromium_org/third_party/icu/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.
  /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.
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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_org/third_party/icu/source/samples/cal/
uprint.h 23 /* Print a ustring to the specified FILE* in the default codepage */
  /external/chromium_org/third_party/icu/source/samples/date/
uprint.h 23 /* Print a ustring to the specified FILE* in the default codepage */
  /external/icu/icu4c/source/samples/cal/
uprint.h 23 /* Print a ustring to the specified FILE* in the default codepage */
  /external/icu/icu4c/source/samples/date/
uprint.h 23 /* Print a ustring to the specified FILE* in the default codepage */
  /external/lzma/CPP/7zip/Archive/Common/
ItemNameUtils.h 14 bool HasTailSlash(const AString &name, UINT codePage);
  /external/chromium_org/third_party/icu/source/common/
unistr_cnv.cpp 65 const char *codepage)
70 doCodepageCreate(codepageData, (int32_t)uprv_strlen(codepageData), codepage);
76 const char *codepage)
81 doCodepageCreate(codepageData, dataLength, codepage);
144 const char *codepage) const
180 // if the codepage is the default, use our cache
182 if (codepage == 0) {
188 } else if (*codepage == 0) {
199 converter = ucnv_open(codepage, &status);
205 if (codepage == 0)
    [all...]
  /external/icu/icu4c/source/common/
unistr_cnv.cpp 65 const char *codepage)
70 doCodepageCreate(codepageData, (int32_t)uprv_strlen(codepageData), codepage);
76 const char *codepage)
81 doCodepageCreate(codepageData, dataLength, codepage);
144 const char *codepage) const
180 // if the codepage is the default, use our cache
182 if (codepage == 0) {
188 } else if (*codepage == 0) {
199 converter = ucnv_open(codepage, &status);
205 if (codepage == 0)
    [all...]

Completed in 1020 milliseconds

1 2 3 4 5 6 7 8 91011>>