Lines Matching defs:top

130 int DisplayListCanvas::saveLayer(float left, float top, float right, float bottom,
136 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, paint, (int) flags));
181 *outRect = SkRect::MakeLTRB(bounds.left, bounds.top, bounds.right, bounds.bottom);
185 bool DisplayListCanvas::quickRejectRect(float left, float top, float right, float bottom) const {
186 return mState.quickRejectConservative(left, top, right, bottom);
195 bool DisplayListCanvas::clipRect(float left, float top, float right, float bottom,
197 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
198 return mState.clipRect(left, top, right, bottom, op);
236 void DisplayListCanvas::drawBitmap(const SkBitmap& bitmap, float left, float top,
239 translate(left, top);
345 void DisplayListCanvas::drawRect(float left, float top, float right, float bottom,
347 addDrawOp(new (alloc()) DrawRectOp(left, top, right, bottom, refPaint(&paint)));
350 void DisplayListCanvas::drawRoundRect(float left, float top, float right, float bottom,
352 addDrawOp(new (alloc()) DrawRoundRectOp(left, top, right, bottom, rx, ry, refPaint(&paint)));
356 CanvasPropertyPrimitive* left, CanvasPropertyPrimitive* top,
361 mDisplayList->ref(top);
368 addDrawOp(new (alloc()) DrawRoundRectPropsOp(&left->value, &top->value,
387 void DisplayListCanvas::drawOval(float left, float top, float right, float bottom,
389 addDrawOp(new (alloc()) DrawOvalOp(left, top, right, bottom, refPaint(&paint)));
392 void DisplayListCanvas::drawArc(float left, float top, float right, float bottom,
395 drawOval(left, top, right, bottom, paint);
397 addDrawOp(new (alloc()) DrawArcOp(left, top, right, bottom,
551 bool rejected = quickRejectRect(localBounds.left, localBounds.top,