Lines Matching refs:left

118 int RecordingCanvas::saveLayer(float left, float top, float right, float bottom,
130 const Rect unmappedBounds(left, top, right, bottom);
173 snapshot.transform->loadTranslate(-unmappedBounds.left, -unmappedBounds.top, 0.0f);
176 clip.translate(-unmappedBounds.left, -unmappedBounds.top);
177 snapshot.resetClip(clip.left, clip.top, clip.right, clip.bottom);
226 bool RecordingCanvas::quickRejectRect(float left, float top, float right, float bottom) const {
227 return mState.quickRejectConservative(left, top, right, bottom);
233 bool RecordingCanvas::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) {
234 return mState.clipRect(left, top, right, bottom, op);
291 void RecordingCanvas::drawRect(float left, float top, float right, float bottom, const SkPaint& paint) {
293 Rect(left, top, right, bottom),
305 float left = FLT_MAX;
320 left = std::min(left, l);
326 Rect(left, top, right, bottom),
357 void RecordingCanvas::drawRoundRect(float left, float top, float right, float bottom,
361 Rect(left, top, right, bottom),
366 drawRect(left, top, right, bottom, paint);
371 CanvasPropertyPrimitive* left, CanvasPropertyPrimitive* top,
375 mDisplayList->ref(left);
387 &left->value, &top->value, &right->value, &bottom->value,
412 void RecordingCanvas::drawOval(float left, float top, float right, float bottom, const SkPaint& paint) {
414 Rect(left, top, right, bottom),
420 void RecordingCanvas::drawArc(float left, float top, float right, float bottom,
423 drawOval(left, top, right, bottom, paint);
426 Rect(left, top, right, bottom),
453 void RecordingCanvas::drawBitmap(const SkBitmap& bitmap, float left, float top, const SkPaint* paint) {
455 translate(left, top);