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 88 InputConnection mInputConnection;
90 mInputConnection = inputConnection;
94 return mInputConnection;
InputLogicTests.java 98 mInputConnection.setSelection(SELECTION_START, SELECTION_END);
170 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
183 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
BlueUnderlineTests.java 100 mInputConnection.setSelection(NEW_CURSOR_POSITION, NEW_CURSOR_POSITION);
InputTestsBase.java 56 protected InputConnection mInputConnection;
159 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 274 InputConnection mInputConnection;
367 mInputConnection = binding.getConnection();
369 + " ic=" + mInputConnection);
381 + " ic=" + mInputConnection);
385 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 368 milliseconds