Home
last modified time | relevance | path

Searched refs:scaleY (Results 1 – 25 of 41) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DTiledTexture.java267 float scaleY) { in mapRect() argument
269 y + (src.top - y0) * scaleY, in mapRect()
271 y + (src.bottom - y0) * scaleY); in mapRect()
281 float scaleY = (float) height / mHeight; in drawMixed() local
287 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY); in drawMixed()
300 float scaleY = (float) height / mHeight; in draw() local
306 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY); in draw()
322 float scaleY = target.height() / source.height(); in draw() local
330 mapRect(dest, src, x0, y0, x, y, scaleX, scaleY); in draw()
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusIndicatorView.java93 nextState.scaleY = v.getScaleY() * v.getHeight() / indicatorHeight; in onFocusChange()
97 … nextState.y = mTargetViewPos[1] - mIndicatorPos[1] - (1 - nextState.scaleY) * indicatorHeight / 2; in onFocusChange()
106 PropertyValuesHolder.ofFloat(View.SCALE_Y, mTargetState.scaleY)); in onFocusChange()
141 setScaleY(state.scaleY); in applyState()
182 float x, y, scaleX, scaleY; field in FocusIndicatorView.ViewAnimState
DFolder.java462 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f); in animateOpen() local
464 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY); in animateOpen()
635 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.9f); in animateClosed() local
637 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY); in animateClosed()
1223 float scaleY = getScaleY(); in onDrop() local
1229 setScaleY(scaleY); in onDrop()
DDragLayer.java573 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, in animateViewIntoPosition() argument
580 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
732 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent); in animateView()
750 mDropView.setScaleY(scaleY); in animateView()
DPageIndicatorMarker.java70 .scaleY(1f) in activate()
93 .scaleY(0.5f) in inactivate()
DLauncherViewPropertyAnimator.java213 mViewPropertyAnimator.scaleY(mScaleY); in start()
253 public LauncherViewPropertyAnimator scaleY(float value) { in scaleY() method in LauncherViewPropertyAnimator
DLauncherClings.java169 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1); in showLongPressCling()
170 anim = LauncherAnimUtils.ofPropertyValuesHolder(content, scaleX, scaleY); in showLongPressCling()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
DBaseScrollAdapterFragment.java197 float scaleY = (float) view.getHeight() / selectorHeight; in onScrolled() local
206 mSelectorView.setScaleY(scaleY); in onScrolled()
210 animation.scaleY(scaleY); in onScrolled()
/packages/apps/Camera2/src/com/android/camera/
DAnimationManager.java53 float scaleY = ((float) parentView.getHeight()) / ((float) view.getHeight()); in startCaptureAnimation() local
54 float scale = scaleX > scaleY ? scaleX : scaleY; in startCaptureAnimation()
/packages/apps/Launcher2/src/com/android/launcher2/
DDragLayer.java459 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, in animateViewIntoPosition() argument
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
610 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent); in animateView()
626 mDropView.setScaleY(scaleY); in animateView()
DFolder.java422 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f); in animateOpen() local
424 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY); in animateOpen()
472 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.9f); in animateClosed() local
474 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY); in animateClosed()
DLauncherViewPropertyAnimator.java212 mViewPropertyAnimator.scaleY(mScaleY); in start()
249 public LauncherViewPropertyAnimator scaleY(float value) { in scaleY() method in LauncherViewPropertyAnimator
DFolderIcon.java378 float scaleY = getScaleY(); in onDrop() local
384 setScaleY(scaleY); in onDrop()
/packages/apps/Messaging/src/com/android/messaging/ui/
DMultiAttachmentLayout.java378 final float scaleY = viewWrapper.prevHeight / (float) view.getHeight(); in trySlideAttachmentView() local
380 if (xOffset == 0 && yOffset == 0 && scaleX == 1 && scaleY == 1) { in trySlideAttachmentView()
388 animationSet.addAnimation(new ScaleAnimation(scaleX, 1, scaleY, 1)); in trySlideAttachmentView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DSettingsLayoutFragment.java807 float scaleY = (float) focusedChild.getHeight() / selectorHeight; in onScrollStateChanged() local
814 mSelectorView.setScaleY(scaleY); in onScrollStateChanged()
817 animation.scaleY(scaleY); in onScrollStateChanged()
DDialogFragment.java784 float scaleY = (float) focusedChild.getHeight() / selectorHeight; in fadeIn() local
794 mSelectorView.setScaleY(scaleY); in fadeIn()
799 animation.scaleY(scaleY); in fadeIn()
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
DTiledImageRenderer.java626 float scaleY = (float) mPreview.getHeight() / mImageHeight; in drawTile() local
627 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX, in drawTile()
628 (ty + size) * scaleY); in drawTile()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DTileImageView.java616 float scaleY = (float) mScreenNail.getHeight() / mImageHeight; in drawTile() local
617 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX, in drawTile()
618 (ty + size) * scaleY); in drawTile()
/packages/apps/Gallery2/src/com/android/photos/views/
DTiledImageRenderer.java625 float scaleY = (float) mPreview.getHeight() / mImageHeight; in drawTile() local
626 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX, in drawTile()
627 (ty + size) * scaleY); in drawTile()
/packages/apps/Camera/src/com/android/camera/ui/
DCameraSwitcher.java254 .scaleX(0.3f).scaleY(0.3f) in animateHidePopup()
284 .scaleX(1f).scaleY(1f) in animateShowPopup()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DGalleryActivity.java264 float scaleY = decor.getHeight() / maxY; in onGenericMotionEvent() local
267 float y = event.getY() * scaleY; in onGenericMotionEvent()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DUtils.java671 double scaleX, scaleY; in getReducedSizeBitmap() local
673 scaleY = newHeight / originalHeight; in getReducedSizeBitmap()
674 final double scale = Math.min(scaleX, scaleY); in getReducedSizeBitmap()
/packages/apps/Camera2/src/com/android/camera/widget/
DFilmstripView.java552 float scaleY = mView.getScaleY() * postScale; in postScale() local
553 updateTransform(transX, transY, scaleX, scaleY, viewportWidth, in postScale()
557 void updateTransform(float transX, float transY, float scaleX, float scaleY, in updateTransform() argument
563 top + mView.getHeight() * scaleY), in updateTransform()
566 mView.setScaleY(scaleY); in updateTransform()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPhotoTable.java730 .scaleY(scale) in placeOnDeck()
869 .scaleY(mTableRatio / mImageRatio) in dropOnTable()
948 .scaleY(scale) in pickUp()
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
DGlowPadView.java1089 float scaleY = 1f;
1114 scaleY = (1f * actualHeight - mMaxTargetHeight) /
1119 return Math.min(scaleX, scaleY);

12