Home
last modified time | relevance | path

Searched refs:cursor_bounds (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/input_method/
Dcandidate_window_controller_impl.cc98 const gfx::Rect& cursor_bounds, in SetCursorBounds() argument
104 candidate_window_view_->cursor_bounds(); in SetCursorBounds()
105 const int delta_y = abs(last_bounds.y() - cursor_bounds.y()); in SetCursorBounds()
106 if ((last_bounds.x() == cursor_bounds.x()) && in SetCursorBounds()
113 candidate_window_view_->set_cursor_bounds(cursor_bounds); in SetCursorBounds()
120 mode_indicator_controller_->SetCursorBounds(cursor_bounds); in SetCursorBounds()
Dcandidate_window_view.h127 void set_cursor_bounds(const gfx::Rect& cursor_bounds) { in set_cursor_bounds() argument
128 cursor_bounds_ = cursor_bounds; in set_cursor_bounds()
136 const gfx::Rect& cursor_bounds() const { return cursor_bounds_; } in cursor_bounds() function
Dmode_indicator_delegate_view.cc30 const gfx::Rect& cursor_bounds, in ModeIndicatorDelegateView() argument
32 : cursor_bounds_(cursor_bounds), in ModeIndicatorDelegateView()
Dmode_indicator_controller.cc65 const gfx::Rect& cursor_bounds) { in SetCursorBounds() argument
66 cursor_bounds_ = cursor_bounds; in SetCursorBounds()
Dmode_indicator_delegate_view.h22 ModeIndicatorDelegateView(const gfx::Rect& cursor_bounds,
Dcandidate_window_controller_impl.h82 virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
/external/chromium_org/ui/base/ime/chromeos/
Dmock_ime_candidate_window_handler.cc40 const gfx::Rect& cursor_bounds, in SetCursorBounds() argument
Dmock_ime_candidate_window_handler.h38 virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
Dibus_bridge.h128 virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
/external/chromium_org/ui/views/controls/textfield/
Dnative_textfield_views_unittest.cc1580 std::vector<gfx::Rect> cursor_bounds; in TEST_F() local
1584 cursor_bounds.push_back(GetCursorBounds(sel)); in TEST_F()
1590 cursor_bounds.push_back(bound); in TEST_F()
1598 cursor_bounds.push_back(bound); in TEST_F()
1604 cursor_bounds.push_back(bound); in TEST_F()
1610 cursor_bounds.push_back(bound); in TEST_F()
1616 for (int i = 0; i < static_cast<int>(cursor_bounds.size() - 1); ++i) { in TEST_F()
1617 int half_width = (cursor_bounds[i + 1].x() - cursor_bounds[i].x()) / 2; in TEST_F()
1618 MouseClick(cursor_bounds[i], half_width / 2); in TEST_F()
1625 MouseClick(cursor_bounds[i + 1], - (half_width / 2)); in TEST_F()
[all …]
/external/chromium_org/ui/views/touchui/
Dtouch_selection_controller_impl_unittest.cc91 gfx::Rect cursor_bounds = render_text->GetCursorBounds(sel, true); in GetCursorPosition() local
92 return gfx::Point(cursor_bounds.x(), cursor_bounds.y()); in GetCursorPosition()