Lines Matching defs:bottom

429         return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
442 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint,
444 return native_saveLayer(mNativeCanvasWrapper, left, top, right, bottom,
450 * Convenience for saveLayer(left, top, right, bottom, paint, {@link #ALL_SAVE_FLAG})
452 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) {
453 return saveLayer(left, top, right, bottom, paint, ALL_SAVE_FLAG);
488 return saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, saveFlags);
501 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha,
504 return native_saveLayerAlpha(mNativeCanvasWrapper, left, top, right, bottom,
509 * Helper for saveLayerAlpha(left, top, right, bottom, alpha, {@link #ALL_SAVE_FLAG})
511 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha) {
512 return saveLayerAlpha(left, top, right, bottom, alpha, ALL_SAVE_FLAG);
686 return native_clipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
699 return native_clipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
711 return native_clipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
723 return native_clipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
737 * @param bottom The bottom of the rectangle to intersect with the current
742 public boolean clipRect(float left, float top, float right, float bottom,
744 return native_clipRect(mNativeCanvasWrapper, left, top, right, bottom, op.nativeInt);
756 * @param bottom The bottom of the rectangle to intersect with the current
760 public boolean clipRect(float left, float top, float right, float bottom) {
761 return native_clipRect(mNativeCanvasWrapper, left, top, right, bottom,
774 * @param bottom The bottom of the rectangle to intersect with the current
778 public boolean clipRect(int left, int top, int right, int bottom) {
779 return native_clipRect(mNativeCanvasWrapper, left, top, right, bottom,
891 rect.left, rect.top, rect.right, rect.bottom);
925 * @param bottom The bottom of the rectangle to compare with the
933 public boolean quickReject(float left, float top, float right, float bottom,
935 return native_quickReject(mNativeCanvasWrapper, left, top, right, bottom);
1105 rect.left, rect.top, rect.right, rect.bottom, paint.getNativeInstance());
1116 drawRect(r.left, r.top, r.right, r.bottom, paint);
1127 * @param bottom The bottom side of the rectangle to be drawn
1130 public void drawRect(float left, float top, float right, float bottom, @NonNull Paint paint) {
1131 native_drawRect(mNativeCanvasWrapper, left, top, right, bottom, paint.getNativeInstance());
1144 drawOval(oval.left, oval.top, oval.right, oval.bottom, paint);
1151 public void drawOval(float left, float top, float right, float bottom, @NonNull Paint paint) {
1152 native_drawOval(mNativeCanvasWrapper, left, top, right, bottom, paint.getNativeInstance());
1194 drawArc(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, useCenter,
1219 public void drawArc(float left, float top, float right, float bottom, float startAngle,
1221 native_drawArc(mNativeCanvasWrapper, left, top, right, bottom, startAngle, sweepAngle,
1235 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint);
1246 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
1248 native_drawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, paint.getNativeInstance());
1294 dst.left, dst.top, dst.right, dst.bottom, nativePaint,
1312 dst.left, dst.top, dst.right, dst.bottom, nativePaint,
1371 float left, top, right, bottom;
1375 bottom = bitmap.getHeight();
1380 bottom = src.bottom;
1383 native_drawBitmap(mNativeCanvasWrapper, bitmap, left, top, right, bottom,
1384 dst.left, dst.top, dst.right, dst.bottom, nativePaint, mScreenDensity,
1418 int left, top, right, bottom;
1422 bottom = bitmap.getHeight();
1427 bottom = src.bottom;
1430 native_drawBitmap(mNativeCanvasWrapper, bitmap, left, top, right, bottom,
1431 dst.left, dst.top, dst.right, dst.bottom, nativePaint, mScreenDensity,
2030 float right, float bottom,
2048 float right, float bottom);
2066 float bottom,
2069 float right, float bottom, long nativePaint);
2074 float right, float bottom,
2078 float left, float top, float right, float bottom,