Searched refs:ax (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/awt/org/apache/harmony/awt/gl/render/
H A DJavaArcRasterizer.java257 static int[] getSegment1(double angle, int ax, int ay, int xcount, int ycount) { argument
261 if (xcount < ax) {
268 bounds[2] = ax;
272 if (xcount > -ax) {
274 bounds[1] = -ax;
283 if (xcount < -ax) {
290 bounds[2] = -ax;
294 if (xcount > ax) {
296 bounds[1] = ax;
311 static int[] getSegment2(double angle, int ax, in argument
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCrossing.java158 double ax, ay, bx, by; field in class:Crossing.QuadCurve
162 ax = x2 - x1;
168 Ax = ax - Bx; // Ax = ax - 2.0 * bx
186 if (py1 < 0.0 && (bx != 0.0 ? bx : ax - bx) < 0.0) {
193 if (py1 < ay && (ax != bx ? ax - bx : bx) > 0.0) {
256 double ax, ay, bx, by, cx, cy; field in class:Crossing.CubicCurve
261 ax = x2 - x1;
270 Ax = ax
[all...]
/frameworks/base/awt/java/awt/geom/
H A DCubicCurve2D.java871 double ax = (cx1 + cx) / 2.0;
875 cx = (ax + bx) / 2.0;
878 left.setCurve(x1, y1, cx1, cy1, ax, ay, cx, cy);
930 double ax = (cx1 + cx) / 2.0;
934 cx = (ax + bx) / 2.0;
941 left[leftOff + 4] = ax;
/frameworks/base/awt/java/awt/
H A DBasicStroke.java1198 double ax = -x34 - x12 + x23 + x23;
1208 double px = t * (t * (t * ax + bx) + cx) + x1;
1461 double ax = x1 + x3 - x2 - x2;
1476 double dx = t * ax + bx;
1478 scx = t * (dx + bx) + cx; // t^2 * ax + 2.0 * t * bx + cx
1591 double ax = x4 - x1 + 3.0 * (x2 - x3);
1609 scx = t * (t * (t * ax + bx) + cx) + dx;
1614 double dx1 = t * (t * (ax + ax + ax)
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java4897 int ax = Math.abs(deltaX);
4899 if (ax > MAX_SLOPE_FOR_DIAG * ay) {
4902 } else if (ay > MAX_SLOPE_FOR_DIAG * ax) {
4943 int ax = Math.abs(deltaX);
4947 if (ay > MAX_SLOPE_FOR_DIAG * ax
4952 if (ax > MAX_SLOPE_FOR_DIAG * ay &&
4960 if (ax > MAX_SLOPE_FOR_DIAG * ay
4961 && ax > MIN_BREAK_SNAP_CROSS_DISTANCE) {
4965 if (ay > MAX_SLOPE_FOR_DIAG * ax &&
5468 float ax
[all...]

Completed in 138 milliseconds