Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DRecapitalizeStatus.java35 private static final int[] ROTATION_STYLE = { field in RecapitalizeStatus
108 for (currentMode = ROTATION_STYLE.length - 1; currentMode > 0; --currentMode) { in start()
109 if (ROTATION_STYLE[currentMode] == initialMode) { in start()
150 mRotationStyleCurrentIndex = (mRotationStyleCurrentIndex + 1) % ROTATION_STYLE.length; in rotate()
151 if (CAPS_MODE_ORIGINAL_MIXED_CASE == ROTATION_STYLE[mRotationStyleCurrentIndex] in rotate()
154 (mRotationStyleCurrentIndex + 1) % ROTATION_STYLE.length; in rotate()
157 switch (ROTATION_STYLE[mRotationStyleCurrentIndex]) { in rotate()
174 } while (mStringAfter.equals(oldResult) && count < ROTATION_STYLE.length + 1); in rotate()
219 return ROTATION_STYLE[mRotationStyleCurrentIndex]; in getCurrentMode()