HomeSort by relevance Sort by last modified time
    Searched refs:caret_bounds (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ui/base/ime/linux/
fake_input_method_context.h 22 virtual void OnCaretBoundsChanged(const gfx::Rect& caret_bounds) OVERRIDE;
linux_input_method_context.h 39 // Notifies the context that the caret bounds have changed. |caret_bounds| is
41 virtual void OnCaretBoundsChanged(const gfx::Rect& caret_bounds) = 0;
  /external/chromium_org/ui/views/ime/
input_method_base.cc 88 gfx::Rect caret_bounds = client->GetCaretBounds();
89 gfx::Point caret_origin = caret_bounds.origin();
91 caret_bounds.set_origin(caret_origin);
92 *rect = GetFocusedView()->ConvertRectToWidget(caret_bounds);
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
x11_input_method_context_impl_gtk2.h 38 virtual void OnCaretBoundsChanged(const gfx::Rect& caret_bounds) OVERRIDE;
x11_input_method_context_impl_gtk2.cc 138 const gfx::Rect& caret_bounds) {
144 last_caret_bounds_ = caret_bounds;
  /external/chromium_org/ui/base/ime/
remote_input_method_win_unittest.cc 76 void set_caret_bounds(const gfx::Rect& caret_bounds) {
77 caret_bounds_ = caret_bounds;
486 std::vector<gfx::Rect> caret_bounds; local
487 caret_bounds.push_back(gfx::Rect(5, 15, 25, 35));
488 mock_text_input_client.set_caret_bounds(caret_bounds[0]);
498 EXPECT_EQ(caret_bounds, mock_remote_delegate.composition_character_bounds());

Completed in 167 milliseconds