Home
last modified time | relevance | path

Searched refs:rPair (Results 1 – 6 of 6) sorted by relevance

/trunk/main/tools/inc/tools/
H A Dvector2d.hxx44 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 Dgen.hxx83 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 !=()
/trunk/main/tools/source/generic/
H A Dgen.cxx32 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 <<()
/trunk/main/svl/source/passwordcontainer/
H A Dpasswordcontainer.cxx862 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()
/trunk/main/svx/source/customshapes/
H A DEnhancedCustomShape2d.cxx925 …cedCustomShape2d::GetPoint( const com::sun::star::drawing::EnhancedCustomShapeParameterPair& rPair, in GetPoint() argument
939 const EnhancedCustomShapeParameter& rParameter = nIndex ? rPair.Second : rPair.First; in GetPoint()
/trunk/main/svl/source/inc/
H A Dpasswordcontainer.hxx273 const PairUrlRecord & rPair,

Completed in 46 milliseconds