/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 | 28 text_input_client_(NULL), 277 if (!text_input_client_) 306 if (text_input_client_->GetCompositionCharacterBounds(0, &tmp_rect)) { 310 result = text_input_client_->GetCaretBounds().ToRECT(); 314 } else if (text_input_client_->GetCompositionCharacterBounds(start_pos - 1, 324 if (text_input_client_->GetCompositionCharacterBounds(start_pos, 330 if (text_input_client_->GetCompositionCharacterBounds(end_pos - 1, 343 result = text_input_client_->GetCaretBounds().ToRECT(); 532 if ((!new_committed_string.empty()) && text_input_client_) { 533 text_input_client_->InsertText(new_committed_string) [all...] |
tsf_text_store_unittest.cc | 114 text_store_->SetFocusedTextInputClient(0, &text_input_client_); 124 MockTextInputClient text_input_client_; member in class:ui::TSFTextStoreTest 538 EXPECT_CALL(text_input_client_, InsertText(_)) 541 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/views/ime/ |
input_method_bridge_unittest.cc | 30 ui::TextInputClient* text_input_client_; member in class:views::__anon16940::TestInputMethod 35 TestInputMethod::TestInputMethod() : text_input_client_(NULL) {} 41 if (text_input_client_) 42 text_input_client_->GetTextInputType(); 43 text_input_client_ = client; 47 return text_input_client_;
|
/external/chromium_org/ui/base/ime/ |
input_method_base.cc | 16 text_input_client_(NULL), 46 TextInputClient* old = text_input_client_; 48 text_input_client_ = client; // NULL allowed. 51 if (old != text_input_client_) 52 NotifyTextInputStateChanged(text_input_client_); 56 return system_toplevel_window_focused_ ? text_input_client_ : NULL;
|
fake_input_method.cc | 41 text_input_client_(NULL) { 53 text_input_client_ = client; 59 return text_input_client_; 66 if (text_input_client_) { 67 text_input_client_->InsertChar(ui::KeyboardCodeFromNative(native_event), 83 if (text_input_client_) { 92 text_input_client_->InsertChar(ch, state); 105 if (event.type() == ET_KEY_PRESSED && text_input_client_) { 108 text_input_client_->InsertChar(ch, event.flags());
|
mock_input_method.cc | 10 : text_input_client_(NULL) { 20 if (text_input_client_ == client) 22 text_input_client_ = client; 28 return text_input_client_;
|
fake_input_method.h | 55 TextInputClient* text_input_client_; member in class:ui::FakeInputMethod
|
input_method_base.h | 90 TextInputClient* text_input_client_; member in class:ui::InputMethodBase
|
mock_input_method.h | 69 TextInputClient* text_input_client_; member in class:ui::MockInputMethod
|