Home
last modified time | relevance | path

Searched refs:selectTextSize (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyDrawParams.java97 mLargeLetterSize = selectTextSize(keyHeight, attr.mLargeLetterRatio, mLargeLetterSize); in updateParams()
98 mHintLetterSize = selectTextSize(keyHeight, attr.mHintLetterRatio, mHintLetterSize); in updateParams()
99 mShiftedLetterHintSize = selectTextSize(keyHeight, in updateParams()
101 mHintLabelSize = selectTextSize(keyHeight, attr.mHintLabelRatio, mHintLabelSize); in updateParams()
102 mPreviewTextSize = selectTextSize(keyHeight, attr.mPreviewTextRatio, mPreviewTextSize); in updateParams()
146 private static int selectTextSize(final int keyHeight, final float ratio, in selectTextSize() method in KeyDrawParams
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardView.java399 paint.setTextSize(key.selectTextSize(params)); in onDrawKeyTopVisuals()
547 paint.setTextSize(key.selectTextSize(mKeyDrawParams)); in newLabelPaint()
DKey.java649 public final int selectTextSize(final KeyDrawParams params) { in selectTextSize() method in Key