Lines Matching refs:left

66      * Flag for drawTextRun indicating left-to-right run direction.
72 * Flag for drawTextRun indicating right-to-left run direction.
357 public int saveLayer(float left, float top, float right, float bottom, Paint paint,
359 return native_saveLayer(mNativeCanvas, left, top, right, bottom,
388 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha,
390 return native_saveLayerAlpha(mNativeCanvas, left, top, right, bottom,
536 return native_clipRect(mNativeCanvas, rect.left, rect.top, rect.right, rect.bottom,
549 return native_clipRect(mNativeCanvas, rect.left, rect.top, rect.right, rect.bottom,
575 * @param left The left side of the rectangle to intersect with the
586 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) {
587 return native_clipRect(mNativeCanvas, left, top, right, bottom, op.nativeInt);
594 * @param left The left side of the rectangle to intersect with the
603 public native boolean clipRect(float left, float top, float right, float bottom);
609 * @param left The left side of the rectangle to intersect with the
618 public native boolean clipRect(int left, int top, int right, int bottom);
738 * @param left The left side of the rectangle to compare with the
752 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) {
753 return native_quickReject(mNativeCanvas, left, top, right, bottom,
919 drawRect(r.left, r.top, r.right, r.bottom, paint);
927 * @param left The left side of the rectangle to be drawn
933 public void drawRect(float left, float top, float right, float bottom, Paint paint) {
934 native_drawRect(mNativeCanvas, left, top, right, bottom, paint.mNativePaint);
1046 * Draw the specified bitmap, with its top/left corner at (x,y), using
1060 * @param left The position of the left side of the bitmap being drawn
1064 public void drawBitmap(Bitmap bitmap, float left, float top, Paint paint) {
1066 native_drawBitmap(mNativeCanvas, bitmap.ni(), left, top,
1213 * top of the bitmap from left to right. A more general version of this
1400 * bidi on the provided text, but renders it as a uniform right-to-left or
1401 * left-to-right run, as indicated by dir. Alignment of the text is as
1441 * bidi on the provided text, but renders it as a uniform right-to-left or
1442 * left-to-right run, as indicated by dir. Alignment of the text is as
1591 translate(dst.left, dst.top);
1604 translate(dst.left, dst.top);
1644 float left, float top,
1665 float left, float top,
1681 private static native void native_drawRect(int nativeCanvas, float left,
1698 float left, float top,