Searched defs:endBatchEdit (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java71 public boolean endBatchEdit() { method in class:EditableInputConnection
75 // is called, some endBatchEdit calls may still be asynchronously received from the
78 mTextView.endBatchEdit();
92 endBatchEdit();
94 // Will prevent any further calls to begin or endBatchEdit
120 mTextView.endBatchEdit();
132 mTextView.endBatchEdit();
148 mTextView.endBatchEdit();
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java602 * about its state until {@link #endBatchEdit} is called. Batch
610 * sure to call {@link #endBatchEdit} for each call to this, or
641 public boolean endBatchEdit(); method in interface:InputConnection
H A DInputConnectionWrapper.java109 public boolean endBatchEdit() { method in class:InputConnectionWrapper
110 return mTarget.endBatchEdit();
H A DBaseInputConnection.java151 public boolean endBatchEdit() { method in class:BaseInputConnection
257 endBatchEdit();
275 endBatchEdit();
482 endBatchEdit();
693 endBatchEdit();
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java377 public boolean endBatchEdit() { method in class:InputConnectionWrapper
379 mIInputContext.endBatchEdit();
H A DIInputConnectionWrapper.java167 public void endBatchEdit() { method in class:IInputConnectionWrapper
404 Log.w(TAG, "endBatchEdit on inactive InputConnection");
407 ic.endBatchEdit();
/frameworks/base/core/java/android/widget/
H A DAbsListView.java5751 public boolean endBatchEdit() { method in class:AbsListView.InputConnectionWrapper
5752 return getTarget().endBatchEdit();
H A DEditor.java1109 public void endBatchEdit() { method in class:Editor
H A DTextView.java5797 endBatchEdit();
5805 endBatchEdit();
6137 public void endBatchEdit() { method in class:TextView
6138 if (mEditor != null) mEditor.endBatchEdit();
6151 * of edit operations through a call to link {@link #endBatchEdit}.

Completed in 324 milliseconds