Searched defs:deleteSurroundingText (Results 1 - 6 of 6) sorted by path

/frameworks/base/core/java/android/view/inputmethod/
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
H A DInputConnection.java371 public boolean deleteSurroundingText(int beforeLength, int afterLength); method in interface:InputConnection
374 * A variant of {@link #deleteSurroundingText(int, int)}. Major differences are:
383 * {@link #deleteSurroundingText(int, int)}, make sure to do nothing when one ore more invalid
386 * @see #deleteSurroundingText(int, int)
H A DInputConnectionWrapper.java125 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
126 return mTarget.deleteSurroundingText(beforeLength, afterLength);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5897 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:AbsListView.InputConnectionWrapper
5898 return getTarget().deleteSurroundingText(beforeLength, afterLength);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java210 public void deleteSurroundingText(int beforeLength, int afterLength) { method in class:IInputConnectionWrapper
456 Log.w(TAG, "deleteSurroundingText on inactive InputConnection");
459 ic.deleteSurroundingText(msg.arg1, msg.arg2);
H A DInputConnectionWrapper.java447 public boolean deleteSurroundingText(int beforeLength, int afterLength) { method in class:InputConnectionWrapper
449 mIInputContext.deleteSurroundingText(beforeLength, afterLength);

Completed in 66 milliseconds