Lines Matching +defs:bounds +defs:top

224 int SkiaCanvas::saveLayer(float left, float top, float right, float bottom, const SkPaint* paint) {  in saveLayer()
225 const SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom); in saveLayer() local
231 int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom, int alpha) { in saveLayerAlpha()
240 int SkiaCanvas::saveUnclippedLayer(int left, int top, int right, int bottom) { in saveUnclippedLayer()
241 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom); in saveUnclippedLayer() local
400 bool SkiaCanvas::quickRejectRect(float left, float top, float right, float bottom) const { in quickRejectRect()
401 SkRect bounds = SkRect::MakeLTRB(left, top, right, bottom); in quickRejectRect() local
409 bool SkiaCanvas::clipRect(float left, float top, float right, float bottom, SkClipOp op) { in clipRect()
427 bool SkiaCanvas::replaceClipRect_deprecated(float left, float top, float right, float bottom) { in replaceClipRect_deprecated()
533 void SkiaCanvas::drawRect(float left, float top, float right, float bottom, const Paint& paint) { in drawRect()
545 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect()
562 void SkiaCanvas::drawOval(float left, float top, float right, float bottom, const Paint& paint) { in drawOval()
568 void SkiaCanvas::drawArc(float left, float top, float right, float bottom, float startAngle, in drawArc()
637 void SkiaCanvas::drawBitmap(Bitmap& bitmap, float left, float top, const Paint* paint) { in drawBitmap()
893 uirenderer::CanvasPropertyPrimitive* top, in drawRoundRect()