Home
last modified time | relevance | path

Searched refs:text_input_client_ (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/ui/base/ime/
Dremote_input_method_win.cc110 text_input_client_(NULL), in RemoteInputMethodWin()
155 const bool text_input_client_changed = text_input_client_ != client; in SetFocusedTextInputClient()
156 text_input_client_ = client; in SetFocusedTextInputClient()
171 if (text_input_client_ != client) in DetachTextInputClient()
177 return text_input_client_; in GetTextInputClient()
185 if (!text_input_client_) in DispatchKeyEvent()
187 text_input_client_->InsertChar( in DispatchKeyEvent()
194 if (text_input_client_) { in DispatchKeyEvent()
195 text_input_client_->InsertChar(event.key_code(), in DispatchKeyEvent()
208 if (!text_input_client_ || text_input_client_ != client) in OnTextInputTypeChanged()
[all …]
Dinput_method_base.cc19 text_input_client_(NULL), in InputMethodBase()
53 if (text_input_client_ != client) in DetachTextInputClient()
59 return system_toplevel_window_focused_ ? text_input_client_ : NULL; in GetTextInputClient()
126 TextInputClient* old = text_input_client_; in SetFocusedTextInputClientInternal()
130 text_input_client_ = client; // NULL allowed. in SetFocusedTextInputClientInternal()
132 NotifyTextInputStateChanged(text_input_client_); in SetFocusedTextInputClientInternal()
155 if (text_input_client_) in CandidateWindowShownCallback()
156 text_input_client_->OnCandidateWindowShown(); in CandidateWindowShownCallback()
160 if (text_input_client_) in CandidateWindowUpdatedCallback()
161 text_input_client_->OnCandidateWindowUpdated(); in CandidateWindowUpdatedCallback()
[all …]
Dmock_input_method.cc10 : text_input_client_(NULL) { in MockInputMethod()
20 if (text_input_client_ == client) in SetFocusedTextInputClient()
22 text_input_client_ = client; in SetFocusedTextInputClient()
28 if (text_input_client_ == client) { in DetachTextInputClient()
29 text_input_client_ = NULL; in DetachTextInputClient()
34 return text_input_client_; in GetTextInputClient()
Dinput_method_base.h105 TextInputClient* text_input_client_; in NON_EXPORTED_BASE() local
Dmock_input_method.h57 TextInputClient* text_input_client_; in NON_EXPORTED_BASE()
/external/chromium_org/ui/base/ime/win/
Dmock_tsf_bridge.cc21 text_input_client_(NULL), in MockTSFBridge()
51 text_input_client_ = client; in SetFocusedClient()
56 DCHECK_EQ(client, text_input_client_); in RemoveFocusedClient()
57 text_input_client_ = NULL; in RemoveFocusedClient()
66 return text_input_client_; in GetFocusedTextInputClient()
78 text_input_client_ = NULL; in Reset()
Dtsf_text_store.cc30 text_input_client_(NULL), in TSFTextStore()
279 if (!text_input_client_) in GetTextExt()
308 if (text_input_client_->GetCompositionCharacterBounds(0, &tmp_rect)) { in GetTextExt()
312 result = text_input_client_->GetCaretBounds().ToRECT(); in GetTextExt()
316 } else if (text_input_client_->GetCompositionCharacterBounds(start_pos - 1, in GetTextExt()
326 if (text_input_client_->GetCompositionCharacterBounds(start_pos, in GetTextExt()
332 if (text_input_client_->GetCompositionCharacterBounds(end_pos - 1, in GetTextExt()
345 result = text_input_client_->GetCaretBounds().ToRECT(); in GetTextExt()
533 if ((!new_committed_string.empty()) && text_input_client_) { in RequestLock()
534 text_input_client_->InsertText(new_committed_string); in RequestLock()
[all …]
Dmock_tsf_bridge.h71 TextInputClient* text_input_clinet() const { return text_input_client_; } in text_input_clinet()
90 TextInputClient* text_input_client_; variable
Dtsf_text_store_unittest.cc121 &text_input_client_); in SetUp()
135 MockTextInputClient text_input_client_; member in ui::TSFTextStoreTest
606 EXPECT_CALL(text_input_client_, InsertText(_)) in TEST_F()
609 EXPECT_CALL(text_input_client_, SetCompositionText(_)) in TEST_F()
1106 EXPECT_CALL(text_input_client_, SetCompositionText(_)) in TEST_F()
1111 EXPECT_CALL(text_input_client_, InsertText(_)) in TEST_F()
1214 EXPECT_CALL(text_input_client_, GetCaretBounds()) in TEST_F()
1218 EXPECT_CALL(text_input_client_, GetCompositionCharacterBounds(_, _)) in TEST_F()
1232 EXPECT_CALL(text_input_client_, GetTextInputType()) in TEST_F()
1234 EXPECT_CALL(text_input_client_, GetTextInputMode()) in TEST_F()
[all …]
Dtsf_text_store.h247 TextInputClient* text_input_client_; variable