Lines Matching refs:xRes
151 uno::Reference< rendering::XPolyPolygon2D > xRes; in xPolyPolygonFromB2DPolygon() local
154 return xRes; in xPolyPolygonFromB2DPolygon()
161 xRes.set( xGraphicDevice->createCompatibleBezierPolyPolygon( outputSequence ), in xPolyPolygonFromB2DPolygon()
169 xRes.set( xGraphicDevice->createCompatibleLinePolyPolygon( outputSequence ), in xPolyPolygonFromB2DPolygon()
173 if( xRes.is() && rPoly.isClosed() ) in xPolyPolygonFromB2DPolygon()
174 xRes->setClosed( 0, sal_True ); in xPolyPolygonFromB2DPolygon()
176 return xRes; in xPolyPolygonFromB2DPolygon()
184 uno::Reference< rendering::XPolyPolygon2D > xRes; in xPolyPolygonFromB2DPolyPolygon() local
187 return xRes; in xPolyPolygonFromB2DPolyPolygon()
194 xRes.set( xGraphicDevice->createCompatibleBezierPolyPolygon( in xPolyPolygonFromB2DPolyPolygon()
200 xRes.set( xGraphicDevice->createCompatibleLinePolyPolygon( in xPolyPolygonFromB2DPolyPolygon()
207 xRes->setClosed( i, rPolyPoly.getB2DPolygon(i).isClosed() ); in xPolyPolygonFromB2DPolyPolygon()
210 return xRes; in xPolyPolygonFromB2DPolyPolygon()