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

1 2 3 4

  /external/chromium_org/chromeos/ime/
input_method_manager.cc 13 InputMethodManager* g_input_method_manager = NULL;
16 InputMethodManager::State::~State() {
20 InputMethodManager* InputMethodManager::Get() {
25 void InputMethodManager::Initialize(InputMethodManager* instance) {
31 void InputMethodManager::Shutdown() {
33 << "InputMethodManager() is not initialized.";
input_method_manager.h 36 // InputMethodManager::Get().
37 class CHROMEOS_EXPORT InputMethodManager {
51 virtual void InputMethodChanged(InputMethodManager* manager,
64 virtual void CandidateWindowOpened(InputMethodManager* manager) = 0;
66 virtual void CandidateWindowClosed(InputMethodManager* manager) = 0;
69 class State : public base::RefCounted<InputMethodManager::State> {
167 friend base::RefCounted<InputMethodManager::State>;
172 virtual ~InputMethodManager() {}
174 // Gets the global instance of InputMethodManager. Initialize() must be called
176 static CHROMEOS_EXPORT InputMethodManager* Get()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_configuration_unittest.cc 13 InputMethodManager* manager = InputMethodManager::Get();
17 manager = InputMethodManager::Get();
23 InputMethodManager* manager = InputMethodManager::Get();
27 manager = InputMethodManager::Get();
input_method_persistence.h 22 class InputMethodPersistence : public InputMethodManager::Observer {
25 // provided InputMethodManager. The client is responsible for calling
26 // OnSessionStateChange whenever the InputMethodManager::UISessionState
28 explicit InputMethodPersistence(InputMethodManager* input_method_manager);
32 void OnSessionStateChange(InputMethodManager::UISessionState new_session);
34 // InputMethodManager::Observer overrides.
35 virtual void InputMethodChanged(InputMethodManager* manager,
39 InputMethodManager* input_method_manager_;
40 InputMethodManager::UISessionState ui_session_;
input_method_configuration.h 13 class InputMethodManager;
15 // Initializes the InputMethodManager. Must be called before any calls to
21 // InputMethodManager such as MockInputMethodManager for testing.
24 // TODO(nona): Remove this and use InputMethodManager::Initialize instead.
25 void InitializeForTesting(InputMethodManager* mock_manager);
30 // Destroys the global InputMethodManager instance.
accessibility.h 15 : public InputMethodManager::Observer {
17 explicit Accessibility(InputMethodManager* imm);
21 // InputMethodManager::Observer implementation.
22 virtual void InputMethodChanged(InputMethodManager* imm,
24 InputMethodManager* imm_;
browser_state_monitor.h 21 // into InputMethodManager::UISessionState transitions.
25 // the InputMethodManager::UISessionState changes. Assumes that the current
28 const base::Callback<void(InputMethodManager::UISessionState)>& observer);
31 InputMethodManager::UISessionState ui_session() const { return ui_session_; }
39 base::Callback<void(InputMethodManager::UISessionState)> observer_;
40 InputMethodManager::UISessionState ui_session_;
mode_indicator_controller.h 28 : public InputMethodManager::Observer {
31 explicit ModeIndicatorController(InputMethodManager* imm);
48 // InputMethodManager::Observer implementation.
49 virtual void InputMethodChanged(InputMethodManager* manager,
56 InputMethodManager* imm_;
browser_state_monitor_unittest.cc 23 : ui_session_(InputMethodManager::STATE_TERMINATING),
26 void SetState(InputMethodManager::UISessionState new_ui_session) {
31 base::Callback<void(InputMethodManager::UISessionState new_ui_session)>
38 InputMethodManager::UISessionState ui_session() const { return ui_session_; }
41 InputMethodManager::UISessionState ui_session_;
55 EXPECT_EQ(InputMethodManager::STATE_LOGIN_SCREEN, mock_observer.ui_session());
56 EXPECT_EQ(InputMethodManager::STATE_LOGIN_SCREEN, monitor.ui_session());
87 EXPECT_EQ(InputMethodManager::STATE_BROWSER_SCREEN,
89 EXPECT_EQ(InputMethodManager::STATE_BROWSER_SCREEN, monitor_.ui_session());
101 EXPECT_EQ(InputMethodManager::STATE_BROWSER_SCREEN
    [all...]
browser_state_monitor.cc 17 const base::Callback<void(InputMethodManager::UISessionState)>& observer)
18 : observer_(observer), ui_session_(InputMethodManager::STATE_LOGIN_SCREEN) {
45 const InputMethodManager::UISessionState old_ui_session = ui_session_;
48 ui_session_ = InputMethodManager::STATE_TERMINATING;
58 ui_session_ = InputMethodManager::STATE_BROWSER_SCREEN;
68 ui_session_ = InputMethodManager::STATE_BROWSER_SCREEN;
73 ui_session_ = is_screen_locked ? InputMethodManager::STATE_LOCK_SCREEN
74 : InputMethodManager::STATE_BROWSER_SCREEN;
input_method_configuration.cc 23 InputMethodManager::UISessionState new_ui_session) {
41 InputMethodManager::Initialize(impl);
43 DCHECK(InputMethodManager::Get());
52 DVLOG(1) << "InputMethodManager initialized";
55 void InitializeForTesting(InputMethodManager* mock_manager) {
56 InputMethodManager::Initialize(mock_manager);
57 DVLOG(1) << "InputMethodManager for testing initialized";
65 InputMethodManager::Shutdown();
69 DVLOG(1) << "InputMethodManager shutdown";
88 void InitializeForTesting(InputMethodManager* mock_manager)
    [all...]
input_method_persistence.cc 69 const chromeos::input_method::InputMethodManager* const manager,
86 InputMethodManager* const manager) {
112 InputMethodManager* input_method_manager)
114 ui_session_(InputMethodManager::STATE_LOGIN_SCREEN) {
123 InputMethodManager* manager, bool show_message) {
129 case InputMethodManager::STATE_LOGIN_SCREEN:
137 case InputMethodManager::STATE_BROWSER_SCREEN:
140 case InputMethodManager::STATE_LOCK_SCREEN:
143 case InputMethodManager::STATE_TERMINATING:
150 InputMethodManager::UISessionState new_ui_session)
    [all...]
accessibility.cc 16 Accessibility::Accessibility(InputMethodManager* imm)
27 void Accessibility::InputMethodChanged(InputMethodManager* imm,
mock_input_method_manager.h 18 // The mock implementation of InputMethodManager for testing.
19 class MockInputMethodManager : public InputMethodManager {
21 class State : public InputMethodManager::State {
25 virtual scoped_refptr<InputMethodManager::State> Clone() const OVERRIDE;
70 friend base::RefCounted<chromeos::input_method::InputMethodManager::State>;
79 // InputMethodManager override:
81 virtual void AddObserver(InputMethodManager::Observer* observer) OVERRIDE;
83 InputMethodManager::CandidateWindowObserver* observer) OVERRIDE;
84 virtual void RemoveObserver(InputMethodManager::Observer* observer) OVERRIDE;
86 InputMethodManager::CandidateWindowObserver* observer) OVERRIDE
    [all...]
input_method_persistence_unittest.cc 89 persistence.OnSessionStateChange(InputMethodManager::STATE_LOGIN_SCREEN);
94 persistence.OnSessionStateChange(InputMethodManager::STATE_BROWSER_SCREEN);
99 persistence.OnSessionStateChange(InputMethodManager::STATE_LOCK_SCREEN);
104 persistence.OnSessionStateChange(InputMethodManager::STATE_TERMINATING);
109 persistence.OnSessionStateChange(InputMethodManager::STATE_LOGIN_SCREEN);
114 persistence.OnSessionStateChange(InputMethodManager::STATE_BROWSER_SCREEN);
input_method_manager_impl.h 29 // The implementation of InputMethodManager.
30 class InputMethodManagerImpl : public InputMethodManager,
33 class StateImpl : public InputMethodManager::State {
64 // InputMethodManager::State overrides.
65 virtual scoped_refptr<InputMethodManager::State> Clone() const OVERRIDE;
127 friend base::RefCounted<chromeos::input_method::InputMethodManager::State>;
131 // Constructs an InputMethodManager instance. The client is responsible for
138 // Receives notification of an InputMethodManager::UISessionState transition.
141 // InputMethodManager override:
143 virtual void AddObserver(InputMethodManager::Observer* observer) OVERRIDE
    [all...]
mock_input_method_manager.cc 29 InputMethodManager::UISessionState MockInputMethodManager::GetUISessionState() {
30 return InputMethodManager::STATE_BROWSER_SCREEN;
34 InputMethodManager::Observer* observer) {
39 InputMethodManager::CandidateWindowObserver* observer) {
43 InputMethodManager::Observer* observer) {
48 InputMethodManager::CandidateWindowObserver* observer) {
210 scoped_refptr<InputMethodManager::State> MockInputMethodManager::CreateNewState(
216 scoped_refptr<InputMethodManager::State>
218 return scoped_refptr<InputMethodManager::State>(state_.get());
221 scoped_refptr<InputMethodManager::State> MockInputMethodManager::State::Clone(
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
input_method_event_router.h 22 : public input_method::InputMethodManager::Observer {
27 // Implements input_method::InputMethodManager::Observer:
29 input_method::InputMethodManager* manager,
input_method_event_router.cc 21 input_method::InputMethodManager::Get()->AddObserver(this);
25 input_method::InputMethodManager::Get()->RemoveObserver(this);
29 input_method::InputMethodManager *manager,
  /external/chromium_org/chrome/browser/ui/ash/
ime_controller_chromeos.cc 11 chromeos::input_method::InputMethodManager* manager =
12 chromeos::input_method::InputMethodManager::Get();
17 chromeos::input_method::InputMethodManager* manager =
18 chromeos::input_method::InputMethodManager::Get();
23 chromeos::input_method::InputMethodManager* manager =
24 chromeos::input_method::InputMethodManager::Get();
50 chromeos::input_method::InputMethodManager* manager =
51 chromeos::input_method::InputMethodManager::Get();
  /external/chromium_org/chrome/browser/chromeos/login/ui/
user_adding_screen_input_methods_controller.cc 24 input_method::InputMethodManager* imm =
25 input_method::InputMethodManager::Get();
33 input_method::InputMethodManager::Get()->SetState(saved_ime_state_);
user_adding_screen_input_methods_controller.h 32 scoped_refptr<input_method::InputMethodManager::State> saved_ime_state_;
  /external/chromium_org/chrome/browser/chromeos/
preferences.h 34 class InputMethodManager;
47 input_method::InputMethodManager* input_method_manager); // for testing
61 scoped_refptr<input_method::InputMethodManager::State> ime_state);
117 input_method::InputMethodManager* input_method_manager_;
150 scoped_refptr<input_method::InputMethodManager::State> ime_state_;
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodManagerTest.java 32 import android.view.inputmethod.InputMethodManager;
88 final InputMethodManager imManager = (InputMethodManager) context
112 assertTrue(imManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT));
121 imManager.showSoftInputFromInputMethod(token, InputMethodManager.SHOW_FORCED);
122 imManager.hideSoftInputFromInputMethod(token, InputMethodManager.HIDE_NOT_ALWAYS);
125 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
126 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
InputMethodManagerWrapper.java 11 import android.view.inputmethod.InputMethodManager;
14 * Wrapper around Android's InputMethodManager
23 private InputMethodManager getInputMethodManager() {
24 return (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
28 * @see android.view.inputmethod.InputMethodManager#restartInput(View)
35 * @see android.view.inputmethod.InputMethodManager#showSoftInput(View, int, ResultReceiver)
42 * @see android.view.inputmethod.InputMethodManager#isActive(View)
49 * @see InputMethodManager#hideSoftInputFromWindow(IBinder, int, ResultReceiver)
57 * @see android.view.inputmethod.InputMethodManager#updateSelection(View, int, int, int, int)
66 * @see android.view.inputmethod.InputMethodManager#isWatchingCursor(View
    [all...]

Completed in 286 milliseconds

1 2 3 4