Searched refs:rPair (Results 1 – 6 of 6) sorted by relevance
/aoo42x/main/tools/inc/tools/ |
H A D | vector2d.hxx | 44 inline Vector2D( const Pair& rPair ) : mfX( rPair.nA ), mfY( rPair.nB ) {}; in Vector2D() argument 90 inline Vector2D& operator=( const Pair& rPair ) { mfX = rPair.nA, mfY = rPair.nB; return *this; } in operator =() argument 91 …inline Vector2D& operator-=( const Pair& rPair ) { mfX -= rPair.nA, mfY -= rPair.nB; return *this;… in operator -=() argument 92 …inline Vector2D& operator+=( const Pair& rPair ) { mfX += rPair.nA, mfY += rPair.nB; return *this;… in operator +=() argument 93 …inline Vector2D& operator*=( const Pair& rPair ) { mfX *= rPair.nA, mfY *= rPair.nB; return *this;… in operator *=() argument 94 …inline Vector2D& operator/=( const Pair& rPair ) { mfX /= rPair.nA, mfY /= rPair.nB; return *this;… in operator /=() argument 96 …inline sal_Bool operator==( const Pair& rPair ) const { return( mfX == rPair.nA && mfY == rPair.… in operator ==() 97 inline sal_Bool operator!=( const Pair& rPair ) const { return !( *this == rPair ); } in operator !=()
|
H A D | gen.hxx | 83 sal_Bool operator == ( const Pair& rPair ) const; 84 sal_Bool operator != ( const Pair& rPair ) const; 86 TOOLS_DLLPUBLIC friend SvStream& operator>>( SvStream& rIStream, Pair& rPair ); 87 TOOLS_DLLPUBLIC friend SvStream& operator<<( SvStream& rOStream, const Pair& rPair ); 101 inline sal_Bool Pair::operator == ( const Pair& rPair ) const in operator ==() 103 return ((nA == rPair.nA) && (nB == rPair.nB)); in operator ==() 106 inline sal_Bool Pair::operator != ( const Pair& rPair ) const in operator !=() 108 return ((nA != rPair.nA) || (nB != rPair.nB)); in operator !=()
|
/aoo42x/main/tools/source/generic/ |
H A D | gen.cxx | 32 SvStream& operator>>( SvStream& rIStream, Pair& rPair ) in operator >>() argument 60 rPair.nA = (sal_Int32)nNum; in operator >>() 72 rPair.nB = (sal_Int32)nNum; in operator >>() 76 rIStream >> rPair.nA >> rPair.nB; in operator >>() 84 SvStream& operator<<( SvStream& rOStream, const Pair& rPair ) in operator <<() argument 96 nNum = (sal_uInt32)(sal_Int32)rPair.nA; in operator <<() 97 if ( rPair.nA < 0 ) in operator <<() 137 nNum = (sal_uInt32)(sal_Int32)rPair.nB; in operator <<() 138 if ( rPair.nB < 0 ) in operator <<() 182 rOStream << rPair.nA << rPair.nB; in operator <<()
|
/aoo42x/main/svl/source/passwordcontainer/ |
H A D | passwordcontainer.cxx | 862 const PairUrlRecord & rPair, in createUrlRecord() argument 872 = FindUsr( rPair.second, aName, aHandler ); in createUrlRecord() 875 rRec = UrlRecord( rPair.first, aUsrRec ); in createUrlRecord() 882 rPair.first, in createUrlRecord() 883 CopyToUserRecordSequence( rPair.second, aHandler ) ); in createUrlRecord()
|
/aoo42x/main/svx/source/customshapes/ |
H A D | EnhancedCustomShape2d.cxx | 925 …cedCustomShape2d::GetPoint( const com::sun::star::drawing::EnhancedCustomShapeParameterPair& rPair, in GetPoint() argument 939 const EnhancedCustomShapeParameter& rParameter = nIndex ? rPair.Second : rPair.First; in GetPoint()
|
/aoo42x/main/svl/source/inc/ |
H A D | passwordcontainer.hxx | 273 const PairUrlRecord & rPair,
|
Completed in 57 milliseconds