/inkscape/src/extension/ |
H A D | init.cpp | 298 GError *err; local 299 GDir *directory = g_dir_open(dirname, 0, &err);
|
/inkscape/src/extension/internal/filter/ |
H A D | filter-file.cpp | 55 GError *err; local 56 GDir *directory = g_dir_open(dirname, 0, &err);
|
/inkscape/src/io/ |
H A D | uristream.cpp | 109 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 D | sweep-tree.cpp | 256 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 D | PathOutline.cpp | 1344 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 D | piecewise.cpp | 182 SBasis err = compose( foginv, g01) - f; local 184 if ( err.tailError(0) < zero ){
|
H A D | sbasis-math.cpp | 164 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 D | sbasis-geometric.cpp | 467 double quad_result, err; local 471 GSL_INTEG_GAUSS21, w, &quad_result, &err); 473 abs_error += err;
|
/inkscape/src/ui/dialog/ |
H A D | font-substitution.cpp | 244 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 D | symbols.cpp | 598 GError *err = 0; local 599 GDir *dir = g_dir_open( (*it).c_str(), 0, &err );
|
H A D | swatches.cpp | 539 GError *err = 0; local 540 GDir *directory = g_dir_open(dirname, 0, &err);
|
/inkscape/packaging/macosx/ScriptExec/ |
H A D | main.c | 148 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 D | javafx-out.cpp | 64 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 D | pov-out.cpp | 58 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 D | shortcuts.cpp | 222 GError *err = 0; local 223 GDir *directory = g_dir_open(dirname, 0, &err);
|
H A D | color-profile.cpp | 822 GError *err = 0; local 823 GDir *dir = g_dir_open(it->c_str(), 0, &err);
|
/inkscape/src/util/ |
H A D | ziptool.cpp | 733 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 D | geom-pathstroke.cpp | 804 double const err = Geom::dot(diff, diff); local 806 if (err < tol) {
|
/inkscape/ |
H A D | buildtool.cpp | 3664 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...] |