HomeSort by relevance Sort by last modified time
    Searched refs:unicode (Results 1 - 25 of 421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/regex-re2/re2/testing/
unicode_test.py 7 """Unittest for the util/regexp/re2/unicode.py module."""
13 from google3.util.regexp.re2 import unicode namespace
16 "unicode", "ucd-5.1.0")
23 self.assertEquals(0x0000, unicode._UInt("0000"))
24 self.assertEquals(0x263A, unicode._UInt("263A"))
25 self.assertEquals(0x10FFFF, unicode._UInt("10FFFF"))
26 self.assertRaises(unicode.InputError, unicode._UInt, "263")
27 self.assertRaises(unicode.InputError, unicode._UInt, "263AAAA"
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
Unicode.h 31 #include <wtf/unicode/icu/UnicodeIcu.h>
33 #include <wtf/unicode/glib/UnicodeGLib.h>
35 #include <wtf/unicode/wince/UnicodeWinCE.h>
37 #include <wtf/unicode/brew/UnicodeBrew.h>
39 #error "Unknown Unicode implementation"
  /external/webkit/Source/WebCore/editing/
SmartReplace.h 32 #include <wtf/unicode/Unicode.h>
  /external/harfbuzz_ng/src/
hb-utf-private.hh 45 hb_codepoint_t *unicode)
54 *unicode = -1;
64 *unicode = -1;
70 *unicode = result;
78 hb_codepoint_t *unicode)
91 *unicode = -1;
102 *unicode = result;
120 hb_codepoint_t *unicode)
131 *unicode = (c << 10) + l - ((0xd800 << 10) - 0x10000 + 0xdc00);
134 *unicode = -1
    [all...]
