Lines Matching refs:rCandidateA

232 …void findCuts(const B2DPolygon& rCandidateA, const B2DPolygon& rCandidateB, temporaryPointVector& …
290 …void findCutsAndTouchesAndCommonForBezier(const B2DPolygon& rCandidateA, const B2DPolygon& rCandid… in findCutsAndTouchesAndCommonForBezier() argument
304 …OSL_ENSURE(!rCandidateA.areControlPointsUsed() && !rCandidateB.areControlPointsUsed(), "findCutsAn… in findCutsAndTouchesAndCommonForBezier()
305 …OSL_ENSURE(!rCandidateA.isClosed() && !rCandidateB.isClosed(), "findCutsAndTouchesAndCommonForBezi… in findCutsAndTouchesAndCommonForBezier()
306 const sal_uInt32 nPointCountA(rCandidateA.count()); in findCutsAndTouchesAndCommonForBezier()
313 B2DPoint aCurrA(rCandidateA.getB2DPoint(0L)); in findCutsAndTouchesAndCommonForBezier()
317 const B2DPoint aNextA(rCandidateA.getB2DPoint(a + 1L)); in findCutsAndTouchesAndCommonForBezier()
784 …void findCuts(const B2DPolygon& rCandidateA, const B2DPolygon& rCandidateB, temporaryPointVector& … in findCuts() argument
788 const sal_uInt32 nPointCountA(rCandidateA.count()); in findCuts()
793 const sal_uInt32 nEdgeCountA(rCandidateA.isClosed() ? nPointCountA : nPointCountA - 1L); in findCuts()
798 …const bool bCurvesInvolved(rCandidateA.areControlPointsUsed() || rCandidateB.areControlPointsUsed(… in findCuts()
807 rCandidateA.getBezierSegment(a, aCubicA); in findCuts()
854 B2DPoint aCurrA(rCandidateA.getB2DPoint(0L)); in findCuts()
858 const B2DPoint aNextA(rCandidateA.getB2DPoint(a + 1L == nPointCountA ? 0L : a + 1L)); in findCuts()