Searched defs:rhs (Results 1 - 15 of 15) sorted by relevance

/inkscape/src/2geom/
H A Dutils.h58 friend T operator*(T const &lhs, U const &rhs) { argument
59 T nrv(lhs); nrv *= rhs; return nrv;
/inkscape/src/libdepixelize/priv/
H A Dpoint.h37 Point operator+(const Point &rhs) const
39 return Point(x + rhs.x, y + rhs.y);
74 bool operator==(const Point<T> &lhs, const Point<T> &rhs) argument
82 lhs.smooth == rhs.smooth &&
84 lhs.x == rhs.x && lhs.y == rhs.y;
/inkscape/src/
H A Dproj_pt.h39 inline bool operator== (Pt2 &rhs) { argument
41 rhs.normalize();
42 return (fabs(pt[0] - rhs.pt[0]) < epsilon &&
43 fabs(pt[1] - rhs.pt[1]) < epsilon &&
44 fabs(pt[2] - rhs.pt[2]) < epsilon);
46 inline bool operator!= (Pt2 &rhs) { argument
47 return !((*this) == rhs);
52 inline Pt2 &operator+(Pt2 &rhs) const {
55 rhs.normalize();
57 result->pt[i] += rhs
98 operator ==(Pt3 &rhs) argument
[all...]
H A Dtransf_mat_3x4.cpp41 TransfMat3x4::TransfMat3x4(TransfMat3x4 const &rhs) { argument
44 tmat[i][j] = rhs.tmat[i][j];
118 TransfMat3x4::operator==(const TransfMat3x4 &rhs) const
123 Proj::Pt2 pt2 = rhs.column(Proj::axes[i]);
155 TransfMat3x4::copy_tmat(double rhs[3][4]) { argument
158 rhs[i][j] = tmat[i][j];
H A Dvanishing-point.h46 inline VanishingPoint &operator=(VanishingPoint const &rhs) { argument
47 _persp = rhs._persp;
48 _axis = rhs._axis;
49 my_counter = rhs.my_counter;
52 inline bool operator==(VanishingPoint const &rhs) const {
54 return (_persp == rhs._persp && _axis == rhs._axis);
57 inline bool operator<(VanishingPoint const &rhs) const {
58 return my_counter < rhs.my_counter;
H A Dstyle-internal.cpp127 SPIFloat::operator==(const SPIBase& rhs) { argument
128 if( const SPIFloat* r = dynamic_cast<const SPIFloat*>(&rhs) ) {
129 return (value == r->value && SPIBase::operator==(rhs));
215 SPIScale24::operator==(const SPIBase& rhs) { argument
216 if( const SPIScale24* r = dynamic_cast<const SPIScale24*>(&rhs) ) {
217 return (value == r->value && SPIBase::operator==(rhs));
427 SPILength::operator==(const SPIBase& rhs) { argument
428 if( const SPILength* r = dynamic_cast<const SPILength*>(&rhs) ) {
510 SPILengthOrNormal::operator==(const SPIBase& rhs) { argument
511 if( const SPILengthOrNormal* r = dynamic_cast<const SPILengthOrNormal*>(&rhs) ) {
660 operator ==(const SPIBase& rhs) argument
1001 operator ==(const SPIBase& rhs) argument
1120 operator ==(const SPIBase& rhs) argument
1442 operator ==(const SPIBase& rhs) argument
1621 operator ==(const SPIBase& rhs) argument
1782 operator ==(const SPIBase& rhs) argument
1888 operator ==(const SPIBase& rhs) argument
2126 operator ==(const SPIBase& rhs) argument
2271 operator ==(const SPIBase& rhs) argument
2418 operator ==(const SPIBase& rhs) argument
2569 operator ==(const SPIBase& rhs) argument
2709 operator ==(const SPIBase& rhs) argument
2856 operator ==(const SPIBase& rhs) argument
[all...]
H A Dpersp3d.cpp457 persp3d_perspectives_coincide(const Persp3D *lhs, const Persp3D *rhs) argument
459 return lhs->perspective_impl->tmat == rhs->perspective_impl->tmat;
H A Dstyle-internal.h154 SPIBase& operator=(const SPIBase& rhs) { argument
155 name = rhs.name;
156 inherits = rhs.inherits;
157 set = rhs.set;
158 inherit = rhs.inherit;
159 style_src = rhs.style_src;
160 style = rhs.style;
165 virtual bool operator==(const SPIBase& rhs) { argument
166 return (name == rhs.name);
169 virtual bool operator!=(const SPIBase& rhs) { argument
214 operator =(const SPIFloat& rhs) argument
222 operator !=(const SPIBase& rhs) argument
295 operator =(const SPIScale24& rhs) argument
303 operator !=(const SPIBase& rhs) argument
368 operator =(const SPILength& rhs) argument
378 operator !=(const SPIBase& rhs) argument
423 operator =(const SPILengthOrNormal& rhs) argument
430 operator !=(const SPIBase& rhs) argument
486 operator =(const SPIEnum& rhs) argument
496 operator !=(const SPIBase& rhs) argument
614 operator =(const SPIString& rhs) argument
624 operator !=(const SPIBase& rhs) argument
665 operator =(const SPIColor& rhs) argument
673 operator !=(const SPIBase& rhs) argument
743 operator =(const SPIPaint& rhs) argument
754 operator !=(const SPIBase& rhs) argument
849 operator =(const SPIPaintOrder& rhs) argument
861 operator !=(const SPIBase& rhs) argument
897 operator =(const SPIDashArray& rhs) argument
904 operator !=(const SPIBase& rhs) argument
932 operator =(const SPIFilter& rhs) argument
939 operator !=(const SPIBase& rhs) argument
981 operator =(const SPIFontSize& rhs) argument
992 operator !=(const SPIBase& rhs) argument
1038 operator =(const SPIFont& rhs) argument
1044 operator !=(const SPIBase& rhs) argument
1081 operator =(const SPIBaselineShift& rhs) argument
1093 operator !=(const SPIBase& rhs) argument
1136 operator =(const SPITextDecorationLine& rhs) argument
1146 operator !=(const SPIBase& rhs) argument
1183 operator =(const SPITextDecorationStyle& rhs) argument
1194 operator !=(const SPIBase& rhs) argument
1239 operator =(const SPITextDecoration& rhs) argument
1246 operator !=(const SPIBase& rhs) argument
[all...]
H A Dstyle.cpp1095 SPStyle::operator==(const SPStyle& rhs) { argument
1099 // if( *_properties[i] != *rhs._properties[i])
1102 // << rhs._properties[i]->write(SP_STYLE_FLAG_ALWAYS,NULL)
1103 // << (*_properties[i] == *rhs._properties[i]) << std::endl;
1107 if( *_properties[i] != *rhs._properties[i]) return false;
/inkscape/src/libavoid/
H A Dvertices.cpp63 VertID& VertID::operator= (const VertID& rhs) argument
66 //if (this == &rhs) return *this;
68 objID = rhs.objID;
69 isShape = rhs.isShape;
70 vn = rhs.vn;
76 bool VertID::operator==(const VertID& rhs) const
78 if ((objID != rhs.objID) || (vn != rhs.vn))
83 // COLA_ASSERT(isShape == rhs.isShape);
88 bool VertID::operator!=(const VertID& rhs) cons
[all...]
H A Dorthogonal.cpp140 bool operator<(const ShiftSegment& rhs) const
143 const Point& rhsLowPt = rhs.lowPoint();
149 return this < &rhs;
154 bool overlapsWith(const ShiftSegment& rhs, const size_t dim) const argument
159 const Point& rhsLowPt = rhs.lowPoint();
160 const Point& rhsHighPt = rhs.highPoint();
164 if ( (minSpaceLimit <= rhs.maxSpaceLimit) &&
165 (rhs.minSpaceLimit <= maxSpaceLimit))
559 bool operator<(const PosVertInf& rhs) const
561 if (pos != rhs
2007 operator ()(const ShiftSegment& lhs, const ShiftSegment& rhs, bool *comparable = NULL) const argument
[all...]
/inkscape/src/io/
H A Dinkjar.cpp441 JarFile::JarFile(JarFile const& rhs) argument
443 *this = rhs;
446 JarFile& JarFile::operator=(JarFile const& rhs) argument
448 if (this == &rhs)
451 _zs = rhs._zs;//fixme
455 _filename = g_strdup(rhs._filename);
459 _last_filename = g_strdup(rhs._last_filename);
460 _file = rhs._file;
480 JarFileReader& JarFileReader::operator=(JarFileReader const& rhs) argument
482 if (&rhs
506 JarFileReader(JarFileReader const& rhs) argument
[all...]
/inkscape/src/ui/
H A Dcontrol-manager.cpp33 ControlFlags operator |(ControlFlags lhs, ControlFlags rhs)
35 return static_cast<ControlFlags>(static_cast<int>(lhs) | static_cast<int>(rhs));
39 ControlFlags operator &(ControlFlags lhs, ControlFlags rhs) argument
41 return static_cast<ControlFlags>(static_cast<int>(lhs) & static_cast<int>(rhs));
44 ControlFlags operator ^(ControlFlags lhs, ControlFlags rhs) argument
46 return static_cast<ControlFlags>(static_cast<int>(lhs) ^ static_cast<int>(rhs));
49 ControlFlags& operator ^=(ControlFlags &lhs, ControlFlags rhs) argument
51 lhs = lhs ^ rhs;
/inkscape/src/ui/dialog/
H A Dalign-and-distribute.cpp255 BBoxSort::BBoxSort(const BBoxSort &rhs) : argument
259 item(rhs.item), anchor(rhs.anchor), bbox(rhs.bbox)
/inkscape/src/ui/widget/
H A Dcolor-icc-selector.cpp79 GtkAttachOptions operator|(GtkAttachOptions lhs, GtkAttachOptions rhs) argument
81 return static_cast<GtkAttachOptions>(static_cast<int>(lhs) | static_cast<int>(rhs));

Completed in 37 milliseconds