hb-icu.h 34 #include <unicode/uscript.h>
hb-ucdn.cc 19 #include "hb-unicode-private.hh"
131 hb_ucdn_combining_class(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode,
134 return (hb_unicode_combining_class_t) ucdn_get_combining_class(unicode);
138 hb_ucdn_eastasian_width(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode,
141 int w = ucdn_get_east_asian_width(unicode);
146 hb_ucdn_general_category(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode,
149 return (hb_unicode_general_category_t)ucdn_get_general_category(unicode);
153 hb_ucdn_mirroring(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode,
156 return ucdn_mirror(unicode);
160 hb_ucdn_script(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode,
    [all...]
hb-unicode.h 45 /* Unicode Character Database property: General_Category (gc) */
82 /* Note: newer versions of Unicode may add new values. Clients should be ready to handle
86 /* Unicode Character Database property: Canonical_Combining_Class (ccc) */
223 hb_codepoint_t unicode,
226 hb_codepoint_t unicode,
229 hb_codepoint_t unicode,
232 hb_codepoint_t unicode,
235 hb_codepoint_t unicode,
251 * @ufuncs: Unicode function structure
256 * Fully decompose @u to its Unicode compatibility decomposition. The codepoints of the decomposition will be written to @decomposed
    [all...]
hb-icu.cc 34 #include "hb-unicode-private.hh"
36 #include <unicode/uchar.h>
37 #include <unicode/unorm.h>
38 #include <unicode/ustring.h>
39 #include <unicode/uversion.h>
67 hb_codepoint_t unicode,
71 return (hb_unicode_combining_class_t) u_getCombiningClass (unicode);
76 hb_codepoint_t unicode,
79 switch (u_getIntPropertyValue(unicode, UCHAR_EAST_ASIAN_WIDTH))
95 hb_codepoint_t unicode,
    [all...]
hb-unicode-private.hh 36 #include "hb-unicode.h"
75 inline return_type name (hb_codepoint_t unicode) { return func.name (this, unicode, user_data.name); }
108 modified_combining_class (hb_codepoint_t unicode)
111 if (unicode == 0x1037) unicode = 0x103A;
113 return _hb_modified_combining_class[combining_class (unicode)];
117 is_variation_selector (hb_codepoint_t unicode)
119 return unlikely (hb_in_ranges<hb_codepoint_t> (unicode,
127 * Note that as of Oct 2012 (Unicode 6.2), U+180E MONGOLIAN VOWEL SEPARATO
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
VerticalTextMap.h 33 #include <wtf/unicode/CharacterNames.h>
  /external/webkit/Source/WebKit/android/icu/unicode/
ucnv.h 31 #include <icu4c/common/unicode/ucnv.h>
ucnv.cpp 36 #include <icu4c/common/unicode/ucnv.h>
  /external/qemu/distrib/sdl-1.2.15/test/
checkkeys.c 65 if ( sym->unicode ) {
67 if ( sym->unicode < ' ' ) {
68 printf(" (^%c)", sym->unicode+'@');
70 #ifdef UNICODE
71 printf(" (%c)", sym->unicode);
74 if ( !(sym->unicode & 0xFF00) )
75 printf(" (%c)", sym->unicode);
77 printf(" (0x%X)", sym->unicode);
115 /* Enable UNICODE translation for keyboard input */
  /external/webkit/Source/WebCore/platform/text/
Hyphenation.h 30 #include <wtf/unicode/Unicode.h>
TextEncodingRegistry.h 31 #include <wtf/unicode/Unicode.h>
  /external/webkit/Source/WebCore/platform/text/mac/
ShapeArabic.h 31 #include <unicode/ushape.h>
  /external/webkit/Source/WebCore/rendering/
break_lines.h 24 #include <wtf/unicode/Unicode.h>
  /external/freetype/src/psnames/
psmodule.c 40 /* Return the Unicode value corresponding to a given glyph. Note that */
49 /* hard-coded unicode character code. */
101 /* hexadecimal digits, it is a hard-coded unicode character code. */
166 /* ft_qsort callback to sort the unicode map */
173 FT_UInt32 unicode1 = BASE_GLYPH( map1->unicode );
174 FT_UInt32 unicode2 = BASE_GLYPH( map2->unicode );
180 if ( map1->unicode > map2->unicode )
182 else if ( map1->unicode < map2->unicode )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 237 Uint16 unicode = 0; local
244 unicode = destbuf[0];
245 unicode <<= 8;
246 unicode |= destbuf[1];
248 unicode = buf[0];
252 switch (unicode) {
262 unicode = 0;
266 unicode = '\r';
272 return unicode;
  /external/webkit/LayoutTests/fast/encoding/resources/
char-decoding-utils.js 34 function testDecode(charsetName, characterSequence, unicode)
36 shouldBe("decode('" + charsetName + "', '" + characterSequence + "')", "'" + unicode + "'");
43 testDecode(inputData.encodings[i], inputData.encoded[j], inputData.unicode[j]);
char-encoding-utils.js 1 function encode(charset, unicode)
4 return results[charset][unicode];
64 function testEncode(charsetName, unicode, characterSequence)
67 unicodes.push(unicode);
  /external/icu4c/test/hdrtst/
Makefile.in 12 ## unicode/uchar.h - 0
13 ## unicode/uchriter.h - 0
14 ## unicode/ucnv.h - 0
34 DIRS=$(prefix)/include/unicode
66 @FAIL=0;for file in `ls $(prefix)/include/unicode/*.h | fgrep -v -f $(srcdir)/pfiles.txt`; do \
68 echo "$@ unicode/$$incfile.h" ; \
69 echo '#include "'unicode/$$incfile'.h"' > ht_$$incfile.cpp ; \
87 file=unicode/$$stub ; \
90 echo "$@ unicode/$$incfile.h" ; \
91 echo '#include "'unicode/$$incfile'.h"' > ht_$$incfile.cpp ;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_wsh.py 46 if isinstance(line, unicode):
  /external/qemu/android/
charmap.h 82 /* Maps given unicode key character into a keycode and adds mapped keycode into
89 unsigned int unicode,
  /external/webkit/Source/WebCore/html/parser/
HTMLParserIdioms.h 29 #include <wtf/unicode/Unicode.h>

Completed in 421 milliseconds

1 2 3 4 5 6 7 8 91011>>