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

/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DPropertyListBuilder.java30 public PropertyListBuilder scaleY(float value) { method in class:PropertyListBuilder
36 * Helper method to set both scaleX and scaleY
39 return scaleX(value).scaleY(value);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherAnimUtils.java113 float alpha, float scaleX, float scaleY) {
117 PropertyValuesHolder.ofFloat(View.SCALE_Y, scaleY));
112 ofViewAlphaAndScale(View target, float alpha, float scaleX, float scaleY) argument
H A DUtilities.java249 public static float shrinkRect(Rect r, float scaleX, float scaleY) { argument
250 float scale = Math.min(Math.min(scaleX, scaleY), 1.0f);
256 int deltaY = (int) (r.height() * (scaleY - scale) * 0.5f);
/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/Dialer/java/com/android/dialer/callcomposer/camera/exif/
H A DExifInterface.java291 int scaleY = 1; field in class:ExifInterface.OrientationParams
302 params.scaleY = -1;
/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/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragLayer.java563 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable,
570 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
723 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent);
741 mDropView.setScaleY(scaleY);
562 animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, int duration) argument
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java552 float scaleY = mView.getScaleY() * postScale;
553 updateTransform(transX, transY, scaleX, scaleY, viewportWidth,
557 void updateTransform(float transX, float transY, float scaleX, float scaleY, argument
563 top + mView.getHeight() * scaleY),
566 mView.setScaleY(scaleY);
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DExifInterface.java1904 params.scaleY = -1;
1934 public int scaleY = 1; field in class:ExifInterface.OrientationParams

Completed in 291 milliseconds