Home | History | Annotate | Download | only in inputmethod

Lines Matching defs:InputMethodManager

220 public final class InputMethodManager {
222 static final String TAG = "InputMethodManager";
226 static InputMethodManager sInstance;
569 private final InputMethodManager mParentInputMethodManager;
572 final InputMethodManager inputMethodManager) {
574 mParentInputMethodManager = inputMethodManager;
662 InputMethodManager(Looper looper) throws ServiceNotFoundException {
667 InputMethodManager(IInputMethodManager service, Looper looper) {
676 * Retrieve the global InputMethodManager instance, creating it if it
680 public static InputMethodManager getInstance() {
681 synchronized (InputMethodManager.class) {
684 sInstance = new InputMethodManager(Looper.getMainLooper());
694 * Private optimization: retrieve the global InputMethodManager instance,
698 public static InputMethodManager peekInstance() {