Home
last modified time | relevance | path

Searched refs:al_utf8_width (Results 1 – 5 of 5) sorted by relevance

/dports/devel/allegro5/allegro5-5.2.7.0/src/
H A Dutf8.c373 (*pos) += al_utf8_width(c); in al_ustr_get_next()
430 sz = al_utf8_width(c); in al_ustr_insert_chr()
534 w = al_utf8_width(c); in al_ustr_remove_chr()
618 oldw = al_utf8_width(oldc); in al_ustr_set_chr()
619 neww = al_utf8_width(c); in al_ustr_set_chr()
748 pos += al_utf8_width(c); in al_ustr_find_set()
802 pos += al_utf8_width(c); in al_ustr_find_cset()
988 size_t al_utf8_width(int32_t c) in al_utf8_width() function
/dports/devel/allegro5/allegro5-5.2.7.0/examples/
H A Dex_utf8.c351 CHECK(al_utf8_width(0x000000) == 1); in t17()
352 CHECK(al_utf8_width(0x00007f) == 1); in t17()
353 CHECK(al_utf8_width(0x000080) == 2); in t17()
354 CHECK(al_utf8_width(0x0007ff) == 2); in t17()
355 CHECK(al_utf8_width(0x000800) == 3); in t17()
356 CHECK(al_utf8_width(0x00ffff) == 3); in t17()
357 CHECK(al_utf8_width(0x010000) == 4); in t17()
358 CHECK(al_utf8_width(0x10ffff) == 4); in t17()
361 CHECK(al_utf8_width(0x110000) == 0); in t17()
362 CHECK(al_utf8_width(0xffffff) == 0); in t17()
H A Dnihgui.cpp815 cursor_pos += al_utf8_width(event.unichar); in on_key_down()
/dports/devel/allegro5/allegro5-5.2.7.0/addons/native_dialog/
H A Dgtk_filesel.c127 end += al_utf8_width(c); in create_gtk_file_dialog()
/dports/devel/allegro5/allegro5-5.2.7.0/include/allegro5/
H A Dutf8.h134 AL_FUNC(size_t, al_utf8_width, (int32_t c));