Searched defs:scaleX (Results 1 - 8 of 8) 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/Launcher3/src/com/android/launcher3/
H A DFocusIndicatorView.java30 // It can be any number >0. The view is resized using scaleX and scaleY.
93 nextState.scaleX = v.getScaleX() * v.getWidth() / indicatorWidth;
97 nextState.x = mTargetViewPos[0] - mIndicatorPos[0] - (1 - nextState.scaleX) * indicatorWidth / 2;
106 PropertyValuesHolder.ofFloat(View.SCALE_X, mTargetState.scaleX),
141 setScaleX(state.scaleX);
178 float x, y, scaleX, scaleY; field in class:FocusIndicatorView.ViewAnimState
H A DLauncherViewPropertyAnimator.java207 mViewPropertyAnimator.scaleX(mScaleX);
247 public LauncherViewPropertyAnimator scaleX(float value) { method in class:LauncherViewPropertyAnimator
H A DDragLayer.java537 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable,
544 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
696 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent);
714 mDropView.setScaleX(scaleX);
536 animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, int duration) argument
H A DPagedView.java408 public void setScaleX(float scaleX) { argument
409 super.setScaleX(scaleX);
736 float scaleX = mFreeScroll ? getScaleX() : 1f;
737 int scrollX = (int) (mScroller.getCurrX() * (1 / scaleX));
1945 float scaleX = getScaleX();
1946 int vX = (int) (-velocityX * scaleX);
1947 int initialScrollX = (int) (getScrollX() * scaleX);
2495 ObjectAnimator.ofFloat(mDragView, "scaleX", 1f),
2546 mDragView.animate().scaleX(1.15f).scaleY(1.15f).setDuration(100).start();
2826 ObjectAnimator.ofFloat(dragView, "scaleX", toScal
[all...]
/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/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java557 float scaleX = mView.getScaleX() * postScale;
559 updateTransform(transX, transY, scaleX, scaleY, viewportWidth,
563 void updateTransform(float transX, float transY, float scaleX, float scaleY, argument
568 left + mView.getWidth() * scaleX,
571 mView.setScaleX(scaleX);

Completed in 119 milliseconds