HomeSort by relevance Sort by last modified time
    Searched refs:InputMethod (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/chromium_org/ui/base/ime/
input_method_factory.h 20 class InputMethod;
22 // Creates a new instance of InputMethod and returns it.
23 UI_BASE_EXPORT scoped_ptr<InputMethod> CreateInputMethod(
input_method_factory.cc 33 scoped_ptr<InputMethod> CreateInputMethod(
40 return scoped_ptr<InputMethod>(new MockInputMethod(delegate));
43 return scoped_ptr<InputMethod>(new InputMethodChromeOS(delegate));
47 return scoped_ptr<InputMethod>(new InputMethodWin(delegate, widget));
49 return scoped_ptr<InputMethod>(new InputMethodMac(delegate));
51 return scoped_ptr<InputMethod>(new InputMethodAuraLinux(delegate));
53 return scoped_ptr<InputMethod>(new InputMethodMinimal(delegate));
input_method_observer.h 12 class InputMethod;
40 // Called when the observed InputMethod is being destroyed.
41 virtual void OnInputMethodDestroyed(const InputMethod* input_method) = 0;
remote_input_method_win.h 25 class InputMethod;
28 // RemoteInputMethodWin is a special implementation of ui::InputMethod that
49 UI_BASE_EXPORT scoped_ptr<InputMethod> CreateRemoteInputMethodWin(
62 static RemoteInputMethodPrivateWin* Get(InputMethod* input_method);
input_method.h 30 // system through the InputMethod::DispatchKeyEvent API, and forwards it to
46 // ui::InputMethod and owns it.
47 class InputMethod {
56 virtual ~InputMethod() {}
58 // Sets the delegate used by this InputMethod instance. It should only be
62 // Initializes the InputMethod object. Pass true if the system toplevel window
103 // existing composition text and call InputMethod::CancelComposition() when
139 // not InputMethod itself's infomation. So rename these to
  /external/chromium_org/ui/views/cocoa/
bridged_native_widget.h 18 class InputMethod;
23 class InputMethod;
43 InputMethod* CreateInputMethod();
44 ui::InputMethod* GetHostInputMethod();
55 scoped_ptr<ui::InputMethod> input_method_;
  /external/chromium_org/ui/wm/core/
input_method_event_filter.h 18 class InputMethod;
34 ui::InputMethod* input_method() const { return input_method_.get(); }
43 scoped_ptr<ui::InputMethod> input_method_;
  /external/chromium_org/ash/shell/
keyboard_controller_proxy_stub.h 29 virtual ui::InputMethod* GetInputMethod() OVERRIDE;
38 scoped_ptr<ui::InputMethod> input_method_;
keyboard_controller_proxy_stub.cc 39 ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
  /external/chromium_org/ui/aura/client/
aura_constants.h 13 class InputMethod;
53 AURA_EXPORT extern const WindowProperty<ui::InputMethod*>* const
aura_constants.cc 13 DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(AURA_EXPORT, ui::InputMethod*)
33 DEFINE_WINDOW_PROPERTY_KEY(ui::InputMethod*, kRootWindowInputMethodKey, NULL);
  /external/chromium_org/chrome/browser/ui/ash/
ash_keyboard_controller_proxy.h 25 class InputMethod;
43 virtual ui::InputMethod* GetInputMethod() OVERRIDE;
  /external/chromium_org/ui/aura/test/
aura_test_helper.h 19 class InputMethod;
64 scoped_ptr<ui::InputMethod> test_input_method_;
  /external/chromium_org/ui/views/ime/
input_method.h 35 class VIEWS_EXPORT InputMethod {
44 virtual ~InputMethod() {}
46 // Sets the delegate used by this InputMethod instance.
50 // Initialize the InputMethod object and attach it to the given |widget|.
55 // These should only be called by the Widget that owns this InputMethod.
69 // top-level Widget that owns this InputMethod instance, or other related
75 // existing composition text and call InputMethod::CancelComposition() when
input_method_bridge_unittest.cc 25 static_cast<ui::InputMethod*>(&input_method));
47 static_cast<ui::InputMethod*>(NULL));
input_method_bridge.h 17 class InputMethod;
24 // A "bridge" InputMethod implementation for views top-level widgets, which just
25 // sends/receives IME related events to/from a system-wide ui::InputMethod
33 ui::InputMethod* host,
37 // Overridden from InputMethod:
89 ui::InputMethod* GetHostInputMethod() const;
96 ui::InputMethod* host_;
input_method_base.h 24 // A helper that provides functionality shared by InputMethod implementations.
25 class VIEWS_EXPORT InputMethodBase : public InputMethod,
31 // Overridden from InputMethod.
null_input_method.h 14 // An implementation of views::InputMethod which does nothing.
16 // We're working on removing views::InputMethod{,Base,Bridge} and going to use
17 // only ui::InputMethod. Use this class instead of views::InputMethodBridge
19 // views::InputMethod layer.
20 class NullInputMethod : public InputMethod {
24 // Overridden from InputMethod:
  /external/chromium_org/ui/keyboard/
keyboard_controller.h 23 class InputMethod;
119 const ui::InputMethod* input_method) OVERRIDE;
142 ui::InputMethod* input_method_;
keyboard_controller_proxy.h 26 class InputMethod;
63 // Gets the InputMethod that will provide notifications about changes in the
65 virtual ui::InputMethod* GetInputMethod() = 0;
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 24 import android.view.inputmethod.InputMethod;
25 import android.view.inputmethod.InputMethodSession;
34 * complete base class. Be sure to read {@link InputMethod} for more
38 * to the system with the InputMethod interface that input methods must
39 * implement. This base class takes care of reporting your InputMethod from
41 * of the InputMethod interface itself. Derived classes must implement that
46 private InputMethod mInputMethod;
52 * Base class for derived classes to implement their {@link InputMethod}
56 public abstract class AbstractInputMethodImpl implements InputMethod {
    [all...]
  /external/chromium_org/ui/views/widget/
native_widget_delegate.h 30 class InputMethod;
128 virtual InputMethod* GetInputMethodDirect() = 0;
native_widget_private.h 20 class InputMethod;
26 class InputMethod;
140 // Returns the InputMethod for this native widget.
144 virtual InputMethod* CreateInputMethod() = 0;
149 // Returns the ui::InputMethod for this native widget.
151 // views::InputMethod.
152 virtual ui::InputMethod* GetHostInputMethod() = 0;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethod.java 17 package android.view.inputmethod;
26 * The InputMethod interface represents an input method which can generate key
47 * <p>The InputMethod interface is actually split into two parts: the interface
51 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}
55 public interface InputMethod {
65 public static final String SERVICE_INTERFACE = "android.view.InputMethod";
68 * Name under which an InputMethod service component publishes information
71 * <code>&lt;{@link android.R.styleable#InputMethod input-method}&gt;</code>
170 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}
    [all...]
  /external/chromium_org/athena/virtual_keyboard/
virtual_keyboard_manager_impl.cc 38 virtual ui::InputMethod* GetInputMethod() OVERRIDE {
39 ui::InputMethod* input_method =

Completed in 1887 milliseconds

1 2 3 4