Lines Matching defs:top

445         return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
483 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint,
485 return nSaveLayer(mNativeCanvasWrapper, left, top, right, bottom,
494 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) {
495 return saveLayer(left, top, right, bottom, paint, ALL_SAVE_FLAG);
531 return saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, saveFlags);
552 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha,
555 return nSaveLayerAlpha(mNativeCanvasWrapper, left, top, right, bottom,
563 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha) {
564 return saveLayerAlpha(left, top, right, bottom, alpha, ALL_SAVE_FLAG);
761 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
781 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
793 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
805 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
817 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
829 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
839 * @param top The top of the rectangle to intersect with the current
856 public boolean clipRect(float left, float top, float right, float bottom,
858 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom, op.nativeInt);
867 * @param top The top of the rectangle to intersect with the current clip
874 public boolean clipRect(float left, float top, float right, float bottom) {
875 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom,
884 * @param top The top of the rectangle used in the difference operation
889 public boolean clipOutRect(float left, float top, float right, float bottom) {
890 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom,
900 * @param top The top of the rectangle to intersect with the current clip
907 public boolean clipRect(int left, int top, int right, int bottom) {
908 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom,
917 * @param top The top of the rectangle used in the difference operation
922 public boolean clipOutRect(int left, int top, int right, int bottom) {
923 return nClipRect(mNativeCanvasWrapper, left, top, right, bottom,
1064 rect.left, rect.top, rect.right, rect.bottom);
1094 * @param top The top of the rectangle to compare with the current
1106 public boolean quickReject(float left, float top, float right, float bottom,
1108 return nQuickReject(mNativeCanvasWrapper, left, top, right, bottom);
1159 translate(dst.left, dst.top);
1172 translate(dst.left, dst.top);
1280 float left, float top, float right, float bottom, int regionOp);
1290 private static native boolean nQuickReject(long nativeCanvas, float left, float top,
1350 public void drawArc(float left, float top, float right, float bottom, float startAngle,
1352 super.drawArc(left, top, right, bottom, startAngle, sweepAngle, useCenter, paint);
1369 * Draw the specified bitmap, with its top/left corner at (x,y), using the specified paint,
1382 * @param top The position of the top side of the bitmap being drawn
1385 public void drawBitmap(@NonNull Bitmap bitmap, float left, float top, @Nullable Paint paint) {
1386 super.drawBitmap(bitmap, left, top, paint);
1493 * across the top of the bitmap from left to right. A more general version of this method is
1605 public void drawOval(float left, float top, float right, float bottom, @NonNull Paint paint) {
1606 super.drawOval(left, top, right, bottom, paint);
1749 * @param top The top side of the rectangle to be drawn
1754 public void drawRect(float left, float top, float right, float bottom, @NonNull Paint paint) {
1755 super.drawRect(left, top, right, bottom, paint);
1791 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
1793 super.drawRoundRect(left, top, right, bottom, rx, ry, paint);