Searched defs:other (Results 1 - 25 of 61) sorted by relevance

123

/inkscape/src/xml/
H A Dcomment-node.h35 CommentNode(CommentNode const &other, Document *doc) argument
36 : SimpleNode(other, doc) {}
H A Delement-node.h31 ElementNode(ElementNode const &other, Document *doc) argument
32 : SimpleNode(other, doc) {}
H A Dpi-node.h32 PINode(PINode const &other, Document *doc) argument
33 : SimpleNode(other, doc) {}
H A Dtext-node.h41 TextNode(TextNode const &other, Document *doc) argument
42 : SimpleNode(other, doc) {
43 _is_CData = other._is_CData;
H A Dnode-fns.cpp57 bool operator()(Node const &other) { return &other == &node; } argument
/inkscape/src/libnrtype/
H A Dtext-boundary.h30 unsigned other; ///< Index in bounds[] of the corresponding end/beginning boundary. member in struct:text_boundary
/inkscape/src/extension/internal/
H A Dpov-out.h142 PovShapeInfo(const PovShapeInfo &other) argument
143 { assign(other); }
144 PovShapeInfo& operator=(const PovShapeInfo &other) argument
145 { assign(other); return *this; }
152 void assign(const PovShapeInfo &other) argument
154 id = other.id;
155 color = other.color;
H A Dodf.h58 StyleInfo(const StyleInfo &other) argument
60 assign(other);
63 StyleInfo &operator=(const StyleInfo &other) argument
65 assign(other);
69 void assign(const StyleInfo &other) argument
71 name = other.name;
72 stroke = other.stroke;
73 strokeColor = other.strokeColor;
74 strokeWidth = other.strokeWidth;
75 strokeOpacity = other
97 equals(const StyleInfo &other) argument
135 GradientStop(const GradientStop &other) argument
137 operator =(const GradientStop &other) argument
139 assign(const GradientStop &other) argument
159 GradientInfo(const GradientInfo &other) argument
164 operator =(const GradientInfo &other) argument
170 assign(const GradientInfo &other) argument
206 equals(const GradientInfo &other) argument
[all...]
/inkscape/src/inkgc/
H A Dgc-alloc.h38 struct rebind { typedef Alloc<U, collect> other; }; typedef in struct:Inkscape::GC::Alloc::rebind
/inkscape/src/2geom/
H A Dconvex-hull.cpp260 // the other way around.
274 void ConvexHull::swap(ConvexHull &other) argument
276 _boundary.swap(other._boundary);
277 std::swap(_lower, other._lower);
601 // In other words, either of the two polygons vertices are added in order until the vertex coincides with a bridge point, at which point we swap.
H A Dcirculator.h103 difference_type operator-(Circulator const &other) { argument
104 return _pos - other._pos;
H A Dpath-sink.h173 void append(Path const &other) argument
176 moveTo(other.initialPoint());
178 _path.append(other);
201 void feed(Path const &other) argument
204 *_out++ = other;
H A Dsbasis-curve.h86 explicit SBasisCurve(Curve const &other) : inner(other.toSBasis()) {} argument
131 SBasisCurve const *other = dynamic_cast<SBasisCurve const *>(&c); local
132 if (!other) return false;
133 return inner == other->inner;
/inkscape/src/display/
H A Dnr-filter-units.cpp169 FilterUnits& FilterUnits::operator=(FilterUnits const &other) { argument
170 filterUnits = other.filterUnits;
171 primitiveUnits = other.primitiveUnits;
172 resolution_x = other.resolution_x;
173 resolution_y = other.resolution_y;
174 paraller_axis = other.paraller_axis;
175 automatic_resolution = other.automatic_resolution;
176 ctm = other.ctm;
177 item_bbox = other.item_bbox;
178 filter_area = other
[all...]
/inkscape/src/libcola/
H A Ddefs.h77 int operator==(Point other) { argument
78 return x == other.x && y == other.y;
/inkscape/src/livarot/
H A Dfloat-line.h42 int other; ///< index, in the array of float_ligne_bord, of the other boundary associated to this one member in struct:float_ligne_bord
H A Dint-line.h26 int other; member in struct:int_ligne_bord
/inkscape/src/
H A Dsvg-profile.h21 are supported or required by some other object. The basic
41 of code. All entires should allow being put in a structure or other
54 \note This \c enum should not be used for anything other than passing
146 inline BitField operator | (const BitField &other) const {
150 local_bits[i] = bits[i] | other.bits[i];
158 inline BitField & operator = (const BitField &other) { argument
160 bits[i] = other.bits[i];
168 inline BitField & operator |= (const BitField &other) { argument
170 bits[i] |= other.bits[i];
260 other int
267 operator |=(const SvgProfile &other) argument
[all...]
H A Dgradient-drag.h65 inline int equals(GrDraggable *other) { argument
66 return ((item == other->item) && (point_type == other->point_type) && (point_i == other->point_i) && (fill_or_stroke == other->fill_or_stroke));
101 /* Given one GrDraggable, these all update other draggables belonging to same GrDragger */
110 bool mayMerge(GrDragger *other);
H A Dcolor.cpp45 SPColor::SPColor( SPColor const& other ) :
48 *this = other;
70 SPColor& SPColor::operator= (SPColor const& other) argument
72 if (this == &other){
76 SVGICCColor* tmp_icc = other.icc ? new SVGICCColor(*other.icc) : 0;
78 v.c[0] = other.v.c[0];
79 v.c[1] = other.v.c[1];
80 v.c[2] = other.v.c[2];
93 bool SPColor::operator == (SPColor const& other) cons
109 isClose( SPColor const& other, float epsilon ) const argument
[all...]
H A Dpreferences.h126 Entry(Entry const &other) : _pref_path(other._pref_path), _value(other._value) {} argument
/inkscape/src/trace/
H A Dtrace.h57 TracingEngineResult(const TracingEngineResult &other) argument
58 { assign(other); }
60 virtual TracingEngineResult &operator=(const TracingEngineResult &other) argument
61 { assign(other); return *this; }
91 void assign(const TracingEngineResult &other) argument
93 style = other.style;
94 pathData = other.pathData;
95 nodeCount = other.nodeCount;
190 * A convenience method to allow other software to 'see' the
H A Dsiox.h84 CieLab(const CieLab &other) argument
87 C = other.C;
88 L = other.L;
89 A = other.A;
90 B = other.B;
97 CieLab &operator=(const CieLab &other) argument
100 C = other.C;
101 L = other.L;
102 A = other.A;
103 B = other
128 add(const CieLab &other) argument
[all...]
/inkscape/src/util/
H A Dshare.h28 ptr_shared(ptr_shared<T1> const &other) : _obj(other._obj) {} argument
58 std::ptrdiff_t operator-(ptr_shared<T1> const &other) { argument
59 return _obj - other._obj;
63 ptr_shared<T> &operator=(ptr_shared<T1> const &other) { argument
64 _obj = other._obj;
69 bool operator==(ptr_shared<T1> const &other) const {
70 return _obj == other._obj;
74 bool operator!=(ptr_shared<T1> const &other) const {
75 return _obj != other
[all...]
/inkscape/src/libavoid/
H A Dvertices.cpp55 VertID::VertID(const VertID& other) argument
56 : objID(other.objID)
57 , isShape(other.isShape)
58 , vn(other.vn)

Completed in 2617 milliseconds

123