Searched refs:utf8_text (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/libnrtype/
H A DTextWrapper.h30 char *utf8_text; // source text member in class:text_wrapper
31 gunichar *uni32_text; // ucs4 text computed from utf8_text
40 int utf8_length; // utf8_text length
44 int *uni32_codepoint; // uni32_codepoint[i] is the index in uni32_text corresponding to utf8_text[i]
45 int *utf8_codepoint; // utf8_codepoint[i] is the index in utf8_text of the beginning of uni32_text[i]
73 * Append the specified text to utf8_text and uni32_codepoint.
H A DTextWrapper.cpp23 utf8_text = NULL;
51 if ( utf8_text ) free(utf8_text);
110 char *newdata = static_cast<char*>(realloc(utf8_text, (utf8_length + nlen + 1) * sizeof(char)));
113 utf8_text = newdata;
117 g_warning("Failed to reallocate utf8_text");
130 memcpy(utf8_text + utf8_length, text, nlen * sizeof(char));
132 utf8_text[utf8_length] = 0;
143 char *p = utf8_text;
154 char *p = utf8_text;
[all...]

Completed in 17 milliseconds