Searched refs:deleteSurroundingTextInCodePoints (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/widget/
H A DEmojiInputConnectionTest.java90 when(mInputConnection.deleteSurroundingTextInCodePoints(anyInt(), anyInt())).thenReturn(
127 assertFalse(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
128 verify(mInputConnection, times(1)).deleteSurroundingTextInCodePoints(1, 0);
135 assertTrue(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
136 verify(mInputConnection, never()).deleteSurroundingTextInCodePoints(anyInt(), anyInt());
143 assertTrue(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(0, 1));
144 verify(mInputConnection, never()).deleteSurroundingTextInCodePoints(anyInt(), anyInt());
151 assertFalse(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
152 verify(mInputConnection, times(1)).deleteSurroundingTextInCodePoints(1, 0);
/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
H A DEmojiInputConnection.java62 public boolean deleteSurroundingTextInCodePoints(final int beforeLength, method in class:EmojiInputConnection
66 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java47 * <li>{@link #deleteSurroundingTextInCodePoints(int, int)}, which
399 boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength); method in interface:InputConnection
H A DInputConnectionWrapper.java123 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
124 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
H A DBaseInputConnection.java372 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { method in class:BaseInputConnection
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl44 void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength);
H A DInputConnectionWrapper.java519 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
525 mIInputContext.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
H A DIInputConnectionWrapper.java187 public void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { method in class:IInputConnectionWrapper
461 Log.w(TAG, "deleteSurroundingTextInCodePoints on inactive InputConnection");
464 ic.deleteSurroundingTextInCodePoints(msg.arg1, msg.arg2);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5955 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { method in class:AbsListView.InputConnectionWrapper
5956 return getTarget().deleteSurroundingTextInCodePoints(beforeLength, afterLength);
/frameworks/base/config/
H A Dboot-image-profile.txt[all...]

Completed in 167 milliseconds