Searched defs:retval (Results 1 - 20 of 20) sorted by relevance

/inkscape/src/helper/
H A Dgnome-utils.cpp29 gchar *retval; local
55 retval = (gchar *)g_malloc(q - p + 2);
56 strncpy(retval, p, q - p + 1);
57 retval[q - p + 1] = '\0';
59 result = g_list_prepend(result, retval);
/inkscape/src/libuemf/
H A Dsymbol_convert.c885 int retval; local
887 retval=CVTSYM;
890 retval=CVTWDG;
893 retval=CVTZDG;
896 retval=CVTNON;
898 return retval;
920 int retval; local
922 retval=isNon(font);
923 switch(retval){
927 default: return(retval); //n
[all...]
H A Duwmf.c1713 uint32_t retval; local
1715 retval = value;
1718 retval = value;
1723 retval = value;
1725 return(retval);
/inkscape/src/svg/
H A Dsvg-length-test.h151 unsigned int retval = sp_svg_number_write_de( buf, sizeof(buf), precTests[i].val, precTests[i].prec, precTests[i].minexp ); local
152 TSM_ASSERT_EQUALS("Number of chars written", retval, strlen(precTests[i].str));
154 TSM_ASSERT_EQUALS(std::string("Buffer overrun ") + precTests[i].str, '\xCC', buf[retval + 1]);
/inkscape/src/io/
H A Dsys.cpp134 int retval = -1; local
144 retval = ::mkdir(filename, S_IRWXU | S_IRGRP | S_IXGRP);
154 retval = g_mkdir( utf8name, 0 );
159 return retval;
/inkscape/src/2geom/
H A Dpathvector.cpp242 boost::optional<PathVectorTime> retval; local
250 retval = PathVectorTime(i, pos.curve_index, pos.t);
257 return retval;
262 std::vector<PathVectorTime> retval; local
270 retval.clear();
273 retval.push_back(PathVectorTime(i, pos.curve_index, pos.t));
280 return retval;
H A Dd2.h526 OptRect retval; local
531 retval = Rect(*xint, *yint);
534 return retval;
537 OptRect retval; local
541 retval = Rect(*xint, *yint);
543 return retval;
/inkscape/src/extension/param/
H A Dparameter.cpp361 Inkscape::XML::Node * retval; local
362 retval = parent->document()->createElement("inkscape:extension-param");
363 retval->setAttribute("name", _name);
365 parent->appendChild(retval);
366 Inkscape::GC::release(retval);
367 return retval;
/inkscape/src/display/
H A Dcurve.cpp391 boost::optional<Geom::Point> retval; local
394 retval = _pathv.front().initialPoint();
397 return retval;
409 boost::optional<Geom::Point> retval; local
415 retval = _pathv[1].initialPoint();
417 retval = _pathv[0].initialPoint();
420 retval = _pathv.front()[0].finalPoint();
424 return retval;
433 boost::optional<Geom::Point> retval; local
438 retval
454 boost::optional<Geom::Point> retval; local
[all...]
H A Dsp-canvas.cpp1308 int retval = FALSE; local
1357 return retval;
1388 return retval; // current item did not change
1404 retval = emitEvent(&new_event);
1413 return retval;
1428 retval = emitEvent(&new_event);
1431 return retval;
1438 int retval = FALSE; local
1444 return retval;
1477 retval
[all...]
/inkscape/src/extension/
H A Dextension.cpp262 bool retval = true; local
278 retval = false;
283 retval = false;
287 retval = false;
291 retval = false;
295 retval = false;
303 retval = false;
307 if (retval)
309 return retval;
764 Gtk::VBox * retval local
817 Gtk::VBox * retval = Gtk::manage(new Gtk::VBox()); local
837 Gtk::VBox * retval = Gtk::manage(new Gtk::VBox()); local
[all...]
/inkscape/src/
H A Dstyle-internal.cpp1709 Glib::ustring retval = name + ":url(" + uri + ");"; local
1711 return retval;
H A Dmain.cpp1278 int retval = 0; local
1298 retval = -1; // If the while loop completes, this remains -1
1299 while (fgets(useme, sizeLeft, stdin) && retval) {
1302 retval = 0;
1326 retval = -1;
1330 retval = 1; // not sure why. But this was the previous return value
1336 retval = -1;
1341 } while (linedata && (retval == 0));
1344 return retval;
/inkscape/src/libnrtype/
H A DFontInstance.cpp721 int retval; local
725 retval = GetGlyphOutline (parent->hScreenDC, 0x2212, GGO_NATIVE | GGO_UNHINTED, &metrics, 0, NULL, &identity);
727 if( retval <= 0 )
728 retval = GetGlyphOutline (parent->hScreenDC, '-', GGO_NATIVE | GGO_UNHINTED, &metrics, 0, NULL, &identity);
730 if( retval > 0 ) {
736 retval = GetGlyphOutline (parent->hScreenDC, 0x092E, GGO_NATIVE | GGO_UNHINTED, &metrics, 0, NULL, &identity);
737 if( retval > 0 ) {
H A DLayout-TNG-Compute.cpp1170 bool retval = false; local
1171 if ( b.geometry.width == 0 && (a.geometry.width > 0))retval = true;
1172 return (retval);
/inkscape/src/live_effects/
H A Dlpe-knot.cpp55 Geom::Path::size_type retval = path.size_open(); local
59 retval = path.size_closed();
62 return retval;
/inkscape/src/libgdl/
H A Dgdl-dock.c993 gboolean retval = TRUE; local
1001 retval = FALSE;
1003 return retval;
/inkscape/src/ui/dialog/
H A Dfiledialogimpl-gtkmm.cpp576 bool retval = setFileName(fileName); local
578 return retval;
H A Dswatches.cpp391 bool retval = !(*str == 0 || *str == ' ' || *str == '\t' || *str == '\r' || *str == '\n'); local
392 return retval;
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp480 gchar * retval = finish_create_shape (doc_interface, error, newNode, (gchar *)"create spiral"); local
485 return retval;

Completed in 105 milliseconds