Lines Matching defs:right

64         float right, float bottom, bool opaque) {
119 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom,
125 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, paint, flags));
163 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom,
165 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
166 return StatefulBaseRenderer::clipRect(left, top, right, bottom, op);
253 float left, float top, float right, float bottom, const SkPaint* paint) {
258 addDrawOp(new (alloc()) DrawPatchOp(bitmap, patch, left, top, right, bottom, paint));
267 status_t DisplayListRenderer::drawRect(float left, float top, float right, float bottom,
270 addDrawOp(new (alloc()) DrawRectOp(left, top, right, bottom, paint));
274 status_t DisplayListRenderer::drawRoundRect(float left, float top, float right, float bottom,
277 addDrawOp(new (alloc()) DrawRoundRectOp(left, top, right, bottom, rx, ry, paint));
283 CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom,
288 mDisplayListData->ref(right);
294 &right->value, &bottom->value, &rx->value, &ry->value, &paint->value));
315 status_t DisplayListRenderer::drawOval(float left, float top, float right, float bottom,
318 addDrawOp(new (alloc()) DrawOvalOp(left, top, right, bottom, paint));
322 status_t DisplayListRenderer::drawArc(float left, float top, float right, float bottom,
325 return drawOval(left, top, right, bottom, paint);
329 addDrawOp(new (alloc()) DrawArcOp(left, top, right, bottom,
508 localBounds.right, localBounds.bottom);