Searched defs:operator (Results 1 - 25 of 188) sorted by relevance
12345678
/inkscape/src/util/ |
H A D | fixed_point.h | 37 FixedPoint& operator+=(FixedPoint val) { v += val.v; return *this; } 38 FixedPoint& operator-=(FixedPoint val) { v -= val.v; return *this; } 39 FixedPoint& operator*=(FixedPoint val) { 53 FixedPoint& operator*=(char val) { v *= val; return *this; } 54 FixedPoint& operator*=(unsigned char val) { v *= val; return *this; } 55 FixedPoint& operator*=(short val) { v *= val; return *this; } 56 FixedPoint& operator*=(unsigned short val) { v *= val; return *this; } 57 FixedPoint& operator*=(int val) { v *= val; return *this; } 58 FixedPoint& operator*=(unsigned int val) { v *= val; return *this; } 60 FixedPoint operator [all...] |
H A D | share.h | 33 operator T1 const *() const { return _obj; } 35 operator bool() const { return _obj; } 37 T const &operator*() const { return *_obj; } 38 T const *operator->() const { return _obj; } 39 T const &operator[](int i) const { return _obj[i]; } 41 ptr_shared<T> operator+(int i) const { 44 ptr_shared<T> operator-(int i) const { 48 ptr_shared<T> &operator+=(int i) const { 52 ptr_shared<T> &operator-=(int i) const { 58 std::ptrdiff_t operator [all...] |
H A D | forward-pointer-iterator.h | 43 operator pointer() const { return _p; } 44 reference operator*() const { return *_p; } 45 pointer operator->() const { return _p; } 47 bool operator==(Self const &other) const { 50 bool operator!=(Self const &other) const { 54 Self &operator++() { 58 Self operator++(int) { 60 operator++(); 64 operator bool() const { return _p != NULL; } 86 operator pointe [all...] |
H A D | list.h | 67 operator bool() const { return this->_cell; } 69 reference operator*() const { return this->_cell->value; } 70 pointer operator->() const { return &this->_cell->value; } 72 bool operator==(List const &other) const { 75 bool operator!=(List const &other) const { 79 List &operator++() { 83 List operator++(int) { 131 reference operator*() const { return this->_cell->value; } 132 pointer operator->() const { return &this->_cell->value; } 134 List &operator [all...] |
/inkscape/src/inkgc/ |
H A D | gc-soft-ptr.h | 33 operator T *() const { return static_cast<T *>(_pointer); } 34 T &operator*() const { return *static_cast<T *>(_pointer); } 35 T *operator->() const { return static_cast<T *>(_pointer); } 36 T &operator[](int i) const { return static_cast<T *>(_pointer)[i]; } 38 soft_ptr &operator=(T *pointer) {
|
H A D | gc-managed.h | 30 void *operator new(std::size_t size, 35 return ::operator new(size, scan, collect); 38 void *operator new[](std::size_t size, 43 return ::operator new[](size, scan, collect); 46 void operator delete(void *p) { return ::operator delete(p, GC); }
|
/inkscape/src/ |
H A D | sp-guide-constraint.h | 22 bool operator==(SPGuideConstraint const &o) const { 27 bool operator!=(SPGuideConstraint const &o) const {
|
H A D | version.h | 26 bool operator>(Version const &other) const { 31 bool operator==(Version const &other) const { 35 bool operator!=(Version const &other) const { 39 bool operator<(Version const &other) const {
|
H A D | proj_pt.h | 30 inline double operator[] (unsigned int index) const { 34 inline double &operator[] (unsigned int index) { 39 inline bool operator== (Pt2 &rhs) { 46 inline bool operator!= (Pt2 &rhs) { 52 inline Pt2 &operator+(Pt2 &rhs) const { 62 inline Pt2 &operator-(Pt2 &rhs) const { 72 inline Pt2 &operator*(double const s) const { 98 inline bool operator== (Pt3 &rhs) { 109 inline Pt3 &operator+(Pt3 &rhs) const { 119 inline Pt3 &operator [all...] |
H A D | color-profile-cms-fns.h | 23 operator cmsColorSpaceSignature() const { return static_cast<cmsColorSpaceSignature>(value); } 31 operator cmsProfileClassSignature() const { return static_cast<cmsProfileClassSignature>(value); }
|
H A D | sp-guide-attachment.h | 22 bool operator==(SPGuideAttachment const &o) const { 27 bool operator!=(SPGuideAttachment const &o) const {
|
H A D | color-rgba.h | 84 ColorRGBA &operator=(ColorRGBA const &m) { 99 float operator[](unsigned int const i) const { 112 bool operator== (const ColorRGBA &other) const { 120 bool operator!=(ColorRGBA const &o) const {
|
H A D | streq.h | 14 bool operator()(char const *a, char const *b) const
|
/inkscape/src/libvpsc/ |
H A D | variable.cpp | 12 std::ostream& operator <<(std::ostream &os, const Variable &v) {
|
/inkscape/src/2geom/ |
H A D | int-point.h | 67 IntCoord operator[](unsigned i) const { 71 IntCoord &operator[](unsigned i) { 75 IntCoord operator[](Dim2 d) const { return _pt[d]; } 76 IntCoord &operator[](Dim2 d) { return _pt[d]; } 86 IntPoint operator-() const { 90 IntPoint &operator+=(IntPoint const &o) { 95 IntPoint &operator-=(IntPoint const &o) { 104 /** @brief Equality operator. */ 105 bool operator==(IntPoint const &in_pnt) const { 112 bool operator<(IntPoin [all...] |
H A D | circulator.h | 58 reference operator*() const { 61 pointer operator->() const { 65 Circulator &operator++() { 71 Circulator operator++(int) { 77 Circulator &operator--() { 82 Circulator operator--(int) { 88 Circulator &operator+=(int n) { 92 Circulator operator+(int n) const { 95 Circulator &operator-=(int n) { 99 Circulator operator [all...] |
H A D | convex-hull.h | 72 Self &operator++() { 76 Self &operator--() { 80 Self &operator+=(std::ptrdiff_t d) { 84 Self &operator-=(std::ptrdiff_t d) { 88 std::ptrdiff_t operator-(Self const &other) const { 91 Point const &operator*() const { 98 bool operator==(Self const &other) const { 101 bool operator<(Self const &other) const { 217 Point const &operator[](std::size_t i) const { 265 //ConvexHull &operator| [all...] |
H A D | d2.h | 98 //TODO: ask mental about operator= as seen in Point 100 T& operator[](unsigned i) { return f[i]; } 101 T const & operator[](unsigned i) const { return f[i]; } 153 Point operator()(double t) const; 154 Point operator()(double x, double y) const; 177 operator==(D2<T> const &a, D2<T> const &b) { 183 operator!=(D2<T> const &a, D2<T> const &b) { 199 operator+(D2<T> const &a, D2<T> const &b) { 209 operator-(D2<T> const &a, D2<T> const &b) { 219 operator [all...] |
H A D | polynomial.h | 56 //double operator[](const int i) const { return (*this)[i];} 57 //double& operator[](const int i) { return (*this)[i];} 59 Poly operator+(const Poly& p) const { 75 Poly operator-(const Poly& p) const { 91 Poly operator-=(const Poly& p) { 103 Poly operator-(const double k) const { 114 Poly operator-() const { 123 Poly operator*(const double p) const { 146 Poly operator*(const Poly& p) const; 158 T operator()( [all...] |
H A D | utils.h | 51 * Generates operator*(T, U) from operator*=(T, U). Does not generate operator*(U, T) 58 friend T operator*(T const &lhs, U const &rhs) { 71 void operator=(T const &) {}
|
H A D | bezier.h | 153 Bezier &operator=(Bezier const &other) { 165 operator unsigned() const { return order; } 263 Coord operator()(double t) const { return valueAt(t); } 267 Coord &operator[](unsigned ix) { return c_[ix]; } 268 Coord const &operator[](unsigned ix) const { return const_cast<std::valarray<Coord>&>(c_)[ix]; } 288 Bezier &operator+=(double v) { 292 Bezier &operator-=(double v) { 296 Bezier &operator*=(double v) { 300 Bezier &operator/=(double v) { 304 Bezier &operator [all...] |
H A D | point.h | 104 Coord operator[](unsigned i) const { return _pt[i]; } 105 Coord &operator[](unsigned i) { return _pt[i]; } 107 Coord operator[](Dim2 d) const throw() { return _pt[d]; } 108 Coord &operator[](Dim2 d) throw() { return _pt[d]; } 145 Point operator-() const { 148 Point &operator+=(Point const &o) { 154 Point &operator-=(Point const &o) { 160 Point &operator*=(Coord s) { 164 Point &operator/=(Coord s) { 173 Point &operator* [all...] |
/inkscape/src/libdepixelize/priv/ |
H A D | point.h | 37 Point operator+(const Point &rhs) const 42 Point operator/(T foo) const 74 bool operator==(const Point<T> &lhs, const Point<T> &rhs)
|
/inkscape/src/libavoid/ |
H A D | vertices.cpp | 63 VertID& VertID::operator= (const VertID& rhs) 76 bool VertID::operator==(const VertID& rhs) const 88 bool VertID::operator!=(const VertID& rhs) const 99 bool VertID::operator<(const VertID& rhs) const 110 VertID VertID::operator+(const int& rhs) const 116 VertID VertID::operator-(const int& rhs) const 122 VertID& VertID::operator++(int) 144 ostream& operator<<(ostream& os, const VertID& vID)
|
/inkscape/src/ui/tool/ |
H A D | shape-record.h | 39 inline bool operator==(ShapeRecord const &o) const { 42 inline bool operator<(ShapeRecord const &o) const {
|
Completed in 155 milliseconds
12345678