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

  /frameworks/support/emoji/core/tests/java/android/support/text/emoji/widget/
EmojiInputConnectionTest.java 93 when(mInputConnection.deleteSurroundingTextInCodePoints(anyInt(), anyInt())).thenReturn(
131 assertFalse(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
132 verify(mInputConnection, times(1)).deleteSurroundingTextInCodePoints(1, 0);
140 assertTrue(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
141 verify(mInputConnection, never()).deleteSurroundingTextInCodePoints(anyInt(), anyInt());
149 assertTrue(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(0, 1));
150 verify(mInputConnection, never()).deleteSurroundingTextInCodePoints(anyInt(), anyInt());
158 assertFalse(mEmojiEmojiInputConnection.deleteSurroundingTextInCodePoints(1, 0));
159 verify(mInputConnection, times(1)).deleteSurroundingTextInCodePoints(1, 0);
  /frameworks/support/emoji/core/src/android/support/text/emoji/widget/
EmojiInputConnection.java 61 public boolean deleteSurroundingTextInCodePoints(final int beforeLength,
65 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
  /frameworks/base/core/java/android/view/inputmethod/
InputConnectionWrapper.java 117 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
118 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
InputConnection.java 47 * <li>{@link #deleteSurroundingTextInCodePoints(int, int)}, which
400 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength);
    [all...]
BaseInputConnection.java 372 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
  /frameworks/base/core/java/com/android/internal/view/
IInputContext.aidl 44 void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength);
InputConnectionWrapper.java 456 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
462 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);
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
InputConnectionWrapperTest.java 97 wrapper.deleteSurroundingTextInCodePoints(10, 100);
98 verify(inputConnection, times(1)).deleteSurroundingTextInCodePoints(10, 100);
BaseInputConnectionTest.java 366 ic.deleteSurroundingTextInCodePoints(deleteBeforeInCodePoints, deleteAfterInCodePoints);
373 // InputConnection.deleteSurroundingTextInCodePoints() is not supposed to increase the text
398 * Tests {@link BaseInputConnection#deleteSurroundingTextInCodePoints(int, int)}
  /prebuilts/sdk/current/support/emoji/libs/
android-support-emoji.jar 
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 1733 milliseconds