Searched refs:deleteSurroundingText (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnectionWrapper.java125 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
126 return mTarget.deleteSurroundingText(beforeLength, afterLength);
H A DInputConnection.java367 public boolean deleteSurroundingText(int beforeLength, int afterLength); method in interface:InputConnection
370 * A variant of {@link #deleteSurroundingText(int, int)}. Major differences are:
379 * {@link #deleteSurroundingText(int, int)}, make sure to do nothing when one ore more invalid
382 * @see #deleteSurroundingText(int, int)
H A DBaseInputConnection.java216 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:BaseInputConnection
217 if (DEBUG) Log.v(TAG, "deleteSurroundingText " + beforeLength
374 if (DEBUG) Log.v(TAG, "deleteSurroundingText " + beforeLength
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl42 void deleteSurroundingText(int beforeLength, int afterLength);
H A DInputConnectionWrapper.java423 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
425 mIInputContext.deleteSurroundingText(beforeLength, afterLength);
H A DIInputConnectionWrapper.java208 public void deleteSurroundingText(int beforeLength, int afterLength) { method in class:IInputConnectionWrapper
448 Log.w(TAG, "deleteSurroundingText on inactive InputConnection");
451 ic.deleteSurroundingText(msg.arg1, msg.arg2);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1861 * deleteSurroundingText. If the cursor moves as a result, this method
2290 conn.deleteSurroundingText(0, end - start);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5902 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:AbsListView.InputConnectionWrapper
5903 return getTarget().deleteSurroundingText(beforeLength, afterLength);

Completed in 118 milliseconds