Searched refs:text_input_client_ (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/ui/base/ime/ |
D | remote_input_method_win.cc | 110 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 …]
|
D | input_method_base.cc | 19 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 …]
|
D | mock_input_method.cc | 10 : 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()
|
D | input_method_base.h | 105 TextInputClient* text_input_client_; in NON_EXPORTED_BASE() local
|
D | mock_input_method.h | 57 TextInputClient* text_input_client_; in NON_EXPORTED_BASE()
|
/external/chromium_org/ui/base/ime/win/ |
D | mock_tsf_bridge.cc | 21 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()
|
D | tsf_text_store.cc | 30 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 …]
|
D | mock_tsf_bridge.h | 71 TextInputClient* text_input_clinet() const { return text_input_client_; } in text_input_clinet() 90 TextInputClient* text_input_client_; variable
|
D | tsf_text_store_unittest.cc | 121 &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 …]
|
D | tsf_text_store.h | 247 TextInputClient* text_input_client_; variable
|