Searched refs:uni (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/
H A Dunicoderange.cpp72 char uni[9] = "00000000"; local
73 uni[8]= '\0';
77 if (val < 10) uni[i] = '0' + val;
78 else uni[i] = 'A'+ val - 10;
94 if (uni[pos]!='?' && uni[pos]!=r.start[p]) found = false;
/inkscape/src/ui/tools/
H A Dtext-tool.h54 gchar uni[9]; member in class:Inkscape::UI::Tools::TextTool
H A Dtext-tool.cpp430 * Insert the character indicated by tc.uni to replace the current selection,
431 * and reset tc.uni/tc.unipos to empty string.
433 * \pre tc.uni/tc.unipos non-empty.
438 && tc->unipos < sizeof(tc->uni)
439 && tc->uni[tc->unipos] == '\0');
442 ss << std::hex << tc->uni;
445 tc->uni[tc->unipos] = '\0';
485 g_return_if_fail(tc->unipos < sizeof(tc->uni)
486 && tc->uni[tc->unipos] == '\0');
489 hex_to_printable_utf8_buf(tc->uni, utf
[all...]

Completed in 46 milliseconds