Searched refs:out_file (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/extension/
H A Ddependency.h65 friend std::ostream & operator<< (std::ostream &out_file, const Dependency & in_dep);
68 std::ostream & operator<< (std::ostream &out_file, const Dependency & in_dep);
H A Ddependency.cpp253 operator<< (std::ostream &out_file, const Dependency & in_dep) argument
255 out_file << _("Dependency:") << '\n';
256 out_file << _(" type: ") << _(in_dep._type_str[in_dep._type]) << '\n';
257 out_file << _(" location: ") << _(in_dep._location_str[in_dep._location]) << '\n';
258 out_file << _(" string: ") << in_dep._string << '\n';
261 out_file << _(" description: ") << _(in_dep._description) << '\n';
264 out_file << std::flush;
266 return out_file;
/inkscape/src/2geom/
H A Dpolynomial.h232 inline std::ostream &operator<< (std::ostream &out_file, const Poly &in_poly) { argument
234 out_file << "0";
238 out_file << "" << in_poly[i] << "*x";
239 out_file << " + ";
241 out_file << "" << in_poly[i] << "*x^" << i;
242 out_file << " + ";
244 out_file << in_poly[i];
248 return out_file;
H A Daffine.h188 inline std::ostream &operator<< (std::ostream &out_file, const Geom::Affine &m) { argument
189 out_file << "A: " << m[0] << " C: " << m[2] << " E: " << m[4] << "\n";
190 out_file << "B: " << m[1] << " D: " << m[3] << " F: " << m[5] << "\n";
191 return out_file;
H A Dconvex-hull.h324 inline std::ostream &operator<< (std::ostream &out_file, const Geom::ConvexHull &in_cvx) { argument
325 out_file << "ConvexHull(";
327 out_file << in_cvx[i] << ", ";
329 out_file << ")";
330 return out_file;
H A Dsbasis-2d.h340 inline std::ostream &operator<< (std::ostream &out_file, const Linear2d &bo) {
341 out_file << "{" << bo[0] << ", " << bo[1] << "}, ";
342 out_file << "{" << bo[2] << ", " << bo[3] << "}";
343 return out_file;
346 inline std::ostream &operator<< (std::ostream &out_file, const SBasis2d & p) {
348 out_file << p[i] << "s^" << i << " + ";
350 return out_file;
H A Dsolve-bezier.cpp48 inline std::ostream &operator<< (std::ostream &out_file, const std::vector<T> & b) { argument
49 out_file << "[";
51 out_file << b[i] << ", ";
53 return out_file << "]";
H A Dsbasis.h427 inline std::ostream &operator<< (std::ostream &out_file, const Linear &bo) {
428 out_file << "{" << bo[0] << ", " << bo[1] << "}";
429 return out_file;
432 inline std::ostream &operator<< (std::ostream &out_file, const SBasis & p) {
435 out_file << " + ";
437 out_file << p[i] << "s^" << i;
439 return out_file;
H A Dconicsec.h496 inline std::ostream &operator<< (std::ostream &out_file, const xAx &x) { argument
498 out_file << x.c[i] << ", ";
500 return out_file;
H A Dd2.h463 inline std::ostream &operator<< (std::ostream &out_file, const Geom::D2<T> &in_d2) { argument
464 out_file << "X: " << in_d2[X] << " Y: " << in_d2[Y];
465 return out_file;
/inkscape/src/
H A Dline-geometry.h37 friend inline std::ostream &operator<< (std::ostream &out_file, const Line &in_line);
83 inline std::ostream &operator<< (std::ostream &out_file, const Line &in_line) { argument
84 out_file << "Start: " << in_line.pt << " Direction: " << in_line.v_dir;
85 return out_file;
/inkscape/share/extensions/
H A Deqtexsvg.py106 out_file = os.path.join(base_dir, "eq.out")
116 os.remove(out_file)
128 % (base_dir, latex_file, out_file))
144 % (base_dir, separator, ps_file, svg_file, out_file, err_file))

Completed in 92 milliseconds