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

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherViewPropertyAnimator.java212 mViewPropertyAnimator.scaleY(mScaleY);
249 public LauncherViewPropertyAnimator scaleY(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,
610 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent);
626 mDropView.setScaleY(scaleY);
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.
94 nextState.scaleY = v.getScaleY() * v.getHeight() / indicatorHeight;
98 nextState.y = mTargetViewPos[1] - mIndicatorPos[1] - (1 - nextState.scaleY) * indicatorHeight / 2;
107 PropertyValuesHolder.ofFloat(View.SCALE_Y, mTargetState.scaleY));
142 setScaleY(state.scaleY);
178 float x, y, scaleX, scaleY; field in class:FocusIndicatorView.ViewAnimState
H A DLauncherViewPropertyAnimator.java213 mViewPropertyAnimator.scaleY(mScaleY);
253 public LauncherViewPropertyAnimator scaleY(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,
697 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent);
715 mDropView.setScaleY(scaleY);
536 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) | +----+ |
267 float scaleY) {
269 y + (src.top - y0) * scaleY,
271 y + (src.bottom - y0) * scaleY);
281 float scaleY = (float) height / mHeight;
287 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
300 float scaleY = (float) height / mHeight;
306 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
322 float scaleY = target.height() / source.height();
330 mapRect(dest, src, x0, y0, x, y, scaleX, scaleY);
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.java558 float scaleY = mView.getScaleY() * postScale;
559 updateTransform(transX, transY, scaleX, scaleY, viewportWidth,
563 void updateTransform(float transX, float transY, float scaleX, float scaleY, argument
569 top + mView.getHeight() * scaleY),
572 mView.setScaleY(scaleY);

Completed in 149 milliseconds