Home
last modified time | relevance | path

Searched refs:unicode (Results 1 – 13 of 13) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_utility_unicode_to_utf8.c70 UINT _gx_utility_unicode_to_utf8(ULONG unicode, GX_UBYTE *return_utf8_str, UINT *return_utf8_size) in _gx_utility_unicode_to_utf8() argument
72 if (unicode < 0x0080) in _gx_utility_unicode_to_utf8()
75 return_utf8_str[0] = (GX_UBYTE)unicode; in _gx_utility_unicode_to_utf8()
77 else if (unicode < 0x0800) in _gx_utility_unicode_to_utf8()
80 return_utf8_str[0] = (GX_UBYTE)(0xC0 + (GX_UBYTE)((unicode & 0x7C0) >> 6)); in _gx_utility_unicode_to_utf8()
81 return_utf8_str[1] = (GX_UBYTE)(0x80 + (unicode & 0x3F)); in _gx_utility_unicode_to_utf8()
83 else if (unicode < 0x10000) in _gx_utility_unicode_to_utf8()
86 return_utf8_str[0] = (GX_UBYTE)(0xE0 + (GX_UBYTE)((unicode & 0xF000) >> 12)); in _gx_utility_unicode_to_utf8()
87 return_utf8_str[1] = (GX_UBYTE)(0x80 + (GX_UBYTE)((unicode & 0xFC0) >> 6)); in _gx_utility_unicode_to_utf8()
88 return_utf8_str[2] = (GX_UBYTE)(0x80 + (unicode & 0x3F)); in _gx_utility_unicode_to_utf8()
[all …]
Dgx_utility_bidi_paragraph_reorder.c90 ULONG unicode; in _gx_utility_bidi_buffer_allocate() local
112 unicode = 0; in _gx_utility_bidi_buffer_allocate()
113 _gx_utility_utf8_string_character_get(&text, (GX_CHAR_CODE *)&unicode, GX_NULL); in _gx_utility_bidi_buffer_allocate()
115 switch (unicode) in _gx_utility_bidi_buffer_allocate()
137 _gx_utility_bidi_bracket_pair_get(unicode, &bracket_pair); in _gx_utility_bidi_buffer_allocate()
140 if (bracket_pair.gx_bidi_bracket_pair_open == unicode) in _gx_utility_bidi_buffer_allocate()
/GUIX-v6.2.1/test/example_internal/bidi_text_draw_32bpp/
Dbidi_character_test.c129 GX_CHAR_CODE unicode; in result_compare() local
135 _gx_utility_utf8_string_character_get(&string, &unicode, &glyph_len); in result_compare()
137 if (unicode != output_text[index]) in result_compare()
139 _gx_utility_bidi_mirroring_get((USHORT)unicode, &mirror); in result_compare()
Dreadme_guix_generic.txt78 …gx_canvas_glyphs_draw.c Added support for unicode longer than …
/GUIX-v6.2.1/guix_studio/libs/freetype/include/freetype/internal/services/
Dsvpscmap.h55 FT_UInt32 unicode; /* bit 31 set: is glyph variant */ member
98 FT_UInt32 unicode );
102 FT_UInt32 *unicode );
/GUIX-v6.2.1/test/example_internal/thai_glyph_shaping/
Dnormalization_test.c121 GX_CHAR_CODE unicode; in result_compare() local
125 …_utf8_string_character_get((GX_CONST CHAR **)&utf8_str, GX_STRLEN(utf8_str), &unicode, &glyph_len); in result_compare()
127 if (unicode != nfc[index]) in result_compare()
DNormalizationTest.txt5 # For terms of use, see http://www.unicode.org/terms_of_use.html
8 # For documentation, see http://www.unicode.org/reports/tr44/
/GUIX-v6.2.1/guix_studio/
Dcanonical_normalize.cpp3127 GX_BOOL gx_studio_full_composition_exclusion_test(ULONG unicode) in gx_studio_full_composition_exclusion_test() argument
3133 if ((unicode >= entry->gx_unicode_range_start) && in gx_studio_full_composition_exclusion_test()
3134 (unicode <= entry->gx_unicode_range_end)) in gx_studio_full_composition_exclusion_test()
Dstudiox_util.cpp1558 DWORD unicode; in AddToMap() local
1566 unicode = (*get) & (~0xd800); in AddToMap()
1567 unicode <<= 10; in AddToMap()
1568 unicode += 0x10000; in AddToMap()
1571 unicode += (*get) & (~0xdc00); in AddToMap()
1585 unicode = *get; in AddToMap()
1588 if ((unicode >= 0x20) && TestAndSet(unicode)) in AddToMap()
/GUIX-v6.2.1/common/inc/
Dgx_utility.h337 UINT _gx_utility_unicode_to_utf8(ULONG unicode, GX_UBYTE *return_utf8_str, UINT *return_utf8_siz…
/GUIX-v6.2.1/guix_studio/libs/freetype/include/freetype/internal/
Dpsaux.h1331 FT_CMap_Class unicode; member
/GUIX-v6.2.1/test/example_internal/ml_text_view_32bpp/
Dreadme_guix_generic.txt78 …gx_canvas_glyphs_draw.c Added support for unicode longer than …
/GUIX-v6.2.1/docs/
Drevision_history.txt746 …gx_canvas_glyphs_draw.c Added support for unicode longer than …