Home
last modified time | relevance | path

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

/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
DEmojiInputConnection.java55 public boolean deleteSurroundingText(final int beforeLength, final int afterLength) { in deleteSurroundingText() argument
57 beforeLength, afterLength, false /*inCodePoints*/); in deleteSurroundingText()
58 return result || super.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
63 final int afterLength) { in deleteSurroundingTextInCodePoints() argument
65 beforeLength, afterLength, true /*inCodePoints*/); in deleteSurroundingTextInCodePoints()
66 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
/frameworks/base/core/java/android/view/inputmethod/
DInputConnectionWrapper.java123 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
124 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
132 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
133 return mTarget.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
DInputConnection.java371 boolean deleteSurroundingText(int beforeLength, int afterLength); in deleteSurroundingText() argument
399 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.java509 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
511 mIInputContext.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
519 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
525 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/main/java/androidx/emoji/text/
DEmojiProcessor.java369 @IntRange(from = 0) final int afterLength, final boolean inCodePoints) { in handleDeleteSurroundingText()
375 if (beforeLength < 0 || afterLength < 0) { in handleDeleteSurroundingText()
393 Math.max(afterLength, 0)); in handleDeleteSurroundingText()
401 end = Math.min(selectionEnd + afterLength, editable.length()); in handleDeleteSurroundingText()
DEmojiCompat.java550 @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength,
554 beforeLength, afterLength, inCodePoints);
/frameworks/base/core/java/android/widget/
DAbsListView.java5950 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
5951 return getTarget().deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
5955 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
5956 return getTarget().deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()