Home
last modified time | relevance | path

Searched refs:afterLength (Results 1 – 10 of 10) sorted by relevance

/frameworks/support/emoji/core/src/android/support/text/emoji/widget/
DEmojiInputConnection.java54 public boolean deleteSurroundingText(final int beforeLength, final int afterLength) { in deleteSurroundingText() argument
56 beforeLength, afterLength, false /*inCodePoints*/); in deleteSurroundingText()
57 return result || super.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
62 final int afterLength) { in deleteSurroundingTextInCodePoints() argument
64 beforeLength, afterLength, true /*inCodePoints*/); in deleteSurroundingTextInCodePoints()
65 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
/frameworks/base/core/java/android/view/inputmethod/
DInputConnectionWrapper.java117 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
118 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
125 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
126 return mTarget.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
DInputConnection.java372 public boolean deleteSurroundingText(int beforeLength, int afterLength); in deleteSurroundingText() argument
400 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength); in deleteSurroundingTextInCodePoints() argument
DBaseInputConnection.java215 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
217 + " / " + afterLength); in deleteSurroundingText()
254 if (afterLength > 0) { in deleteSurroundingText()
257 int end = b + afterLength; in deleteSurroundingText()
372 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
374 + " / " + afterLength); in deleteSurroundingTextInCodePoints()
405 final int end = findIndexForward(content, b, Math.max(afterLength, 0)); in deleteSurroundingTextInCodePoints()
/frameworks/base/core/java/com/android/internal/view/
DIInputContext.aidl43 void deleteSurroundingText(int beforeLength, int afterLength); in deleteSurroundingText() argument
44 void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength); in deleteSurroundingTextInCodePoints() argument
DInputConnectionWrapper.java447 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
449 mIInputContext.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
456 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
462 mIInputContext.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
DIInputConnectionWrapper.java182 public void deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
184 beforeLength, afterLength)); in deleteSurroundingText()
187 public void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
189 beforeLength, afterLength)); in deleteSurroundingTextInCodePoints()
/frameworks/support/emoji/core/src/android/support/text/emoji/
DEmojiProcessor.java340 @IntRange(from = 0) final int afterLength, final boolean inCodePoints) { in handleDeleteSurroundingText()
346 if (beforeLength < 0 || afterLength < 0) { in handleDeleteSurroundingText()
364 Math.max(afterLength, 0)); in handleDeleteSurroundingText()
372 end = Math.min(selectionEnd + afterLength, editable.length()); in handleDeleteSurroundingText()
DEmojiCompat.java462 @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength,
466 beforeLength, afterLength, inCodePoints);
/frameworks/base/core/java/android/widget/
DAbsListView.java5936 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
5937 return getTarget().deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
5941 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
5942 return getTarget().deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()