Searched defs:ry (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/awt/java/awt/geom/
H A DEllipse2D.java423 public boolean intersects(double rx, double ry, double rw, double rh) { argument
432 double ry1 = ry;
434 double ry2 = ry + rh;
442 public boolean contains(double rx, double ry, double rw, double rh) { argument
448 double ry1 = ry;
450 double ry2 = ry + rh;
H A DLine2D.java159 float rx, ry, rw, rh;
168 ry = y1;
171 ry = y2;
174 return new Rectangle2D.Float(rx, ry, rw, rh);
280 double rx, ry, rw, rh;
289 ry = y1;
292 ry = y2;
295 return new Rectangle2D.Double(rx, ry, rw, rh);
919 public boolean contains(double rx, double ry, double rw, double rh) { argument
923 public boolean intersects(double rx, double ry, doubl argument
[all...]
H A DRoundRectangle2D.java590 public boolean intersects(double rx, double ry, double rw, double rh) { argument
601 double ry1 = ry;
603 double ry2 = ry + rh;
618 public boolean contains(double rx, double ry, double rw, double rh) { argument
624 double ry1 = ry;
626 double ry2 = ry + rh;
H A DArc2D.java1081 public boolean contains(double rx, double ry, double rw, double rh) { argument
1083 if (!(contains(rx, ry) && contains(rx + rw, ry) && contains(rx + rw, ry + rh) && contains(
1084 rx, ry + rh))) {
1093 Rectangle2D r = new Rectangle2D.Double(rx, ry, rw, rh);
1113 public boolean intersects(double rx, double ry, double rw, double rh) { argument
1120 if (contains(rx, ry) || contains(rx + rw, ry) || contains(rx, ry
[all...]
H A DCubicCurve2D.java1005 public boolean contains(double rx, double ry, double rw, double rh) { argument
1006 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
1010 public boolean intersects(double rx, double ry, double rw, double rh) { argument
1011 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
H A DGeneralPath.java582 public boolean contains(double rx, double ry, double rw, double rh) { argument
583 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
587 public boolean intersects(double rx, double ry, double rw, double rh) { argument
588 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
H A DQuadCurve2D.java875 public boolean contains(double rx, double ry, double rw, double rh) { argument
876 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
880 public boolean intersects(double rx, double ry, double rw, double rh) { argument
881 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
/frameworks/base/awt/java/awt/
H A DRectangle.java513 * Determines whether or not the rectangle specified by [rx, ry, rw, rh]
518 * @param ry
524 * @return true, if a rectangle with [rx, ry, rw, rh] parameters is entirely
527 public boolean contains(int rx, int ry, int rw, int rh) { argument
528 return contains(rx, ry) && contains(rx + rw - 1, ry + rh - 1);
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dfxp_mul32_arm_gcc.h195 register Int32 ry = (Int32)y; local
202 "r"(ry),
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp195 jfloat rx, jfloat ry, SkPath::Direction dir) {
199 SkScalar ry_ = SkFloatToScalar(ry);
194 addRoundRectXY(JNIEnv* env, jobject clazz, SkPath* obj, jobject rect, jfloat rx, jfloat ry, SkPath::Direction dir) argument
H A DCanvas.cpp439 jobject jrect, jfloat rx, jfloat ry,
443 canvas->drawRoundRect(rect, SkFloatToScalar(rx), SkFloatToScalar(ry),
438 drawRoundRect(JNIEnv* env, jobject, SkCanvas* canvas, jobject jrect, jfloat rx, jfloat ry, SkPaint* paint) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath.java486 * @param ry The y-radius of the rounded corners on the round-rectangle
489 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
H A DCanvas.java830 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { argument
840 int arcHeight = (int)(ry * 2);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java415 * @param ry The y-radius of the rounded corners on the round-rectangle
418 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
422 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt);
580 float rx, float ry, int dir);
579 native_addRoundRect(int nPath, RectF rect, float rx, float ry, int dir) argument
H A DCanvas.java931 * @param ry The y-radius of the oval used to round the corners
934 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { argument
938 native_drawRoundRect(mNativeCanvas, rect, rx, ry,
1521 float ry, int paint);
1519 native_drawRoundRect(int nativeCanvas, RectF rect, float rx, float ry, int paint) argument
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp727 const GLfixed ry = rhs->y; local
728 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]);
729 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]);
730 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]);
731 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]);
737 const GLfixed ry = rhs->y; local
739 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]);
740 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]);
741 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]);
742 lhs->w = mla3a(rx, m[ 3], ry,
748 const GLfixed ry = rhs->y; local
763 const GLfixed ry = rhs->y; local
777 const GLfixed ry = rhs->y; local
[all...]

Completed in 68 milliseconds