Home
last modified time | relevance | path

Searched refs:translateY (Results 1 – 9 of 9) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DInputView.java138 protected int translateY(final int y) { in translateY() method in InputView.MotionEventForwarder
178 me.setLocation(translateX(x), translateY(y)); in onTouchEvent()
217 protected int translateY(final int y) { in translateY() method in InputView.KeyboardTopPaddingForwarder
218 final int translatedY = super.translateY(y); in translateY()
/packages/apps/Camera2/src/com/android/camera/
DAnimationManager.java63 ObjectAnimator translateY = ObjectAnimator.ofFloat(view, "translationY", in startCaptureAnimation() local
66 translateY.addListener(new Animator.AnimatorListener() { in startCaptureAnimation()
97 translateY, in startCaptureAnimation() local
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DTaskThumbnailView.java589 int translateY = 0; in setThumbnailRotation() local
601 translateY = thumbnailPosition.width(); in setThumbnailRotation()
607 translateY = thumbnailPosition.height(); in setThumbnailRotation()
612 translateY - mClippedInsets.top); in setThumbnailRotation()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageShow.java647 float translateY = (mTouch.y - mTouchDown.y) / scaleFactor; in onTouchEvent() local
651 translation.y = (int) (originalTranslation.y + translateY); in onTouchEvent()
759 float translateY = (getHeight() / 2 - y); in onDoubleTap() local
765 translation.y = (int) (mOriginalTranslation.y + translateY); in onDoubleTap()
940 float translateY = (focusy - mStartFocusY) / scaleFactor;
943 translation.y = (int) (mOriginalTranslation.y + translateY);
DMasterImage.java583 float translateY = 0; in computeImageToScreen() local
601 translateY = (mImageShowSize.y - (size.height() * scale)) / 2.0f; in computeImageToScreen()
609 m.postTranslate(translateX, translateY); in computeImageToScreen()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DMoreKeysPanel.java118 public int translateY(int y); in translateY() method
DPointerTracker.java764 final int translatedY = mMoreKeysPanel.translateY(y); in onMoveEvent()
972 final int translatedY = mMoreKeysPanel.translateY(y); in onUpEventInternal()
1050 final int translatedY = moreKeysPanel.translateY(mLastY); in onLongPressed()
DMoreKeysKeyboardView.java256 public int translateY(final int y) { in translateY() method in MoreKeysKeyboardView
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripView.java408 final int y = mMoreSuggestionsView.translateY((int)me.getY(index)); in onTouchEvent()