Lines Matching refs:rTup

77 		B2I64Tuple(const B2I64Tuple& rTup)   in B2I64Tuple()  argument
78 : mnX( rTup.mnX ), in B2I64Tuple()
79 mnY( rTup.mnY ) in B2I64Tuple()
130 B2I64Tuple& operator+=( const B2I64Tuple& rTup ) in operator +=() argument
132 mnX += rTup.mnX; in operator +=()
133 mnY += rTup.mnY; in operator +=()
137 B2I64Tuple& operator-=( const B2I64Tuple& rTup ) in operator -=() argument
139 mnX -= rTup.mnX; in operator -=()
140 mnY -= rTup.mnY; in operator -=()
144 B2I64Tuple& operator/=( const B2I64Tuple& rTup ) in operator /=() argument
146 mnX /= rTup.mnX; in operator /=()
147 mnY /= rTup.mnY; in operator /=()
151 B2I64Tuple& operator*=( const B2I64Tuple& rTup ) in operator *=() argument
153 mnX *= rTup.mnX; in operator *=()
154 mnY *= rTup.mnY; in operator *=()
179 bool operator==( const B2I64Tuple& rTup ) const in operator ==()
181 return this == &rTup || (rTup.mnX == mnX && rTup.mnY == mnY); in operator ==()
184 bool operator!=( const B2I64Tuple& rTup ) const in operator !=()
186 return !(*this == rTup); in operator !=()
189 B2I64Tuple& operator=( const B2I64Tuple& rTup ) in operator =() argument
191 mnX = rTup.mnX; in operator =()
192 mnY = rTup.mnY; in operator =()
216 inline B2I64Tuple absolute(const B2I64Tuple& rTup) in absolute() argument
219 (0 > rTup.getX()) ? -rTup.getX() : rTup.getX(), in absolute()
220 (0 > rTup.getY()) ? -rTup.getY() : rTup.getY()); in absolute()
288 inline B2I64Tuple operator*(const B2I64Tuple& rTup, sal_Int64 t) in operator *() argument
290 B2I64Tuple aNew(rTup); in operator *()
295 inline B2I64Tuple operator*(sal_Int64 t, const B2I64Tuple& rTup) in operator *() argument
297 B2I64Tuple aNew(rTup); in operator *()
302 inline B2I64Tuple operator/(const B2I64Tuple& rTup, sal_Int64 t) in operator /() argument
304 B2I64Tuple aNew(rTup); in operator /()
309 inline B2I64Tuple operator/(sal_Int64 t, const B2I64Tuple& rTup) in operator /() argument
312 B2I64Tuple aTmp(rTup); in operator /()