Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java524 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in onStartBatchInput() local
525 if (Character.isLetterOrDigit(codePointBeforeCursor) in onStartBatchInput()
526 || settingsValues.isUsuallyFollowedBySpace(codePointBeforeCursor)) { in onStartBatchInput()
1117 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in handleBackspaceEvent() local
1118 if (codePointBeforeCursor == Constants.NOT_A_CODE) { in handleBackspaceEvent()
1129 Character.isSupplementaryCodePoint(codePointBeforeCursor) ? 2 : 1; in handleBackspaceEvent()
1172 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in trySwapSwapperAndSpace() local
1173 if (Constants.CODE_SPACE != codePointBeforeCursor) { in trySwapSwapperAndSpace()
1791 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in performSpecificTldProcessingOnTextInput() local
1793 if (Constants.CODE_PERIOD == codePointBeforeCursor) { in performSpecificTldProcessingOnTextInput()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DRichInputConnection.java732 final int codePointBeforeCursor = getCodePointBeforeCursor(); in removeTrailingSpace() local
733 if (Constants.CODE_SPACE == codePointBeforeCursor) { in removeTrailingSpace()