/inkscape/src/ |
H A D | version.h | 26 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 D | color-profile-cms-fns.h | 21 ColorSpaceSigWrapper( ColorSpaceSig const &other ) : ColorSpaceSig( other ) {} 29 ColorProfileClassSigWrapper( ColorProfileClassSig const &other ) : ColorProfileClassSig( other ) {}
|
H A D | cms-color-types.h | 61 FourCCSig( FourCCSig const &other ) : value(other.value) {}; 71 ColorSpaceSig( ColorSpaceSig const &other ) : FourCCSig(other) {}; 79 ColorProfileClassSig( ColorProfileClassSig const &other ) : FourCCSig(other) {};
|
H A D | svg-profile.h | 21 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 D | color.h | 41 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 D | odf.h | 58 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 D | pov-out.h | 142 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 D | text-boundary.h | 30 unsigned other; ///< Index in bounds[] of the corresponding end/beginning boundary. member in struct:text_boundary
|
/inkscape/src/trace/ |
H A D | trace.h | 57 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 D | siox.h | 84 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 D | signal-blocker.h | 52 SignalBlocker(SignalBlocker const &other); 53 SignalBlocker& operator=(SignalBlocker const &other);
|
H A D | share.h | 28 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 D | list-container.h | 30 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 D | text-node.h | 41 TextNode(TextNode const &other, Document *doc) argument 42 : SimpleNode(other, doc) { 43 _is_CData = other._is_CData;
|
H A D | comment-node.h | 35 CommentNode(CommentNode const &other, Document *doc) argument 36 : SimpleNode(other, doc) {}
|
H A D | element-node.h | 31 ElementNode(ElementNode const &other, Document *doc) argument 32 : SimpleNode(other, doc) {}
|
H A D | pi-node.h | 32 PINode(PINode const &other, Document *doc) argument 33 : SimpleNode(other, doc) {}
|
/inkscape/src/2geom/ |
H A D | intersection.h | 83 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 D | linear.h | 109 // 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 D | bezier-curve.cpp | 153 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 D | circle.cpp | 137 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 D | circle.h | 95 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 D | TraitsTest.h | 24 bool operator== ( const Pet &other ) const 26 return !strcmp( name(), other.name() );
|
/inkscape/src/libcola/ |
H A D | defs.h | 77 int operator==(Point other) { argument 78 return x == other.x && y == other.y;
|
/inkscape/src/widgets/ |
H A D | ege-paint-def.cpp | 31 * 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...] |