/external/chromium_org/ui/base/ime/win/ |
mock_tsf_bridge.cc | 21 text_input_client_(NULL), 51 text_input_client_ = client; 56 DCHECK_EQ(client, text_input_client_); 57 text_input_client_ = NULL; 66 return text_input_client_; 78 text_input_client_ = NULL;
|
mock_tsf_bridge.h | 71 TextInputClient* text_input_clinet() const { return text_input_client_; } 90 TextInputClient* text_input_client_; member in class:ui::MockTSFBridge
|
tsf_text_store.cc | 30 text_input_client_(NULL), 279 if (!text_input_client_) 308 if (text_input_client_->GetCompositionCharacterBounds(0, &tmp_rect)) { 312 result = text_input_client_->GetCaretBounds().ToRECT(); 316 } else if (text_input_client_->GetCompositionCharacterBounds(start_pos - 1, 326 if (text_input_client_->GetCompositionCharacterBounds(start_pos, 332 if (text_input_client_->GetCompositionCharacterBounds(end_pos - 1, 345 result = text_input_client_->GetCaretBounds().ToRECT(); 533 if ((!new_committed_string.empty()) && text_input_client_) { 534 text_input_client_->InsertText(new_committed_string) [all...] |
tsf_text_store_unittest.cc | 121 &text_input_client_); 135 MockTextInputClient text_input_client_; member in class:ui::TSFTextStoreTest 606 EXPECT_CALL(text_input_client_, InsertText(_)) 609 EXPECT_CALL(text_input_client_, SetCompositionText(_)) [all...] |
tsf_text_store.h | 247 TextInputClient* text_input_client_; member in class:ui::TSFTextStore
|
/external/chromium_org/ui/base/ime/ |
remote_input_method_win.cc | 110 text_input_client_(NULL), 155 const bool text_input_client_changed = text_input_client_ != client; 156 text_input_client_ = client; 171 if (text_input_client_ != client) 177 return text_input_client_; 185 if (!text_input_client_) 187 text_input_client_->InsertChar( 194 if (text_input_client_) { 195 text_input_client_->InsertChar(event.key_code(), 208 if (!text_input_client_ || text_input_client_ != client 354 TextInputClient* text_input_client_; member in class:ui::__anon14772::RemoteInputMethodWin [all...] |
input_method_base.cc | 19 text_input_client_(NULL), 53 if (text_input_client_ != client) 59 return system_toplevel_window_focused_ ? text_input_client_ : NULL; 126 TextInputClient* old = text_input_client_; 130 text_input_client_ = client; // NULL allowed. 132 NotifyTextInputStateChanged(text_input_client_); 155 if (text_input_client_) 156 text_input_client_->OnCandidateWindowShown(); 160 if (text_input_client_) 161 text_input_client_->OnCandidateWindowUpdated() [all...] |
mock_input_method.cc | 10 : text_input_client_(NULL) { 20 if (text_input_client_ == client) 22 text_input_client_ = client; 28 if (text_input_client_ == client) { 29 text_input_client_ = NULL; 34 return text_input_client_;
|
mock_input_method.h | 57 TextInputClient* text_input_client_; member in class:ui::MockInputMethod
|
input_method_base.h | 105 TextInputClient* text_input_client_; member in class:ui::InputMethodBase
|