HomeSort by relevance Sort by last modified time
    Searched full:inputconnection (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 68 import android.view.inputmethod.InputConnection;
209 * {@link android.view.inputmethod.InputConnection} interface to the
289 InputConnection mInputConnection;
293 InputConnection mStartedInputConnection;
353 final InputConnection ic = getCurrentInputConnection();
391 InputConnection ic = getCurrentInputConnection();
408 public void startInput(InputConnection ic, EditorInfo attribute) {
413 public void restartInput(InputConnection ic, EditorInfo attribute) {
    [all...]
IInputMethodWrapper.java 38 import android.view.inputmethod.InputConnection;
170 InputConnection ic = inputContext != null
182 InputConnection ic = inputContext != null
254 InputConnection ic = new InputConnectionWrapper(mTarget,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RemoteInputView.java 43 import android.view.inputmethod.InputConnection;
502 public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
503 final InputConnection inputConnection = super.onCreateInputConnection(outAttrs);
505 if (mShowImeOnInputConnection && inputConnection != null) {
521 return inputConnection;
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
pkg_android.view.inputmethod.html 113 <A NAME="InputConnection"></A>
114 <nobr><A HREF="android.view.inputmethod.InputConnection.html"><I>InputConnection</I></A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/24/changes/
pkg_android.view.inputmethod.html 98 <A NAME="InputConnection"></A>
99 <nobr><A HREF="android.view.inputmethod.InputConnection.html"><I>InputConnection</I></A></nobr>
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 32 import android.view.inputmethod.InputConnection;
286 InputConnection ic = getCurrentInputConnection();
318 * InputConnection. It is only needed when using the
326 InputConnection ic = getCurrentInputConnection();
395 InputConnection ic = getCurrentInputConnection();
442 private void commitTyped(InputConnection inputConnection) {
444 inputConnection.commitText(mComposing, mComposing.length());
542 InputConnection ic = getCurrentInputConnection();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputConnection.java 32 import android.view.inputmethod.InputConnection;
55 * Enrichment class for InputConnection to simplify interaction and add functionality.
58 * InputConnection. It also keeps track of a number of things to avoid having to call upon IPC
94 * after observing a slow InputConnection event.
129 private InputConnection mIC;
133 * The timestamp of the last slow InputConnection operation
148 * Returns whether or not the underlying InputConnection is slow. When true, we want to avoid
149 * calling InputConnection methods that trigger an IPC round-trip (e.g., getTextAfterCursor).
249 * Reload the cached text from the InputConnection.
256 // Call upon the inputconnection directly since our own method is using the cache, an
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 129 * at {@link InputConnection#performEditorAction(int)
130 * InputConnection.performEditorAction(int)}.
143 * in the application at {@link InputConnection#performEditorAction(int)
144 * InputConnection.performEditorAction(int)}.
244 * {@link InputConnection#performEditorAction(int)
245 * InputConnection.performEditorAction()}.
371 * {@link InputConnection#commitContent(InputContentInfo, int, Bundle)}.
374 * {@link InputConnection#commitContent(InputContentInfo, int, Bundle)} is not supported in this
InputMethodSession.java 99 * calls {@link InputConnection#getExtractedText(ExtractedTextRequest, int)
100 * InputConnection.getExtractedText()} with the option to report updates.
InputConnection.java 27 * The InputConnection interface is the communication channel from an
72 * this InputConnection interface, and sending commands through
115 * {@link InputConnection#setComposingText(CharSequence, int)},
116 * {@link InputConnection#setComposingRegion(int, int)} and
117 * {@link InputConnection#finishComposingText()}.
121 public interface InputConnection {
    [all...]
InputMethodManager.java 139 * to return a new instance of your own {@link InputConnection} interface
189 * <li> <p>Only the active client's {@link InputConnection} will accept
192 * InputConnection will be ignored. This ensures that the current IME can
196 * <li> <p>An IME can never interact with an {@link InputConnection} while
289 * As reported by IME through InputConnection.
322 * The InputConnection that was last retrieved from the served view.
534 public ControlledInputConnectionWrapper(final Looper mainLooper, final InputConnection conn,
623 final InputConnection mDummyInputConnection = new BaseInputConnection(this, false);
    [all...]
CompletionInfo.java 47 * {@link InputConnection#commitCompletion(CompletionInfo)}.
BaseInputConnection.java 44 * Base class for implementors of the InputConnection interface, taking care
48 * to refer to the documentation in {@link InputConnection}.
50 public class BaseInputConnection implements InputConnection {
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 31 import android.view.inputmethod.InputConnection;
38 public class InputConnectionWrapper implements InputConnection {
525 if ((flags & InputConnection.INPUT_CONTENT_GRANT_READ_URI_PERMISSION) != 0) {
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
TerminalView.java 32 import android.view.inputmethod.InputConnection;
264 public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
  /packages/apps/Terminal/src/com/android/terminal/
TerminalView.java 33 import android.view.inputmethod.InputConnection;
313 public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DefaultSoftKeyboardEN.java 24 import android.view.inputmethod.InputConnection;
100 InputConnection connection = mWnn.getCurrentInputConnection();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 34 import android.view.inputmethod.InputConnection;
80 protected InputConnection mInputConnection;
217 final InputConnection ic = mEditText.onCreateInputConnection(ei);
RichInputConnectionAndTextRangeTests.java 30 import android.view.inputmethod.InputConnection;
149 public InputConnection getCurrentInputConnection() {
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
GLSurfaceView20.java 30 import android.view.inputmethod.InputConnection;
78 public InputConnection onCreateInputConnection (EditorInfo outAttrs) {
GLSurfaceView20API18.java 30 import android.view.inputmethod.InputConnection;
70 public InputConnection onCreateInputConnection (EditorInfo outAttrs) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MockKeyboardSwitcher.java 54 // Following InputConnection's behavior. Simulating InputType.TYPE_TEXT_FLAG_CAP_WORDS.
  /frameworks/base/docs/html/guide/topics/text/
creating-input-method.jd 144 {@link android.view.inputmethod.InputConnection}.
310 field. In either case, you use an instance of {@link android.view.inputmethod.InputConnection}
353 InputConnection ic = getCurrentInputConnection();
367 {@link android.view.inputmethod.InputConnection#setComposingText setComposingText()}.
373 InputConnection ic = getCurrentInputConnection();
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 43 import android.view.inputmethod.InputConnection;
337 public InputConnection onCreateInputConnection(EditorInfo outAttrs);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.cdcfoundation10_1.0.0.200901281111/org/eclipse/pde/api/tools/internal/api_stubs/
CDC-1.0_Foundation-1.0.zip 

Completed in 1254 milliseconds

12 3 4 5