Home | History | Annotate | Download | only in graphics

Lines Matching refs:left

71         nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
76 public Region(int left, int top, int right, int bottom) {
78 nativeSetRect(mNativeRegion, left, top, right, bottom);
97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
102 public boolean set(int left, int top, int right, int bottom) {
103 return nativeSetRect(mNativeRegion, left, top, right, bottom);
182 return quickContains(r.left, r.top, r.right, r.bottom);
191 public native boolean quickContains(int left, int top, int right,
200 return quickReject(r.left, r.top, r.right, r.bottom);
208 public native boolean quickReject(int left, int top, int right, int bottom);
259 return nativeOp(mNativeRegion, r.left, r.top, r.right, r.bottom,
267 public boolean op(int left, int top, int right, int bottom, Op op) {
268 return nativeOp(mNativeRegion, left, top, right, bottom,
411 private static native boolean nativeSetRect(int native_dst, int left,
419 private static native boolean nativeOp(int native_dst, int left, int top,