Searched defs:utf8 (Results 1 - 3 of 3) sorted by relevance
/inkscape/src/display/ |
H A D | nr-svgfonts.cpp | 53 const char *utf8, 62 return instance->scaled_font_text_to_glyphs(scaled_font, utf8, utf8_len, glyphs, num_glyphs, clusters, num_clusters, flags); 150 const char *utf8, 165 gchar* _utf8 = (gchar*) utf8; 198 _utf8 = (char*) utf8; 52 font_text_to_glyphs_cb( cairo_scaled_font_t *scaled_font, const char *utf8, int utf8_len, cairo_glyph_t **glyphs, int *num_glyphs, cairo_text_cluster_t **clusters, int *num_clusters, cairo_text_cluster_flags_t *flags) argument 149 scaled_font_text_to_glyphs(cairo_scaled_font_t * , const char *utf8, int , cairo_glyph_t **glyphs, int *num_glyphs, cairo_text_cluster_t ** , int * , cairo_text_cluster_flags_t * ) argument
|
/inkscape/src/ui/tools/ |
H A D | text-tool.cpp | 470 static void hex_to_printable_utf8_buf(char const *const ehex, char *utf8) argument 479 guint const len = g_unichar_to_utf8(uv, utf8); 480 utf8[len] = '\0'; 488 char utf8[10]; local 489 hex_to_printable_utf8_buf(tc->uni, utf8); 492 if (utf8[1] == '\0') { 493 switch(utf8[0]) { 494 case '<': strcpy(utf8, "<"); break; 495 case '>': strcpy(utf8, ">"); break; 496 case '&': strcpy(utf8, " [all...] |
/inkscape/src/ |
H A D | text-editing.cpp | 164 char * dump_hexy(const gchar * utf8) 169 for (const char *ptr=utf8; *ptr; ptr++) { 176 Inkscape::Text::Layout::iterator sp_te_replace(SPItem *item, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, gchar const *utf8) argument 180 return sp_te_insert(item, pair.first, utf8); 471 static void insert_into_spstring(SPString *string_item, Glib::ustring::iterator iter_at, gchar const *utf8) argument 474 unsigned char_count = g_utf8_strlen(utf8, -1); 479 string->replace(iter_at, iter_at, utf8); 495 sp_te_insert(SPItem *item, Inkscape::Text::Layout::iterator const &position, gchar const *utf8) argument 497 if (!g_utf8_validate(utf8,-1,NULL)) { 498 g_warning("Trying to insert invalid utf8"); [all...] |
Completed in 16 milliseconds