HomeSort by relevance Sort by last modified time
    Searched refs:mInputConnection (Results 1 - 12 of 12) sorted by null

  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 58 private WeakReference<InputConnection> mInputConnection;
82 mInputConnection = new WeakReference<InputConnection>(conn);
196 InputConnection ic = mInputConnection.get();
212 InputConnection ic = mInputConnection.get();
228 InputConnection ic = mInputConnection.get();
244 InputConnection ic = mInputConnection.get();
260 InputConnection ic = mInputConnection.get();
274 InputConnection ic = mInputConnection.get();
283 InputConnection ic = mInputConnection.get();
292 InputConnection ic = mInputConnection.get()
    [all...]
  /frameworks/base/core/java/android/webkit/
AutoCompletePopup.java 51 private WebViewClassic.WebViewInputConnection mInputConnection;
56 mInputConnection = inputConnection;
173 if (id == 0 && position == 0 && mInputConnection.getIsAutoFillable()) {
210 Editable oldText = mInputConnection.getEditable();
211 mInputConnection.setSelection(0, oldText.length());
212 mInputConnection.replaceSelection(mText);
213 mInputConnection.setSelection(mText.length(), mText.length());
220 (mInputConnection.getIsAutoFillable() || mText.length() > 0);
WebViewClassic.java 697 WebViewInputConnection mInputConnection = null;
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputConnectionTests.java 96 InputConnection mInputConnection;
98 mInputConnection = inputConnection;
102 return mInputConnection;
InputLogicTests.java 100 mInputConnection.setSelection(SELECTION_START, SELECTION_END);
120 mInputConnection.setSelection(SELECTION_START, SELECTION_END);
195 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
210 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
BlueUnderlineTests.java 101 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
InputTestsBase.java 53 protected InputConnection mInputConnection;
168 mInputConnection = ic;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 225 mInputConnection.deleteSurroundingText(1, 0);
381 if (mInputConnection != null) {
473 if (ev.code == OpenWnnEvent.INPUT_SOFT_KEY && mInputConnection != null) {
474 mInputConnection.sendKeyEvent(keyEvent);
475 mInputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP,
542 mInputConnection.sendKeyEvent(keyEvent);
543 mInputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, code));
556 mInputConnection.deleteSurroundingText(1, 0);
855 mInputConnection.setComposingText(disp, displayCursor);
872 mInputConnection.commitText(tmp, (FIX_CURSOR_TEXT_END ? 1 : tmp.length()))
    [all...]
OpenWnn.java 59 protected InputConnection mInputConnection = null;
223 mInputConnection = getCurrentInputConnection();
232 mInputConnection = getCurrentInputConnection();
235 if (mInputConnection != null) {
OpenWnnJAJP.java 647 if (mInputConnection != null) {
649 mInputConnection.finishComposingText();
665 if (mInputConnection != null) {
814 if (mInputConnection != null) {
820 mInputConnection.sendKeyEvent(keyEvent);
821 mInputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP,
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 275 InputConnection mInputConnection;
368 mInputConnection = binding.getConnection();
370 + " ic=" + mInputConnection);
382 + " ic=" + mInputConnection);
386 mInputConnection = null;
    [all...]
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java 192 private InputConnection mInputConnection;
370 mInputConnection =
372 return mInputConnection;
889 if (mInputConnection != null && !mManager.mTextIsFinishedFlag) {
890 mInputConnection.finishComposingText();
    [all...]

Completed in 271 milliseconds