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.java525 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in onStartBatchInput() local
526 if (Character.isLetterOrDigit(codePointBeforeCursor) in onStartBatchInput()
527 || settingsValues.isUsuallyFollowedBySpace(codePointBeforeCursor)) { in onStartBatchInput()
1140 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in handleBackspaceEvent() local
1141 if (codePointBeforeCursor == Constants.NOT_A_CODE) { in handleBackspaceEvent()
1153 Character.isSupplementaryCodePoint(codePointBeforeCursor) ? 2 : 1; in handleBackspaceEvent()
1256 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in trySwapSwapperAndSpace() local
1257 if (Constants.CODE_SPACE != codePointBeforeCursor) { in trySwapSwapperAndSpace()
1855 final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor(); in performSpecificTldProcessingOnTextInput() local
1857 if (Constants.CODE_PERIOD == codePointBeforeCursor) { in performSpecificTldProcessingOnTextInput()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DRichInputConnection.java796 final int codePointBeforeCursor = getCodePointBeforeCursor(); in removeTrailingSpace() local
797 if (Constants.CODE_SPACE == codePointBeforeCursor) { in removeTrailingSpace()