Searched refs:other (Results 1 - 25 of 121) sorted by relevance

12345

/inkscape/src/
H A Dversion.h26 bool operator>(Version const &other) const {
27 return _major > other._major ||
28 ( _major == other._major && _minor > other._minor );
31 bool operator==(Version const &other) const {
32 return _major == other._major && _minor == other._minor;
35 bool operator!=(Version const &other) const {
36 return _major != other._major || _minor != other
[all...]
H A Dcolor-profile-cms-fns.h21 ColorSpaceSigWrapper( ColorSpaceSig const &other ) : ColorSpaceSig( other ) {}
29 ColorProfileClassSigWrapper( ColorProfileClassSig const &other ) : ColorProfileClassSig( other ) {}
H A Dcms-color-types.h61 FourCCSig( FourCCSig const &other ) : value(other.value) {};
71 ColorSpaceSig( ColorSpaceSig const &other ) : FourCCSig(other) {};
79 ColorProfileClassSig( ColorProfileClassSig const &other ) : FourCCSig(other) {};
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 Dcolor.h41 SPColor( SPColor const& other );
46 SPColor& operator= (SPColor const& other);
48 bool operator == ( SPColor const& other ) const;
49 bool operator != ( SPColor const& other ) const { return !(*this == other); };
50 bool isClose( SPColor const& other, float epsilon ) const;
/inkscape/src/extension/internal/
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...]
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;
/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/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 Dsignal-blocker.h52 SignalBlocker(SignalBlocker const &other);
53 SignalBlocker& operator=(SignalBlocker const &other);
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...]
H A Dlist-container.h30 ListContainer(ListContainer const &other) { argument
31 *this = other;
33 ListContainer &operator=(ListContainer const &other) { argument
35 for ( const_iterator iter = other.begin() ; iter ; ++iter ) {
40 void swap(ListContainer<T> &other) { argument
41 std::swap(other._head, _head);
42 std::swap(other._tail, _tail);
46 bool operator==(ListContainer const &other) const {
48 const_iterator other_iter = other._head;
58 bool operator!=(ListContainer const &other) cons
[all...]
/inkscape/src/xml/
H A Dtext-node.h41 TextNode(TextNode const &other, Document *doc) argument
42 : SimpleNode(other, doc) {
43 _is_CData = other._is_CData;
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) {}
/inkscape/src/2geom/
H A Dintersection.h83 bool operator==(Intersection const &other) const {
84 if (first != other.first) return false;
85 if (second != other.second) return false;
88 bool operator<(Intersection const &other) const {
89 if (first < other.first) return true;
90 if (first == other.first && second < other.second) return true;
H A Dlinear.h109 // addition of other Linears
110 Linear &operator+=(Linear const &other) {
111 a[0] += other.a[0];
112 a[1] += other.a[1];
115 Linear &operator-=(Linear const &other) {
116 a[0] -= other.a[0];
117 a[1] -= other.a[1];
143 bool operator==(Linear const &other) const {
144 return a[0] == other.a[0] && a[1] == other
[all...]
H A Dbezier-curve.cpp153 BezierCurve::intersect(Curve const &other, Coord eps) const argument
161 result = ls.intersect(other);
166 BezierCurve const *bez = dynamic_cast<BezierCurve const *>(&other);
171 CurveIntersection x(*this, other, xs[i].first, xs[i].second);
177 // pass other intersection types to the other curve
178 result = other.intersect(*this, eps);
187 BezierCurve const *other = dynamic_cast<BezierCurve const *>(&c); local
188 if (!other) return false;
190 if (!are_near(inner.at0(), other
210 BezierCurve const *other = dynamic_cast<BezierCurve const *>(&c); local
298 intersect(Curve const &other, Coord eps) const argument
[all...]
H A Dcircle.cpp137 bool Circle::contains(Circle const &other) const
139 Coord cdist = distance(_center, other._center);
140 Coord rdist = fabs(_radius - other._radius);
155 bool Circle::intersects(Circle const &other) const
157 Coord cdist = distance(_center, other._center);
158 Coord rsum = _radius + other._radius;
205 std::vector<ShapeIntersection> Circle::intersect(Circle const &other) const
209 if (*this == other) {
212 if (contains(other)) return result;
213 if (!intersects(other)) retur
[all...]
H A Dcircle.h95 bool contains(Rect const &other) const;
96 bool contains(Circle const &other) const;
100 bool intersects(Circle const &other) const;
102 std::vector<ShapeIntersection> intersect(Line const &other) const;
103 std::vector<ShapeIntersection> intersect(LineSegment const &other) const;
104 std::vector<ShapeIntersection> intersect(Circle const &other) const;
133 bool operator==(Circle const &other) const;
/inkscape/cxxtest/sample/
H A DTraitsTest.h24 bool operator== ( const Pet &other ) const
26 return !strcmp( name(), other.name() );
/inkscape/src/libcola/
H A Ddefs.h77 int operator==(Point other) { argument
78 return x == other.x && y == other.y;
/inkscape/src/widgets/
H A Dege-paint-def.cpp31 * and other provisions required by the GPL or the LGPL. If you do not delete
113 PaintDef::PaintDef( PaintDef const &other )
115 if ( this != &other ) {
116 *this = other;
120 PaintDef& PaintDef::operator=( PaintDef const &other )
122 if ( this != & other )
124 type = other.type;
125 r = other.r;
126 g = other.g;
127 b = other
[all...]

Completed in 46 milliseconds

12345