Home
last modified time | relevance | path

Searched refs:mCoordinates (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DMoreKeysKeyboardView.java41 private final int[] mCoordinates = CoordinateUtils.newInstance(); field in MoreKeysKeyboardView
133 parentView.getLocationInWindow(mCoordinates); in showMoreKeysPanel()
136 final int panelX = Math.max(0, Math.min(maxX, x)) + CoordinateUtils.x(mCoordinates); in showMoreKeysPanel()
137 final int panelY = y + CoordinateUtils.y(mCoordinates); in showMoreKeysPanel()
/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/
DKeyboardView.java170 private final int[] mCoordinates = new int[2]; field in KeyboardView
1070 getLocationInWindow(mCoordinates); in showKey()
1071 mCoordinates[0] += mMiniKeyboardOffsetX; // Offset may be zero in showKey()
1072 mCoordinates[1] += mMiniKeyboardOffsetY; // Offset may be zero in showKey()
1079 mPopupPreviewX += mCoordinates[0]; in showKey()
1080 mPopupPreviewY += mCoordinates[1]; in showKey()
1083 getLocationOnScreen(mCoordinates); in showKey()
1084 if (mPopupPreviewY + mCoordinates[1] < 0) { in showKey()