HomeSort by relevance Sort by last modified time
    Searched full:keyboardheight (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/res/res/values-large/
dimens.xml 24 <!-- keyboardHeight = key_height*4 + key_bottom_gap*3 -->
  /frameworks/base/core/res/res/values-xlarge/
dimens.xml 25 <!-- keyboardHeight = key_height*4 + key_bottom_gap*3 -->
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetTestsBase.java 128 final int keyboardHeight = ResourceUtils.getDefaultKeyboardHeight(res);
130 builder.setKeyboardGeometry(keyboardWidth, keyboardHeight)
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 53 const int keyboardWidth, const int keyboardHeight, const int gridWidth,
65 CELL_HEIGHT((keyboardHeight + gridHeight - 1) / gridHeight),
67 KEYBOARD_WIDTH(keyboardWidth), KEYBOARD_HEIGHT(keyboardHeight),
proximity_info.h 31 const int keyboardWidth, const int keyboardHeight, const int gridWidth,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 193 final float keyboardHeight;
195 keyboardHeight = res.getDimension(R.dimen.config_default_keyboard_height);
197 keyboardHeight = Float.parseFloat(keyboardHeightInDp) * dm.density;
211 return (int)Math.max(Math.min(keyboardHeight, maxKeyboardHeight), minKeyboardHeight);
DistracterFilterCheckingExactMatchesAndSuggestions.java 132 final int keyboardHeight = ResourceUtils.getDefaultKeyboardHeight(res);
133 builder.setKeyboardGeometry(keyboardWidth, keyboardHeight);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
BatchInputArbiter.java 51 public void setKeyboardGeometry(final int keyWidth, final int keyboardHeight) {
52 mRecognitionPoints.setKeyboardGeometry(keyWidth, keyboardHeight);
GestureStrokeRecognitionPoints.java 80 public void setKeyboardGeometry(final int keyWidth, final int keyboardHeight) {
82 mMinYCoordinate = -(int)(keyboardHeight * EXTRA_GESTURE_TRAIL_AREA_ABOVE_KEYBOARD_RATIO);
83 mMaxYCoordinate = keyboardHeight;
  /frameworks/base/core/res/res/xml-xlarge/
password_kbd_qwerty.xml 23 keyboardHeight="@dimen/password_keyboard_height"
password_kbd_qwerty_shifted.xml 23 keyboardHeight="@dimen/password_keyboard_height"
password_kbd_symbols.xml 23 keyboardHeight="@dimen/password_keyboard_height"
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 116 final int keyboardHeight = ResourceUtils.getDefaultKeyboardHeight(res);
117 builder.setKeyboardGeometry(keyboardWidth, keyboardHeight);
KeyboardLayoutSet.java 250 public Builder setKeyboardGeometry(final int keyboardWidth, final int keyboardHeight) {
252 mParams.mKeyboardHeight = keyboardHeight;

Completed in 1455 milliseconds