/packages/experimental/Bummer/src/com/android/dreams/bummer/ |
BummerView.java | 52 final float newx = (float) (Math.random() * (framew - textw)); 55 animate().x(newx) 60 setX(newx);
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
BummerView.java | 52 final float newx = (float) (Math.random() * (framew - textw)); 55 animate().x(newx) 60 setX(newx);
|
/external/skia/legacy/src/core/ |
SkEdge.cpp | 256 SkFixed newx, newy; local 264 newx = oldx + (dx >> shift); 271 newx = fQLastX; 274 success = this->updateLine(oldx, oldy, newx, newy); 275 oldx = newx; 279 fQx = newx; 431 SkFixed newx, newy; local 440 newx = oldx + (fCDx >> dshift); 451 newx = fCLastX; 454 success = this->updateLine(oldx, oldy, newx, newy) [all...] |
/external/skia/src/core/ |
SkEdge.cpp | 283 SkFixed newx, newy; local 291 newx = oldx + (dx >> shift); 298 newx = fQLastX; 301 success = this->updateLine(oldx, oldy, newx, newy); 302 oldx = newx; 306 fQx = newx; 458 SkFixed newx, newy; local 467 newx = oldx + (fCDx >> dshift); 478 newx = fCLastX; 488 success = this->updateLine(oldx, oldy, newx, newy) [all...] |
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
CubeWallpaper2.java | 265 float newx = (float)(Math.sin(yrot) * newz + Math.cos(yrot) * x); local 269 float screenX = newx / (4 - newz / 400);
|
/external/v8/test/mjsunit/ |
json.js | 291 function newx(k, v) { return (k == "x") ? new v(42) : v; } function 292 assertEquals('{"x":"42"}', JSON.stringify({x: String}, newx)); 293 assertEquals('{"x":42}', JSON.stringify({x: Number}, newx)); 294 assertEquals('{"x":true}', JSON.stringify({x: Boolean}, newx));
|