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

123456

/external/llvm/unittests/Support/
H A DUnicodeTest.cpp15 namespace unicode { namespace in namespace:llvm::sys
91 } // namespace unicode
/external/llvm/include/llvm/Support/
H A DUnicode.h22 namespace unicode { namespace in namespace:llvm::sys
38 /// http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf
63 } // namespace unicode
/external/chromium_org/third_party/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/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/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-normalize-private.hh57 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...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize-private.hh57 hb_unicode_funcs_t *unicode; member in struct:hb_ot_shape_normalize_context_t
H A Dhb-utf-private.hh43 hb_codepoint_t *unicode,
101 *unicode = c;
105 *unicode = replacement;
112 hb_codepoint_t *unicode,
119 if (likely (next (text, end, unicode, replacement) == end))
122 *unicode = replacement;
142 hb_codepoint_t *unicode,
149 *unicode = c;
160 *unicode = (c << 10) + l - ((0xD800u << 10) - 0x10000u + 0xDC00u);
167 *unicode
41 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
110 prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
140 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
172 prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
213 next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
230 prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
[all...]
H A Dhb-fallback-shape.cc114 hb_unicode_funcs_t *unicode = buffer->unicode; local
120 if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {
H A Dhb-ucdn.cc19 #include "hb-unicode-private.hh"
154 hb_ucdn_combining_class(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
157 return (hb_unicode_combining_class_t) ucdn_get_combining_class(unicode);
161 hb_ucdn_eastasian_width(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
164 int w = ucdn_get_east_asian_width(unicode);
169 hb_ucdn_general_category(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
172 return (hb_unicode_general_category_t)ucdn_get_general_category(unicode);
176 hb_ucdn_mirroring(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
179 return ucdn_mirror(unicode);
183 hb_ucdn_script(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
[all...]
/external/llvm/lib/Support/
H A DUnicode.cpp21 namespace unicode { namespace in namespace:llvm::sys
234 // http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf
364 } // namespace unicode
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp48 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) argument
50 if ((FX_DWORD)unicode < 0x80) {
51 m_Buffer.AppendChar(unicode);
53 if ((FX_DWORD)unicode >= 0x80000000) {
57 if ((FX_DWORD)unicode < 0x800) {
59 } else if ((FX_DWORD)unicode < 0x10000) {
61 } else if ((FX_DWORD)unicode < 0x200000) {
63 } else if ((FX_DWORD)unicode < 0x4000000) {
70 int code = unicode;
/external/fonttools/Lib/fontTools/misc/
H A Dpy23.py11 unicode
13 unicode = str variable
/external/fonttools/Tools/fontTools/misc/
H A Dpy23.py11 unicode
13 unicode = str variable
/external/chromium_org/third_party/skia/third_party/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/chromium_org/remoting/host/linux/
H A Dunicode_to_keysym.cc37 uint32_t unicode; member in struct:remoting::__anon9809::CodePair
41 // binary search. There might be multiple present keysyms for the same unicode
43 // have 1-to-1 mapping between keysym and unicode), but includes some
818 bool CompareCodePair(const CodePair& pair, uint32_t unicode) { argument
819 return pair.unicode < unicode;
824 void GetKeySymsForUnicode(uint32_t unicode, std::vector<uint32_t>* keysyms) { argument
828 if ((unicode >= 0x0020 && unicode <= 0x007e) ||
829 (unicode >
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzFaceCoreText.cpp48 static hb_bool_t getGlyph(hb_font_t* hbFont, void* fontData, hb_codepoint_t unicode, hb_codepoint_t variationSelector, hb_codepoint_t* glyph, void* userData) argument
54 U16_APPEND_UNSAFE(characters, length, unicode);
/external/chromium_org/third_party/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/chromium_org/third_party/icu/source/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] */

Completed in 3720 milliseconds

123456