Lines Matching refs:XPolygon

43 DBG_NAME(XPolygon);
280 XPolygon::XPolygon( sal_uInt16 nSize, sal_uInt16 nResize ) in XPolygon() function in XPolygon
282 DBG_CTOR(XPolygon,NULL); in XPolygon()
296 XPolygon::XPolygon( const XPolygon& rXPoly ) in XPolygon() function in XPolygon
298 DBG_CTOR(XPolygon,NULL); in XPolygon()
313 XPolygon::XPolygon( const Polygon& rPoly ) in XPolygon() function in XPolygon
315 DBG_CTOR(XPolygon,NULL); in XPolygon()
338 XPolygon::XPolygon(const Rectangle& rRect, long nRx, long nRy) in XPolygon() function in XPolygon
340 DBG_CTOR(XPolygon,NULL); in XPolygon()
408 XPolygon::XPolygon(const Point& rCenter, long nRx, long nRy, in XPolygon() function in XPolygon
411 DBG_CTOR(XPolygon,NULL); in XPolygon()
459 XPolygon::~XPolygon() in ~XPolygon()
461 DBG_DTOR(XPolygon,NULL); in ~XPolygon()
478 void XPolygon::CheckReference() in CheckReference()
497 void XPolygon::SetSize( sal_uInt16 nNewSize ) in SetSize()
513 sal_uInt16 XPolygon::GetSize() const in GetSize()
529 void XPolygon::SetPointCount( sal_uInt16 nPoints ) in SetPointCount()
556 sal_uInt16 XPolygon::GetPointCount() const in GetPointCount()
572 void XPolygon::Insert( sal_uInt16 nPos, const Point& rPt, XPolyFlags eFlags ) in Insert()
591 void XPolygon::Insert( sal_uInt16 nPos, const XPolygon& rXPoly ) in Insert()
618 void XPolygon::Insert( sal_uInt16 nPos, const Polygon& rPoly ) in Insert()
644 void XPolygon::Remove( sal_uInt16 nPos, sal_uInt16 nCount ) in Remove()
660 void XPolygon::Move( long nHorzMove, long nVertMove ) in Move()
687 Rectangle XPolygon::GetBoundRect() const in GetBoundRect()
719 const Point& XPolygon::operator[]( sal_uInt16 nPos ) const in operator []()
737 Point& XPolygon::operator[]( sal_uInt16 nPos ) in operator []()
763 XPolygon& XPolygon::operator=( const XPolygon& rXPoly ) in operator =()
788 sal_Bool XPolygon::operator==( const XPolygon& rXPoly ) const in operator ==()
805 sal_Bool XPolygon::operator!=( const XPolygon& rXPoly ) const in operator !=()
822 XPolyFlags XPolygon::GetFlags( sal_uInt16 nPos ) const in GetFlags()
838 void XPolygon::SetFlags( sal_uInt16 nPos, XPolyFlags eFlags ) in SetFlags()
855 sal_Bool XPolygon::IsControl(sal_uInt16 nPos) const in IsControl()
870 sal_Bool XPolygon::IsSmooth(sal_uInt16 nPos) const in IsSmooth()
886 double XPolygon::CalcDistance(sal_uInt16 nP1, sal_uInt16 nP2) in CalcDistance()
905 void XPolygon::SubdivideBezier(sal_uInt16 nPos, sal_Bool bCalcFirst, double fT) in SubdivideBezier()
953 void XPolygon::GenBezArc(const Point& rCenter, long nRx, long nRy, in GenBezArc()
999 sal_Bool XPolygon::CheckAngles(sal_uInt16& nStart, sal_uInt16 nEnd, sal_uInt16& nA1, sal_uInt16& nA… in CheckAngles()
1033 void XPolygon::CalcSmoothJoin(sal_uInt16 nCenter, sal_uInt16 nDrag, sal_uInt16 nPnt) in CalcSmoothJoin()
1080 void XPolygon::CalcTangent(sal_uInt16 nCenter, sal_uInt16 nPrev, sal_uInt16 nNext) in CalcTangent()
1118 void XPolygon::PointsToBezier(sal_uInt16 nFirst) in PointsToBezier()
1196 void XPolygon::Translate(const Point& rTrans) in Translate()
1218 void XPolygon::Rotate(const Point& rCenter, double fSin, double fCos) in Rotate()
1269 void XPolygon::Rotate(const Point& rCenter, sal_uInt16 nAngle) in Rotate()
1292 void XPolygon::Scale(double fSx, double fSy) in Scale()
1318 void XPolygon::SlantX(long nYRef, double fSin, double fCos) in SlantX()
1345 void XPolygon::SlantY(long nXRef, double fSin, double fCos) in SlantY()
1377 void XPolygon::Distort(const Rectangle& rRefRect, in Distort()
1378 const XPolygon& rDistortedRect) in Distort()
1432 void XPolygon::Rotate20() in Rotate20()
1467 basegfx::B2DPolygon XPolygon::getB2DPolygon() const in getB2DPolygon()
1478 XPolygon::XPolygon(const basegfx::B2DPolygon& rPolygon) in XPolygon() function in XPolygon
1483 DBG_CTOR(XPolygon,NULL); in XPolygon()
1517 XPolygon* pXPoly = aXPolyList.First(); in ImpXPolyPolygon()
1520 aXPolyList.Replace( new XPolygon( *(aXPolyList.GetCurObject()) ) ); in ImpXPolyPolygon()
1538 XPolygon* pXPoly = aXPolyList.First(); in ~ImpXPolyPolygon()
1596 XPolyPolygon::XPolyPolygon( const XPolygon& rXPoly ) in XPolyPolygon()
1600 pImpXPolyPolygon->aXPolyList.Insert( new XPolygon( rXPoly ) ); in XPolyPolygon()
1637 new XPolygon(rPolyPoly.GetObject(i)) ); in XPolyPolygon()
1688 void XPolyPolygon::Insert( const XPolygon& rXPoly, sal_uInt16 nPos ) in Insert()
1691 XPolygon* pXPoly = new XPolygon( rXPoly ); in Insert()
1711 XPolygon* pXPoly = new XPolygon(rXPolyPoly[i]); in Insert()
1728 XPolygon XPolyPolygon::Remove( sal_uInt16 nPos ) in Remove()
1731 XPolygon* pTmpXPoly = pImpXPolyPolygon->aXPolyList.Remove( nPos ); in Remove()
1732 XPolygon aXPoly( *pTmpXPoly ); in Remove()
1748 XPolygon XPolyPolygon::Replace( const XPolygon& rXPoly, sal_uInt16 nPos ) in Replace()
1751 XPolygon* pXPoly = new XPolygon( rXPoly ); in Replace()
1752 XPolygon* pTmpXPoly = pImpXPolyPolygon->aXPolyList.Replace( pXPoly, nPos ); in Replace()
1753 XPolygon aXPoly( *pTmpXPoly ); in Replace()
1769 const XPolygon& XPolyPolygon::GetObject( sal_uInt16 nPos ) const in GetObject()
1794 XPolygon* pXPoly = pImpXPolyPolygon->aXPolyList.First(); in Clear()
1841 XPolygon* pXPoly = pImpXPolyPolygon->aXPolyList.First(); in Move()
1866 const XPolygon* pXPoly = pImpXPolyPolygon->aXPolyList.GetObject( n ); in GetBoundRect()
1884 XPolygon& XPolyPolygon::operator[]( sal_uInt16 nPos ) in operator []()
2096 const XPolygon& rDistortedRect) in Distort()
2111 const XPolygon& rPoly = (*this)[a]; in getB2DPolyPolygon()
2126 XPolygon aNewPoly(aCandidate); in XPolyPolygon()