Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
DMoreKeysKeyboardBuilderFixedOrderTests.java78 assertEquals("1 key fix 5 M0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5M0()
90 assertEquals("1 key fix 5 L0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5L0()
102 assertEquals("1 key fix 5 L1 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5L1()
114 assertEquals("1 key fix 5 L2 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5L2()
126 assertEquals("1 key fix 5 R0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5R0()
138 assertEquals("1 key fix 5 R1 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5R1()
150 assertEquals("1 key fix 5 R2 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyFix5R2()
163 assertEquals("2 key fix 5 M0 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyFix5M0()
176 assertEquals("2 key fix 5 L0 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyFix5L0()
189 assertEquals("2 key fix 5 L1 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyFix5L1()
[all …]
DMoreKeysKeyboardBuilderTests.java78 assertEquals("1 key max 5 M0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5M0()
90 assertEquals("1 key max 5 L0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5L0()
102 assertEquals("1 key max 5 L1 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5L1()
114 assertEquals("1 key max 5 L2 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5L2()
126 assertEquals("1 key max 5 R0 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5R0()
138 assertEquals("1 key max 5 R1 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5R1()
150 assertEquals("1 key max 5 R2 adjust", 0, params.mTopRowAdjustment); in testLayout1KeyMax5R2()
163 assertEquals("2 key max 5 M0 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyMax5M0()
176 assertEquals("2 key max 5 L0 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyMax5L0()
189 assertEquals("2 key max 5 L1 adjust", 0, params.mTopRowAdjustment); in testLayout2KeyMax5L1()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DMoreKeysKeyboard.java48 /* package */int mTopRowAdjustment; field in MoreKeysKeyboard.MoreKeysKeyboardParams
126 mTopRowAdjustment = mIsFixedOrder ? getFixedOrderTopRowAdjustment() in setParameters()
166 final int numLeftKeys = mLeftKeys + mTopRowAdjustment; in getFixedOrderColumnPos()
182 leftKeys += mTopRowAdjustment; in getAutomaticColumnPos()
234 return x + mTopRowAdjustment * (mColumnWidth / 2); in getX()