Searched defs:unicode (Results 1 - 25 of 138) 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/mdnsresponder/mDNSWindows/
H A DWinServices.cpp30 BSTR unicode; local
32 unicode = NULL;
37 unicode = (BSTR) malloc( (size_t)( n * sizeof( wchar_t ) ) );
38 if( !unicode )
44 n = MultiByteToWideChar( CP_UTF8, 0, inUTF8, -1, unicode, n );
47 inObject = unicode;
62 if( unicode )
64 free( unicode );
/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-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
H A Dutil.py11 unicode
13 unicode = str variable
31 if isinstance(path, (str, unicode)):
/external/curl/lib/
H A Didn_win32.c97 wchar_t unicode[IDN_MAX_LENGTH]; local
99 unicode, IDN_MAX_LENGTH);
102 *out = Curl_convert_wchar_to_UTF8(unicode);
/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-fallback-shape.cc116 hb_unicode_funcs_t *unicode = buffer->unicode; local
122 if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {
H A Dhb-ucdn.cc19 #include "hb-unicode-private.hh"
166 hb_ucdn_combining_class(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
169 return (hb_unicode_combining_class_t) ucdn_get_combining_class(unicode);
173 hb_ucdn_eastasian_width(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
176 int w = ucdn_get_east_asian_width(unicode);
181 hb_ucdn_general_category(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
184 return (hb_unicode_general_category_t)ucdn_get_general_category(unicode);
188 hb_ucdn_mirroring(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
191 return ucdn_mirror(unicode);
195 hb_ucdn_script(hb_unicode_funcs_t *ufuncs, hb_codepoint_t unicode, argument
[all...]
H A Dhb-utf-private.hh40 hb_codepoint_t *unicode,
98 *unicode = c;
102 *unicode = replacement;
109 hb_codepoint_t *unicode,
116 if (likely (next (text, end, unicode, replacement) == end))
119 *unicode = replacement;
138 hb_codepoint_t *unicode,
145 *unicode = c;
156 *unicode = (c << 10) + l - ((0xD800u << 10) - 0x10000u + 0xDC00u);
163 *unicode
38 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
107 prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
136 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
168 prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
216 next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
228 prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
254 next(const uint8_t *text, const uint8_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement HB_UNUSED) argument
264 prev(const uint8_t *text, const uint8_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
[all...]
H A Dsample.py12 unicode
14 unicode = str variable
17 if not isinstance(s, unicode):
/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/fxcrt/
H A Dfx_basic_utf.cpp46 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) { argument
47 if ((uint32_t)unicode < 0x80) {
48 m_Buffer.AppendChar(unicode);
50 if ((uint32_t)unicode >= 0x80000000) {
54 if ((uint32_t)unicode < 0x800) {
56 } else if ((uint32_t)unicode < 0x10000) {
58 } else if ((uint32_t)unicode < 0x200000) {
60 } else if ((uint32_t)unicode < 0x4000000) {
67 int code = unicode;
/external/pdfium/xfa/fxbarcode/
H A DBC_UtilCodingConvert.cpp20 CFX_WideString unicode = CFX_WideString::FromLocal(src.AsStringC()); local
21 dst = unicode.UTF8Encode();
26 CFX_WideString unicode = CFX_WideString::FromLocal(src.AsStringC()); local
27 CFX_ByteString utf8 = unicode.UTF8Encode();
39 CFX_WideString unicode = CFX_WideString::FromUTF8(utf8.AsStringC()); local
40 dst = CFX_ByteString::FromUnicode(unicode);
46 CFX_WideString unicode = local
48 dst = CFX_ByteString::FromUnicode(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/pdfium/core/fpdfapi/font/
H A Dcpdf_fontencoding.h27 uint32_t FT_CharCodeFromUnicode(int encoding, FX_WCHAR unicode);
31 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode);
51 int CharCodeFromUnicode(FX_WCHAR unicode) const;
53 void SetUnicode(uint8_t charcode, FX_WCHAR unicode) { argument
54 m_Unicodes[charcode] = unicode;
H A Dcpdf_truetypefont.cpp109 uint16_t unicode = kPrefix[j] * 256 + charcode; local
111 FXFT_Get_Char_Index(m_Font.GetFace(), unicode);
162 uint16_t unicode = kPrefix[j] * 256 + charcode; local
163 m_GlyphIndex[charcode] = FXFT_Get_Char_Index(m_Font.GetFace(), unicode);
/external/pdfium/core/fxge/freetype/
H A Dfx_freetype.cpp14 wchar_t unicode) {
34 if (thiscode == (unsigned short)unicode) // found it!
47 if (xyq_search_node(glyph_name, name_offset, child_offset, unicode))
58 /* hard-coded unicode character code. */
102 /* hexadecimal digits, it is a hard-coded unicode character code. */
157 void FXFT_adobe_name_from_unicode(char* glyph_name, wchar_t unicode) { argument
165 if (xyq_search_node(glyph_name, 0, child_offset, unicode))
11 xyq_search_node(char* glyph_name, int name_offset, int table_offset, wchar_t unicode) argument
/external/ImageMagick/MagickCore/
H A Dtoken-private.h105 unicode; local
114 unicode=code;
119 unicode&=utf_info[i].utf_mask;
120 if (unicode < utf_info[i].utf_value)
126 return(unicode);
134 unicode=(unicode << 6) | c;
/external/ImageMagick/coders/
H A Dbraille.c192 unicode = 0,
221 unicode=1;
224 unicode=1;
329 if (unicode)
187 unicode = 0, local
/external/harfbuzz_ng/util/
H A Dhb-fc.cc35 hb_codepoint_t unicode,
53 if (FcCharSetHasChar (cs, unicode) &&
61 *glyph = (var_num << 21) | unicode;
70 *glyph = FcCharSetHasChar (cs, unicode) ? unicode : 0;
33 hb_fc_get_glyph(hb_font_t *font , void *font_data, hb_codepoint_t unicode, hb_codepoint_t variation_selector, hb_codepoint_t *glyph, void *user_data ) argument
/external/mdnsresponder/mDNSWindows/DLLX/
H A DStringServices.cpp158 wchar_t * unicode = NULL; local
181 unicode = new wchar_t[ n ];
189 unicode = NULL;
195 require_action( unicode, exit, err = ERROR_INSUFFICIENT_BUFFER );
199 n = MultiByteToWideChar( CP_UTF8, 0, inString, -1, unicode, n );
205 outString = unicode;
214 if ( unicode != NULL )
218 delete [] unicode;
/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 );

Completed in 1954 milliseconds

123456