Searched defs:unicode (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/
H A Dunicoderange.cpp63 bool UnicodeRange::contains(gchar unicode){ argument
65 if (static_cast<gunichar>(unicode) == this->unichars[i]){
71 unival = g_utf8_get_char (&unicode);
H A Dsp-glyph.h41 Glib::ustring unicode; member in class:SPGlyph
/inkscape/src/ui/dialog/
H A Dsvg-fonts-dialog.h172 add(unicode);
177 Gtk::TreeModelColumn<Glib::ustring> unicode; member in class:Inkscape::UI::Dialog::SvgFontsDialog::GlyphsColumns
/inkscape/src/libcroco/
H A Dcr-tknzr.c514 *Parses an 'unicode' escape sequence defined
516 *unicode ::= \\[0-9a-f]{1,6}[ \n\r\t\f]?
519 *of the unicode escape sequence. Must *NOT* be deleted by
522 *of the unicode escape sequence. Must *NOT* be deleted by the caller.
537 guint32 unicode = 0; local
560 for (occur = 0, unicode = 0; ((cur_char >= '0' && cur_char <= '9')
576 unicode = unicode * 16 + cur_char_val;
584 *a_unicode = unicode;
599 *escape ::= {unicode}|\\[
[all...]

Completed in 461 milliseconds