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

/frameworks/support/emoji/core/src/android/support/text/emoji/widget/
H A DEmojiInputConnection.java54 public boolean deleteSurroundingText(final int beforeLength, final int afterLength) { argument
56 beforeLength, afterLength, false /* in code ponints */);
57 return result || super.deleteSurroundingText(beforeLength, afterLength);
62 final int afterLength) {
64 beforeLength, afterLength, true /* in code ponints */);
65 return result || super.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
61 deleteSurroundingTextInCodePoints(final int beforeLength, final int afterLength) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnectionWrapper.java117 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { argument
118 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
125 public boolean deleteSurroundingText(int beforeLength, int afterLength) { argument
126 return mTarget.deleteSurroundingText(beforeLength, afterLength);
H A DInputConnection.java322 * current cursor position, and delete <var>afterLength</var>
366 * @param afterLength The number of characters after the cursor to be deleted, in code unit.
372 public boolean deleteSurroundingText(int beforeLength, int afterLength); argument
393 * @param afterLength The number of characters after the cursor to be deleted, in code points.
400 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength); argument
H A DBaseInputConnection.java210 * @param afterLength The number of characters after the cursor to be deleted, in code unit.
215 public boolean deleteSurroundingText(int beforeLength, int afterLength) { argument
217 + " / " + afterLength);
254 if (afterLength > 0) {
257 int end = b + afterLength;
367 * @param afterLength The number of characters after the cursor to be deleted, in code points.
372 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { argument
374 + " / " + afterLength);
405 final int end = findIndexForward(content, b, Math.max(afterLength, 0));
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl43 void deleteSurroundingText(int beforeLength, int afterLength);
44 void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength);
H A DInputConnectionWrapper.java447 public boolean deleteSurroundingText(int beforeLength, int afterLength) { argument
449 mIInputContext.deleteSurroundingText(beforeLength, afterLength);
456 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { argument
462 mIInputContext.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
H A DIInputConnectionWrapper.java182 public void deleteSurroundingText(int beforeLength, int afterLength) { argument
184 beforeLength, afterLength));
187 public void deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { argument
189 beforeLength, afterLength));
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DEmojiProcessor.java339 * @param afterLength the number of characters after the cursor to be deleted
346 @IntRange(from = 0) final int afterLength, final boolean inCodePoints) {
351 if (beforeLength < 0 || afterLength < 0) {
369 Math.max(afterLength, 0));
377 end = Math.min(selectionEnd + afterLength, editable.length());
344 handleDeleteSurroundingText(@onNull final InputConnection inputConnection, @NonNull final Editable editable, @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength, final boolean inCodePoints) argument
H A DEmojiCompat.java461 * @param afterLength the number of characters after the cursor to be deleted
468 @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength,
472 beforeLength, afterLength, inCodePoints);
466 handleDeleteSurroundingText( @onNull final InputConnection inputConnection, @NonNull final Editable editable, @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength, final boolean inCodePoints) argument
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5943 public boolean deleteSurroundingText(int beforeLength, int afterLength) { argument
5944 return getTarget().deleteSurroundingText(beforeLength, afterLength);
5948 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { argument
5949 return getTarget().deleteSurroundingTextInCodePoints(beforeLength, afterLength);

Completed in 522 milliseconds