Searched defs:err (Results 1 - 19 of 19) sorted by relevance

/inkscape/src/extension/
H A Dinit.cpp298 GError *err; local
299 GDir *directory = g_dir_open(dirname, 0, &err);
/inkscape/src/extension/internal/filter/
H A Dfilter-file.cpp55 GError *err; local
56 GDir *directory = g_dir_open(dirname, 0, &err);
/inkscape/src/io/
H A Duristream.cpp109 Glib::ustring err = "UriInputStream cannot open file "; local
110 err += cpath;
112 throw StreamException(err);
142 Glib::ustring err = "UriInputStream passed NULL"; local
143 throw StreamException(err);
293 Glib::ustring err = "UriOutputStream given null file "; local
294 throw StreamException(err);
326 Glib::ustring err = "UriOutputStream cannot open file "; local
327 err += cpath;
328 throw StreamException(err);
418 Glib::ustring err = "ERROR writing to file "; local
[all...]
/inkscape/src/livarot/
H A Dsweep-tree.cpp256 int err = AVLTree::Remove(tempR, rebalance); local
270 return err;
302 int err = local
306 return err;
462 int err = local
466 return err;
H A DPathOutline.cpp1344 const double err = dot(diff,diff); local
1345 if (err <= tol ) { // tolerance is given as a quadratic value, no need to use tol*tol here
1346 // printf("%f <= %f %i\n",err,tol,lev);
1483 const double err = (dot(diff,diff)); local
1484 if (err <= tol) // tolerance is given as a quadratic value, no need to use tol*tol here
/inkscape/src/2geom/
H A Dpiecewise.cpp182 SBasis err = compose( foginv, g01) - f; local
184 if ( err.tailError(0) < zero ){
H A Dsbasis-math.cpp164 double err = (f - multiply(sqrtf, sqrtf)).tailError(0); local
165 if (err<tol){
240 double d = x.tailError(0),err=1; local
242 for (int i=1; i<=2*order; i++) err*=d/i;
244 if (err<tol){
249 err+=xk.tailError(order);
254 err+=xk.tailError(order);
258 if (err<tol){
H A Dsbasis-geometric.cpp467 double quad_result, err; local
471 GSL_INTEG_GAUSS21, w, &quad_result, &err);
473 abs_error += err;
/inkscape/src/ui/dialog/
H A Dfont-substitution.cpp244 Glib::ustring err = Glib::ustring::compose( local
246 setErrors.insert(err);
253 Glib::ustring err = (*setIter); local
254 out->append(err + "\n");
255 g_warning("%s", err.c_str());
H A Dsymbols.cpp598 GError *err = 0; local
599 GDir *dir = g_dir_open( (*it).c_str(), 0, &err );
H A Dswatches.cpp539 GError *err = 0; local
540 GDir *directory = g_dir_open(dirname, 0, &err);
/inkscape/packaging/macosx/ScriptExec/
H A Dmain.c148 OSErr err = noErr; local
154 err += AEInstallEventHandler(kCoreEventClass, kAEQuitApplication,
157 err += AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments,
160 err += AEInstallEventHandler(kCoreEventClass, kAEOpenApplication,
164 err += AEInstallEventHandler(kCoreEventClass, kAEReopenApplication,
168 err += InstallEventHandler(GetApplicationEventTarget(),
172 if (err) RedFatalAlert("\pInitialization Error",
176 if (err = LoadMenuBar(NULL)) RedFatalAlert("\pInitialization Error",
248 OSErr err = ExecuteScript(scriptPath, &pid); local
264 OSErr err local
407 OSErr err; local
480 OSErr err = noErr; local
551 OSStatus err; variable
[all...]
/inkscape/src/extension/internal/
H A Djavafx-out.cpp64 static void err(const char *fmt, ...) function in namespace:Inkscape::Extension::Internal
67 g_log(NULL, G_LOG_LEVEL_WARNING, "javafx-out err: ");
364 err("Unknown gradient type for '%s'\n", jfxid.c_str());
887 err("Could open JavaFX file '%s' for writing", filename_utf8);
H A Dpov-out.cpp58 static void err(const char *fmt, ...) function in namespace:Inkscape::Extension::Internal
61 g_log(NULL, G_LOG_LEVEL_WARNING, "Pov-out err: ");
401 err("logical error, because pathv_to_linear_and_cubic_beziers was used");
411 err("Too many segments");
624 err("Could not output curves for %s", filename_utf8);
633 err("Could not write header for %s", filename_utf8);
641 err("Could not write footer for %s", filename_utf8);
/inkscape/src/
H A Dshortcuts.cpp222 GError *err = 0; local
223 GDir *directory = g_dir_open(dirname, 0, &err);
H A Dcolor-profile.cpp822 GError *err = 0; local
823 GDir *dir = g_dir_open(it->c_str(), 0, &err);
/inkscape/src/util/
H A Dziptool.cpp733 int err = buildHuffman(&lencode, lengths, nlen); local
734 if (err < 0 || (err > 0 && nlen - lencode.count[0] != 1))
740 err = buildHuffman(&distcode, lengths + nlen, ndist);
741 if (err < 0 || (err > 0 && nlen - lencode.count[0] != 1))
/inkscape/src/helper/
H A Dgeom-pathstroke.cpp804 double const err = Geom::dot(diff, diff); local
806 if (err < tol) {
/inkscape/
H A Dbuildtool.cpp3664 String err; local
3668 err = "unexpected quantifier"; break;
3670 err = "unbalanced brackets"; break;
3672 err = "internal error"; break;
3674 err = "invald character set"; break;
3676 err = "invalid meta character"; break;
3678 err = "unknown error"; break;
3680 error("regex failure (%s) while parsing [%s]!\n", err.c_str(), pattern.c_str());
10294 buildtool::String out, err;
10295 bool ret = make.executeCommand("gcc xx.cpp", "", out, err);
[all...]

Completed in 377 milliseconds