Home
last modified time | relevance | path

Searched refs:code_list (Results 1 – 4 of 4) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_utility_thai_glyph_shaping.c89 GX_CHAR_CODE *code_list; in _gx_utility_thai_utf8_to_unicode() local
122 code_list = (GX_CHAR_CODE *)_gx_system_memory_allocator(sizeof(GX_CHAR_CODE) * code_count); in _gx_utility_thai_utf8_to_unicode()
123 if (!code_list) in _gx_utility_thai_utf8_to_unicode()
137 code_list[code_count++] = 0xe4d; in _gx_utility_thai_utf8_to_unicode()
138 code_list[code_count++] = 0xe32; in _gx_utility_thai_utf8_to_unicode()
142 code_list[code_count++] = code_point; in _gx_utility_thai_utf8_to_unicode()
146 *returned_code_list = code_list; in _gx_utility_thai_utf8_to_unicode()
298 GX_CHAR_CODE *code_list; in _gx_utility_thai_glyph_shaping() local
310 status = _gx_utility_thai_utf8_to_unicode(string, &code_list, &code_count); in _gx_utility_thai_glyph_shaping()
314 _gx_utility_thai_glyph_class_type_get(code_list[0], &type); in _gx_utility_thai_glyph_shaping()
[all …]
Dgx_canvas_glyphs_draw.c282 GX_CHAR_CODE *code_list = GX_NULL; in _gx_canvas_compressed_glyphs_draw() local
287 ret = _gx_utility_thai_glyph_shaping(string, &code_list, &code_count); in _gx_canvas_compressed_glyphs_draw()
303 if (code_list) in _gx_canvas_compressed_glyphs_draw()
307 char_val = code_list[index++]; in _gx_canvas_compressed_glyphs_draw()
462 GX_CHAR_CODE *code_list = GX_NULL; in _gx_canvas_generic_glyphs_draw() local
467 ret = _gx_utility_thai_glyph_shaping(string, &code_list, &code_count); in _gx_canvas_generic_glyphs_draw()
482 if (code_list) in _gx_canvas_generic_glyphs_draw()
486 char_val = code_list[index++]; in _gx_canvas_generic_glyphs_draw()
577 if (code_list) in _gx_canvas_generic_glyphs_draw()
579 _gx_system_memory_free((void *)code_list); in _gx_canvas_generic_glyphs_draw()
/GUIX-v6.2.1/guix_studio/
Dcanonical_normalize.cpp3353 static UINT gx_studio_unicode_canonical_decompress(GX_CANONICAL_CONTEXT *context, ULONG *code_list,… in gx_studio_unicode_canonical_decompress() argument
3362 code_point = code_list[index]; in gx_studio_unicode_canonical_decompress()
Dresource_gen.cpp2070 ULONG *code_list; in MakeAdjustedThaiString() local
2080 if (_gx_utility_thai_glyph_shaping(utf8str, &code_list, &code_count) == GX_SUCCESS) in MakeAdjustedThaiString()
2087 … _gx_utility_unicode_to_utf8(code_list[index], (GX_UBYTE *)(adjusted_string + count), &glyph_len); in MakeAdjustedThaiString()
2091 _gx_system_memory_free(code_list); in MakeAdjustedThaiString()