Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/inputmethod/
DRemoteInputConnectionImpl.java335 final TextSnapshot textSnapshot = ic.takeSnapshot(); in scheduleInvalidateInput() local
336 if (textSnapshot != null && mParentInputMethodManager.doInvalidateInput( in scheduleInvalidateInput()
337 this, textSnapshot, nextSessionId)) { in scheduleInvalidateInput()
DInputMethodManager.java3083 @NonNull TextSnapshot textSnapshot, int sessionId) { in doInvalidateInput() argument
3094 editorInfo.initialSelStart = mCursorSelStart = textSnapshot.getSelectionStart(); in doInvalidateInput()
3095 editorInfo.initialSelEnd = mCursorSelEnd = textSnapshot.getSelectionEnd(); in doInvalidateInput()
3096 mCursorCandStart = textSnapshot.getCompositionStart(); in doInvalidateInput()
3097 mCursorCandEnd = textSnapshot.getCompositionEnd(); in doInvalidateInput()
3098 editorInfo.initialCapsMode = textSnapshot.getCursorCapsMode(); in doInvalidateInput()
3099 editorInfo.setInitialSurroundingTextInternal(textSnapshot.getSurroundingText()); in doInvalidateInput()