Lines Matching refs:rElem
121 void outputPoint( const ::std::pair< B2DPoint, ::rtl::OString >& rElem ) in outputPoint() argument
124 … *mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl; in outputPoint()
126 OSL_TRACE( " %f\t%f\n", rElem.first.getX(), rElem.first.getY() ); in outputPoint()
129 void outputVector( const ::std::pair< B2DVector, ::rtl::OString >& rElem ) in outputVector() argument
132 …*mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl << ::std::endl; in outputVector()
134 OSL_TRACE( " %f\t%f\n\n", rElem.first.getX(), rElem.first.getY() ); in outputVector()
137 void outputRect( const ::std::pair< B2DRange, ::rtl::OString >& rElem ) in outputRect() argument
139 const double nX0( rElem.first.getMinX() ); in outputRect()
140 const double nY0( rElem.first.getMinY() ); in outputRect()
141 const double nX1( rElem.first.getMaxX() ); in outputRect()
142 const double nY1( rElem.first.getMaxY() ); in outputRect()