OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:keyboardheight
(Results
1 - 18
of
18
) sorted by null
/packages/inputmethods/LatinIME/java/res/values-sw540dp-land/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">283.5dp</dimen>
/packages/inputmethods/LatinIME/java/res/values-sw768dp-land/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">365.4dp</dimen>
/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/java/res/values-land/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">176.0dp</dimen>
/packages/inputmethods/LatinIME/java/res/values-sw540dp/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">302.4dp</dimen>
/packages/inputmethods/LatinIME/java/res/values-sw768dp/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">302.4dp</dimen>
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java
228
final float
keyboardHeight
;
230
keyboardHeight
= res.getDimension(R.dimen.
keyboardHeight
);
232
keyboardHeight
= Float.parseFloat(keyboardHeightString) * dm.density;
246
return (int)Math.max(Math.min(
keyboardHeight
, maxKeyboardHeight), minKeyboardHeight);
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp
52
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
30
const int keyboardWidth, const int
keyboardHeight
, const int gridWidth,
/packages/inputmethods/LatinIME/java/res/values/
dimens.xml
23
<!-- This
keyboardHeight
value should match with keyboard-heights.xml -->
24
<dimen name="
keyboardHeight
">205.6dp</dimen>
/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/internal/
GestureStroke.java
145
public void setKeyboardGeometry(final int keyWidth, final int
keyboardHeight
) {
147
mMinYCoordinate = -(int)(
keyboardHeight
* EXTRA_GESTURE_TRAIL_AREA_ABOVE_KEYBOARD_RATIO);
148
mMaxYCoordinate =
keyboardHeight
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java
153
final int
keyboardHeight
= ResourceUtils.getDefaultKeyboardHeight(res);
154
builder.setKeyboardGeometry(keyboardWidth,
keyboardHeight
);
KeyboardLayoutSet.java
236
public Builder setKeyboardGeometry(final int keyboardWidth, final int
keyboardHeight
) {
238
mParams.mKeyboardHeight =
keyboardHeight
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
[
all
...]
Completed in 669 milliseconds