Lines Matching refs:rOther
155 void addClipState(const ImplB2DClipState& rOther, Operation eOp) in addClipState()
157 if( rOther.mePendingOps == mePendingOps in addClipState()
158 && !rOther.maClipPoly.count() in addClipState()
159 && !rOther.maPendingPolygons.count() ) in addClipState()
161 maPendingRanges.appendPolyRange( rOther.maPendingRanges ); in addClipState()
167 rOther.commitPendingRanges(); in addClipState()
168 rOther.commitPendingPolygons(); in addClipState()
170 maPendingPolygons = rOther.maClipPoly; in addClipState()
199 void unionClipState(const ImplB2DClipState& rOther) in unionClipState()
204 addClipState(rOther, UNION); in unionClipState()
231 void intersectClipState(const ImplB2DClipState& rOther) in intersectClipState()
236 addClipState(rOther, INTERSECT); in intersectClipState()
263 void subtractClipState(const ImplB2DClipState& rOther) in subtractClipState()
268 addClipState(rOther, SUBTRACT); in subtractClipState()
286 void xorClipState(const ImplB2DClipState& rOther) in xorClipState()
288 addClipState(rOther, XOR); in xorClipState()