Home
last modified time | relevance | path

Searched refs:pointX (Results 1 – 7 of 7) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
DImageViewTouchBase.java389 public void zoomToPoint(float scale, float pointX, float pointY) { in zoomToPoint() argument
393 panBy(cx - pointX, cy - pointY); in zoomToPoint()
404 public void zoomToOffset(float scale, float pointX, float pointY) { in zoomToOffset() argument
414 panBy(-pointX, -pointY); in zoomToOffset()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DMoreKeysKeyboardView.java79 final int pointX, final int pointY, final KeyboardActionListener listener) { in showMoreKeysPanel() argument
84 final int x = pointX - getDefaultCoordX() - container.getPaddingLeft(); in showMoreKeysPanel()
DMoreKeysPanel.java64 public void showMoreKeysPanel(View parentView, Controller controller, int pointX, in showMoreKeysPanel() argument
DMainKeyboardView.java974 final int pointX = (mConfigShowMoreKeysKeyboardAtTouchedPoint && !keyPreviewEnabled) in openMoreKeysPanel() local
983 moreKeysPanel.showMoreKeysPanel(this, this, pointX, pointY, mKeyboardActionListener); in openMoreKeysPanel()
/packages/apps/Gallery/src/com/android/camera/
DImageViewTouchBase.java347 protected void zoomToPoint(float scale, float pointX, float pointY) { in zoomToPoint() argument
351 panBy(cx - pointX, cy - pointY); in zoomToPoint()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripView.java226 final int pointX = stripWidth / 2; in showMoreSuggestions() local
228 moreKeysPanel.showMoreKeysPanel(this, mMoreSuggestionsController, pointX, pointY, in showMoreSuggestions()
/packages/apps/Camera2/src/com/android/camera/ui/
DFilmStripView.java844 private int findTheNearestView(int pointX) { in findTheNearestView() argument
857 int min = Math.abs(pointX - mViewItem[nearest].getCenterX()); in findTheNearestView()
865 int dist = Math.abs(pointX - c); in findTheNearestView()