Searched refs:mx (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCrossing.java467 double mx, my, cx, cy;
468 mx = my = cx = cy = 0.0;
474 if (cx != mx || cy != my) {
475 cross += crossLine(cx, cy, mx, my, x, y);
477 mx = cx = coords[0];
490 if (cy != my || cx != mx) {
491 cross += crossLine(cx, cy, cx = mx, cy = my, x, y);
498 cross += crossLine(cx, cy, mx, my, x, y);
814 double mx, my, cx, cy;
815 mx
[all...]
/frameworks/base/awt/java/awt/geom/
H A DArc2D.java516 double mx; field in class:Arc2D.Iterator
596 coords[0] = mx = x + cos * width;
601 coords[0] = mx - kx;
608 coords[4] = mx = x + cos * width;
610 coords[2] = mx + kx;
641 coords[0] = (float)(mx = x + cos * width);
646 coords[0] = (float)(mx - kx);
653 coords[4] = (float)(mx = x + cos * width);
655 coords[2] = (float)(mx + kx);
H A DAffineTransform.java501 * @param mx
506 public void setToTranslation(double mx, double my) { argument
509 m02 = mx;
511 if (mx == 0.0 && my == 0.0) {
614 * @param mx
620 public static AffineTransform getTranslateInstance(double mx, double my) { argument
622 t.setToTranslation(mx, my);
699 * @param mx
704 public void translate(double mx, double my) { argument
705 concatenate(AffineTransform.getTranslateInstance(mx, m
[all...]
/frameworks/base/awt/java/awt/
H A DPolygon.java321 * @param mx
326 public void translate(int mx, int my) { argument
328 xpoints[i] += mx;
332 bounds.translate(mx, my);
H A DBasicStroke.java182 double mx, my, cx, cy; field in class:BasicStroke
498 mx = my = cx = cy = 0.0;
511 mx = cx = coords[0];
527 addLine(cx, cy, mx, my, false);
528 addJoin(lp, mx, my, lp.xMove, lp.yMove, true);
529 addJoin(rp, mx, my, rp.xMove, rp.yMove, false);
551 addCap(lp, mx, my, lp.xMove, lp.yMove);
563 mx = my = cx = cy = 0.0;
584 mx = cx = coords[0];
598 addDashLine(cx, cy, cx = mx, c
[all...]
H A DRectangle.java418 * Moves a rectangle a distance of mx along the x coordinate axis and a
421 * @param mx
426 public void translate(int mx, int my) { argument
427 x += mx;
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp724 void point2__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { argument
725 const GLfixed* const m = mx->matrix.m;
734 void point3__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { argument
735 const GLfixed* const m = mx->matrix.m;
745 void point4__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { argument
746 const GLfixed* const m = mx->matrix.m;
757 void point3__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { argument
761 const GLfixed* const m = mx->matrix.m;
771 void point4__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) { argument
775 const GLfixed* const m = mx
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputDevice.java172 MotionState(int mx, int my) { argument
173 xPrecision = mx;
175 xMoveScale = mx != 0 ? (1.0f/mx) : 1.0f;

Completed in 57 milliseconds