HomeSort by relevance Sort by last modified time
    Searched defs:deleteSurroundingTextInCodePoints (Results 1 - 10 of 10) sorted by null

  /frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
EmojiInputConnection.java 62 public boolean deleteSurroundingTextInCodePoints(final int beforeLength,
66 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
  /frameworks/base/core/java/android/view/inputmethod/
InputConnection.java 47 * <li>{@link #deleteSurroundingTextInCodePoints(int, int)}, which
399 boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength);
    [all...]
InputConnectionWrapper.java 123 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
124 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
BaseInputConnection.java 372 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
  /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/widget/
EmojiInputConnectionTest.java 90 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/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 519 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
525 mIInputContext.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
IInputConnectionWrapper.java 187 public void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
461 Log.w(TAG, "deleteSurroundingTextInCodePoints on inactive InputConnection");
464 ic.deleteSurroundingTextInCodePoints(msg.arg1, msg.arg2);
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 178 milliseconds