Searched defs:scaleX (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherViewPropertyAnimator.java206 mViewPropertyAnimator.scaleX(mScaleX);
243 public LauncherViewPropertyAnimator scaleX(float value) { method in class:LauncherViewPropertyAnimator
H A DDragLayer.java459 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable,
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
609 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent);
625 mDropView.setScaleX(scaleX);
458 animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, int duration) argument
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DTiledTexture.java261 // | | by (scaleX, scaleY) | +----+ |
266 RectF src, float x0, float y0, float x, float y, float scaleX,
268 output.set(x + (src.left - x0) * scaleX,
270 x + (src.right - x0) * scaleX,
280 float scaleX = (float) width / mWidth;
287 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
299 float scaleX = (float) width / mWidth;
306 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
321 float scaleX = target.width() / source.width();
330 mapRect(dest, src, x0, y0, x, y, scaleX, scale
265 mapRect(RectF output, RectF src, float x0, float y0, float x, float y, float scaleX, float scaleY) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherViewPropertyAnimator.java207 mViewPropertyAnimator.scaleX(mScaleX);
247 public LauncherViewPropertyAnimator scaleX(float value) { method in class:LauncherViewPropertyAnimator
H A DDragLayer.java497 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable,
504 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
652 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent);
670 mDropView.setScaleX(scaleX);
496 animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, int duration) argument
H A DPagedView.java416 public void setScaleX(float scaleX) { argument
417 super.setScaleX(scaleX);
721 float scaleX = mFreeScroll ? getScaleX() : 1f;
722 int scrollX = (int) (mScroller.getCurrX() * (1 / scaleX));
1920 float scaleX = getScaleX();
1921 int vX = (int) (-velocityX * scaleX);
1922 int initialScrollX = (int) (getScrollX() * scaleX);
2446 ObjectAnimator.ofFloat(mDragView, "scaleX", 1f),
2497 mDragView.animate().scaleX(1.15f).scaleY(1.15f).setDuration(100).start();
2777 ObjectAnimator.ofFloat(dragView, "scaleX", toScal
[all...]
/packages/apps/Camera2/src/com/android/camera/ui/
H A DFilmStripView.java617 float scaleX = mView.getScaleX() * postScale;
619 updateTransform(transX, transY, scaleX, scaleY, viewportWidth,
623 void updateTransform(float transX, float transY, float scaleX, float scaleY, argument
628 left + mView.getWidth() * scaleX,
631 mView.setScaleX(scaleX);

Completed in 357 milliseconds