Lines Matching refs:rContext

170             GraphicsContext& rContext( getCurrentContext() );  in setLineDash()  local
172 comphelper::sequenceToContainer(rContext.DashArray,dashes); in setLineDash()
232 GraphicsContext& rContext( getCurrentContext() ); in strokePath() local
234 aPath.transform( rContext.Transformation ); in strokePath()
236 if( rContext.DashArray.empty() ) in strokePath()
239 rContext.LineColor.Alpha == 1.0 && in strokePath()
240 rContext.LineColor.Red == 0.0 && in strokePath()
241 rContext.LineColor.Green == 1.0 && in strokePath()
242 rContext.LineColor.Blue == 0.0 ); in strokePath()
245 rtl::math::approxEqual(rContext.LineWidth, 28.3) ); in strokePath()
256 rContext.DashArray.size() == 4 && in strokePath()
257 rtl::math::approxEqual(rContext.DashArray[0],14.3764) && in strokePath()
258 rContext.DashArray[0] == rContext.DashArray[1] && in strokePath()
259 rContext.DashArray[1] == rContext.DashArray[2] && in strokePath()
260 rContext.DashArray[2] == rContext.DashArray[3] ); in strokePath()
263 rContext.LineColor.Alpha == 1.0 && in strokePath()
264 rContext.LineColor.Red == 0.0 && in strokePath()
265 rContext.LineColor.Green == 0.0 && in strokePath()
266 rContext.LineColor.Blue == 0.0 ); in strokePath()
269 rContext.LineWidth == 0 ); in strokePath()
278 rContext.BlendMode == rendering::BlendMode::NORMAL ); in strokePath()
280 rContext.LineJoin == rendering::PathJoinType::ROUND ); in strokePath()
282 rContext.LineCap == rendering::PathCapType::BUTT ); in strokePath()
284 rContext.MiterLimit == 10 ); in strokePath()
286 rContext.Flatness == 1 ); in strokePath()
288 rContext.FontId == 0 ); in strokePath()
293 GraphicsContext& rContext( getCurrentContext() ); in fillPath() local
295 aPath.transform( rContext.Transformation ); in fillPath()
298 rContext.FillColor.Alpha == 1.0 && in fillPath()
299 rContext.FillColor.Red == 0.0 && in fillPath()
300 rContext.FillColor.Green == 0.0 && in fillPath()
301 rContext.FillColor.Blue == 0.0 ); in fillPath()
303 rContext.BlendMode == rendering::BlendMode::NORMAL ); in fillPath()
305 rContext.Flatness == 10 ); in fillPath()
307 rContext.FontId == 0 ); in fillPath()
312 GraphicsContext& rContext( getCurrentContext() ); in eoFillPath() local
314 aPath.transform( rContext.Transformation ); in eoFillPath()
317 rContext.FillColor.Alpha == 1.0 && in eoFillPath()
318 rContext.FillColor.Red == 1.0 && in eoFillPath()
319 rContext.FillColor.Green == 0.0 && in eoFillPath()
320 rContext.FillColor.Blue == 0.0 ); in eoFillPath()
322 rContext.BlendMode == rendering::BlendMode::NORMAL ); in eoFillPath()
324 rContext.Flatness == 1 ); in eoFillPath()
326 rContext.FontId == 0 ); in eoFillPath()