Lines Matching refs:string_copy
82 GX_STRING string_copy = *string; in _gx_system_string_width_compressed_font_get() local
89 while (string_copy.gx_string_length > 0) in _gx_system_string_width_compressed_font_get()
92 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_compressed_font_get()
96 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_system_string_width_compressed_font_get()
97 string_copy.gx_string_ptr++; in _gx_system_string_width_compressed_font_get()
98 string_copy.gx_string_length--; in _gx_system_string_width_compressed_font_get()
185 GX_STRING string_copy; in _gx_system_string_width_kerning_font_get() local
199 string_copy = *string; in _gx_system_string_width_kerning_font_get()
202 while (string_copy.gx_string_length > 0) in _gx_system_string_width_kerning_font_get()
205 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_kerning_font_get()
208 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr++); in _gx_system_string_width_kerning_font_get()
209 string_copy.gx_string_length--; in _gx_system_string_width_kerning_font_get()
389 GX_STRING string_copy = *string; in _gx_system_string_width_get_ext() local
396 if (!font || !string_copy.gx_string_ptr) in _gx_system_string_width_get_ext()
404 return _gx_system_string_width_compressed_font_get(font, &string_copy, return_width); in _gx_system_string_width_get_ext()
411 return _gx_system_string_width_kerning_font_get(font, &string_copy, return_width); in _gx_system_string_width_get_ext()
417 while (string_copy.gx_string_length > 0) in _gx_system_string_width_get_ext()
421 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_get_ext()
425 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_system_string_width_get_ext()
426 string_copy.gx_string_ptr++; in _gx_system_string_width_get_ext()
427 string_copy.gx_string_length--; in _gx_system_string_width_get_ext()