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

1 2 3 4 5 6

  /external/chromium_org/third_party/icu/source/test/testdata/
test1.ucm 26 # toUnicode result is fallback direct
29 # toUnicode result is direct non-BMP code point
test3.ucm 33 # toUnicode result is fallback direct
36 # toUnicode result is direct non-BMP code point
52 # toUnicode result is surrogate pair: test real pair, single unit, unassigned
test4.ucm 36 # toUnicode result is fallback direct
39 # toUnicode result is direct non-BMP code point
45 # toUnicode result is surrogate pair: test real pair, single unit, unassigned
test1bmp.ucm 28 # toUnicode result is fallback direct
  /external/icu/icu4c/source/test/testdata/
test1.ucm 26 # toUnicode result is fallback direct
29 # toUnicode result is direct non-BMP code point
test2.ucm 32 # toUnicode result is fallback direct
35 # toUnicode result is direct non-BMP code point
51 # toUnicode result is surrogate pair: test real pair, single unit, unassigned
test3.ucm 33 # toUnicode result is fallback direct
36 # toUnicode result is direct non-BMP code point
52 # toUnicode result is surrogate pair: test real pair, single unit, unassigned
test4.ucm 36 # toUnicode result is fallback direct
39 # toUnicode result is direct non-BMP code point
45 # toUnicode result is surrogate pair: test real pair, single unit, unassigned
test1bmp.ucm 28 # toUnicode result is fallback direct
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
IDNTest.java 119 * {@link java.net.IDN#toUnicode(String)}
124 IDN.toUnicode(null);
130 assertEquals("", IDN.toUnicode(""));
131 assertEquals("www.bcher.de", IDN.toUnicode("www.bcher.de"));
132 assertEquals("www.b\u00FCcher.de", IDN.toUnicode("www.b\u00FCcher.de"));
134 .toUnicode("www.\u65E5\u672C\u5E73.jp"));
135 assertEquals("www.\u65E5\u672C\u5E73.jp", IDN.toUnicode("www\uFF0Exn--gwtq9nb2a\uFF61jp"));
136 assertEquals("www.\u65E5\u672C\u5E73.jp", IDN.toUnicode("www.xn--gwtq9nb2a.jp"));
140 * {@link java.net.IDN#toUnicode(String, int)}
144 assertEquals("", IDN.toUnicode("", IDN.ALLOW_UNASSIGNED))
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
IDNTest.java 35 assertEquals("b\u00fccher", IDN.toUnicode(makePunyString(0)));
38 assertEquals(longInput, IDN.toUnicode(longInput));
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaconf.h 41 int type; // 0 toascii, 1 tounicode
testidna.h 78 const char* toUnicodeName, TestFunc toUnicode);
110 const char* toUnicodeName, TestFunc toUnicode
  /external/icu/icu4c/source/test/intltest/
idnaconf.h 41 int type; // 0 toascii, 1 tounicode
testidna.h 78 const char* toUnicodeName, TestFunc toUnicode);
110 const char* toUnicodeName, TestFunc toUnicode
  /external/chromium_org/chrome/test/chromedriver/
keycode_text_conversion_win.cc 27 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0);
28 // |ToUnicode| converts some non-text key codes like F1 to various
  /external/chromium_org/third_party/icu/source/common/
ucnv_cnv.h 37 * commented out because there are actually two values used in toUnicode tables:
78 * then the toUnicode function will be used and the offsets will be set to -1.
113 * - The toUnicode side must behave and keep state exactly like the
118 * - Continuing a partial match and flushing the toUnicode replay buffer
119 * are handled by pivoting, using the toUnicode and fromUnicode functions.
127 * If the function pointer is NULL, then the toUnicode function will be used.
137 * to indicate that the ucnv.c code shall call the toUnicode function instead
217 * Every converter type must implement toUnicode, fromUnicode, and getNextUChar,
237 UConverterToUnicode toUnicode;
275 * getNextUChar() implementation to indicate to use the converter's toUnicode()
    [all...]
  /external/icu/icu4c/source/common/
ucnv_cnv.h 37 * commented out because there are actually two values used in toUnicode tables:
81 * then the toUnicode function will be used and the offsets will be set to -1.
116 * - The toUnicode side must behave and keep state exactly like the
121 * - Continuing a partial match and flushing the toUnicode replay buffer
122 * are handled by pivoting, using the toUnicode and fromUnicode functions.
130 * If the function pointer is NULL, then the toUnicode function will be used.
140 * to indicate that the ucnv.c code shall call the toUnicode function instead
220 * Every converter type must implement toUnicode, fromUnicode, and getNextUChar,
240 UConverterToUnicode toUnicode;
278 * getNextUChar() implementation to indicate to use the converter's toUnicode()
    [all...]
  /libcore/luni/src/main/java/java/net/
IDN.java 93 public static String toUnicode(String input, int flags) {
94 return NativeIDN.toUnicode(input, flags);
98 * Equivalent to {@code toUnicode(input, 0)}.
103 public static String toUnicode(String input) {
104 return NativeIDN.toUnicode(input, 0);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType0FontDictionary_autogen.cpp 91 SkPdfStream* SkPdfType0FontDictionary::ToUnicode(SkPdfNativeDoc* doc) {
92 SkPdfNativeObject* ret = get("ToUnicode", "");
100 return get("ToUnicode", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType0FontDictionary_autogen.cpp 91 SkPdfStream* SkPdfType0FontDictionary::ToUnicode(SkPdfNativeDoc* doc) {
92 SkPdfNativeObject* ret = get("ToUnicode", "");
100 return get("ToUnicode", "") != NULL;
  /external/chromium_org/third_party/icu/source/io/
ufile.h 30 /* The buffer size for toUnicode calls */
68 UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfFont.h 212 void ToUnicode(const SkDecodedText& textIn, SkUnicodeText* textOut) const {
225 inline unsigned int ToUnicode(unsigned int ch) const {
293 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
320 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
404 fToUnicode = new SkPdfToUnicode(parsed, dict->ToUnicode(parsed));
450 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
454 printf("Type 3 char to unicode: %c\n", ToUnicode(ch));
455 if (ToUnicode(ch) == 'A') {
  /external/icu/icu4c/source/io/
ufile.h 30 /* The buffer size for toUnicode calls */
68 UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */
  /external/skia/experimental/PdfViewer/
SkPdfFont.h 212 void ToUnicode(const SkDecodedText& textIn, SkUnicodeText* textOut) const {
225 inline unsigned int ToUnicode(unsigned int ch) const {
293 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
320 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
404 fToUnicode = new SkPdfToUnicode(parsed, dict->ToUnicode(parsed));
450 return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
454 printf("Type 3 char to unicode: %c\n", ToUnicode(ch));
455 if (ToUnicode(ch) == 'A') {

Completed in 7116 milliseconds

1 2 3 4 5 6