Searched refs:InputMethodSession (Results 1 - 5 of 5) sorted by path

/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java25 import android.view.inputmethod.InputMethodSession;
71 public void setSessionEnabled(InputMethodSession session, boolean enabled) {
80 public void revokeSession(InputMethodSession session) {
86 * Base class for derived classes to implement their {@link InputMethodSession}
90 public abstract class AbstractInputMethodSessionImpl implements InputMethodSession {
182 * Called by the framework when a new InputMethodSession interface is
H A DIInputMethodSessionWrapper.java34 import android.view.inputmethod.InputMethodSession;
55 InputMethodSession mInputMethodSession;
58 static class InputMethodEventCallbackWrapper implements InputMethodSession.EventCallback {
72 InputMethodSession inputMethodSession) {
77 public InputMethodSession getInternalInputMethodSession() {
H A DIInputMethodWrapper.java39 import android.view.inputmethod.InputMethodSession;
88 public void sessionCreated(InputMethodSession session) {
181 inputMethod.setSessionEnabled((InputMethodSession)msg.obj,
185 inputMethod.revokeSession((InputMethodSession)msg.obj);
257 InputMethodSession ls = ((IInputMethodSessionWrapper)
268 InputMethodSession ls = ((IInputMethodSessionWrapper)
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java52 * can be called to instantate a secondary {@link InputMethodSession} interface
77 public void sessionCreated(InputMethodSession session);
151 * Create a new {@link InputMethodSession} that can be handed to client
153 * use {@link #revokeSession(InputMethodSession)} to destroy the session
163 * @param session The {@link InputMethodSession} previously provided through
166 public void setSessionEnabled(InputMethodSession session, boolean enabled);
174 * @param session The {@link InputMethodSession} previously provided through
177 public void revokeSession(InputMethodSession session);
H A DInputMethodSession.java25 * The InputMethodSession interface provides the per-client functionality
32 public interface InputMethodSession { interface

Completed in 82 milliseconds