Searched defs:unicode (Results 1 - 25 of 64) sorted by relevance

123

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_keyboard.h45 * - The 'unicode' translated character is only available when character
52 * if ( (keysym.unicode & 0xFF80) == 0 ) {
53 * ch = keysym.unicode & 0x7F;
63 Uint16 unicode; /**< translated character */ member in struct:SDL_keysym
/external/regex-re2/re2/
H A Dmake_unicode_casefold.py12 import unicode, sys namespace
111 lowergroups, casegroups = unicode.CaseGroups()
116 raise unicode.Error("casefold group too long: %s" % (c,))
119 raise unicode.Error("bad casegroups %d -> %d" % (c[i-1], c[i]))
H A Dmake_unicode_groups.py9 import unicode namespace
97 for name, codes in unicode.Categories().iteritems():
99 for name, codes in unicode.Scripts().iteritems():
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize-private.hh59 hb_unicode_funcs_t *unicode; member in struct:hb_ot_shape_normalize_context_t
H A Dhb-utf-private.hh45 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
43 hb_utf_next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode) argument
76 hb_utf_prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode) argument
118 hb_utf_next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode) argument
142 hb_utf_prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode) argument
178 hb_utf_next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode) argument
187 hb_utf_prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode) argument
[all...]
H A Dhb-ucdn.cc19 #include "hb-unicode-private.hh"
131 hb_ucdn_combining_class(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
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, argument
141 int w = ucdn_get_east_asian_width(unicode);
146 hb_ucdn_general_category(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
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, argument
156 return ucdn_mirror(unicode);
160 hb_ucdn_script(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
[all...]
H A Dhb-glib.cc33 #include "hb-unicode-private.hh"
197 hb_codepoint_t unicode,
201 return (hb_unicode_combining_class_t) g_unichar_combining_class (unicode);
206 hb_codepoint_t unicode,
209 return g_unichar_iswide (unicode) ? 2 : 1;
214 hb_codepoint_t unicode,
219 return (hb_unicode_general_category_t) g_unichar_type (unicode);
224 hb_codepoint_t unicode,
227 g_unichar_get_mirror_char (unicode, &unicode);
196 hb_glib_unicode_combining_class(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
205 hb_glib_unicode_eastasian_width(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
213 hb_glib_unicode_general_category(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
223 hb_glib_unicode_mirroring(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
232 hb_glib_unicode_script(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
[all...]
H A Dhb-icu.cc34 #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,
66 hb_icu_unicode_combining_class(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
75 hb_icu_unicode_eastasian_width(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
94 hb_icu_unicode_general_category(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
145 hb_icu_unicode_mirroring(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
153 hb_icu_unicode_script(hb_unicode_funcs_t *ufuncs HB_UNUSED, hb_codepoint_t unicode, void *user_data HB_UNUSED) argument
[all...]
H A Dhb-buffer-private.hh36 #include "hb-unicode-private.hh"
53 hb_unicode_funcs_t *unicode; /* Unicode functions */ member in struct:hb_buffer_t
H A Dhb-ft.cc65 hb_codepoint_t unicode,
75 *glyph = FT_Face_GetCharVariantIndex (ft_face, unicode, variation_selector);
81 *glyph = FT_Get_Char_Index (ft_face, unicode);
63 hb_ft_get_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t variation_selector, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
H A Dhb-ot-layout-private.hh52 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_unicode_funcs_t *unicode) argument
54 info->unicode_props0() = ((unsigned int) unicode->general_category (info->codepoint)) |
55 (unicode->is_default_ignorable (info->codepoint) ? 0x80 : 0) |
58 info->unicode_props1() = unicode->modified_combining_class (info->codepoint);
H A Dhb-unicode-private.hh36 #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) argument
111 if (unicode == 0x1037) unicode = 0x103A;
113 return _hb_modified_combining_class[combining_class (unicode)];
117 is_variation_selector (hb_codepoint_t unicode) argument
119 return unlikely (hb_in_ranges<hb_codepoint_t> (unicode,
138 * http://unicode
[all...]
/external/harfbuzz/tests/linebreaking/
H A Dharfbuzz-qt.cpp92 char *HB_TextCodec_ConvertFromUnicode(void *codec, const HB_UChar16 *unicode, hb_uint32 length, hb_uint32 *outputLength) argument
94 QByteArray data = reinterpret_cast<QTextCodec *>(codec)->fromUnicode((const QChar *)unicode, length);
/external/freetype/include/freetype/internal/services/
H A Dsvpscmap.h32 * Adobe glyph name to unicode value.
51 * Simple unicode -> glyph index charmap built from font glyph names
56 FT_UInt32 unicode; /* bit 31 set: is glyph variant */ member in struct:PS_UniMap_
99 FT_UInt32 unicode );
103 FT_UInt32 *unicode );
/external/harfbuzz_ng/src/hb-icu-le/
H A Dcmaps.cpp123 LEUnicode16 unicode = (LEUnicode16) unicode32; local
128 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
140 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
142 result = (TTGlyphID) unicode;
144 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
/external/harfbuzz_ng/test/api/
H A Dtest-shape.c58 hb_codepoint_t unicode, hb_codepoint_t variant_selector,
62 switch (unicode) {
57 glyph_func(hb_font_t *font, void *font_data, hb_codepoint_t unicode, hb_codepoint_t variant_selector, hb_codepoint_t *glyph, void *user_data) argument
/external/icu4c/samples/layout/
H A Dcmaps.cpp129 LEUnicode16 unicode = (LEUnicode16) unicode32; local
134 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
146 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
148 result = (TTGlyphID) unicode;
150 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
/external/icu4c/test/intltest/
H A Dconvtest.h22 #include "unicode/utypes.h"
26 #include "unicode/ucnv.h"
40 const UChar *unicode; member in struct:ConversionCase
44 /* UTF-8 version of unicode[unicodeLength] */
/external/icu4c/test/letest/
H A Dcmaps.cpp123 LEUnicode16 unicode = (LEUnicode16) unicode32; local
128 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
140 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
142 result = (TTGlyphID) unicode;
144 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
/external/regex-re2/re2/testing/
H A Dunicode_test.py7 """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
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGFontElement.cpp89 String unicode = glyph->getAttribute(SVGNames::unicodeAttr); local
90 if (unicode.length())
91 m_glyphMap.add(unicode, glyph->buildGlyphIdentifier());
/external/chromium/chrome/browser/chromeos/
H A Dsystem_access.cc146 icu::UnicodeString unicode; local
147 timezone.getID(unicode);
149 UTF16ToUTF8(unicode.getBuffer(), unicode.length(), &id);
/external/chromium/testing/gtest/src/
H A Dgtest-filepath.cc204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
205 const DWORD attributes = GetFileAttributes(unicode);
206 delete [] unicode;
228 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
229 const DWORD attributes = GetFileAttributes(unicode);
230 delete [] unicode;
321 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
322 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
323 delete [] unicode;
/external/gtest/src/
H A Dgtest-filepath.cc204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
205 const DWORD attributes = GetFileAttributes(unicode);
206 delete [] unicode;
228 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
229 const DWORD attributes = GetFileAttributes(unicode);
230 delete [] unicode;
321 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
322 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
323 delete [] unicode;
/external/harfbuzz/tests/shaping/
H A Dmain.cpp206 unsigned short unicode[16]; member in struct:ShapeTable
212 QString str = QString::fromUtf16( s->unicode );
287 const unsigned short *uc = s->unicode;
353 while (s->unicode[0]) {
407 while (s->unicode[0]) {
519 while (s->unicode[0]) {
626 while (s->unicode[0]) {
656 while (s->unicode[0]) {
681 while (s->unicode[0]) {
718 while (s->unicode[
[all...]

Completed in 1476 milliseconds

123