HomeSort by relevance Sort by last modified time
    Searched refs:MoveCursorTo (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model.h 134 bool MoveCursorTo(const gfx::SelectionModel& selection);
136 // Helper function to call MoveCursorTo on the TextfieldViewsModel.
137 bool MoveCursorTo(const gfx::Point& point, bool select);
textfield_views_model.cc 406 bool TextfieldViewsModel::MoveCursorTo(const gfx::SelectionModel& model) {
410 // the SelectionModel parameter of MoveCursorTo().
414 return render_text_->MoveCursorTo(
417 return render_text_->MoveCursorTo(model);
420 bool TextfieldViewsModel::MoveCursorTo(const gfx::Point& point, bool select) {
423 return render_text_->MoveCursorTo(point, select);
440 render_text_->MoveCursorTo(sel);
682 render_text_->MoveCursorTo(model);
textfield_views_model_unittest.cc 37 void MoveCursorTo(views::TextfieldViewsModel& model, size_t pos) {
38 model.MoveCursorTo(gfx::SelectionModel(pos, gfx::CURSOR_FORWARD));
108 MoveCursorTo(model, 5);
123 MoveCursorTo(model, 1);
166 MoveCursorTo(model, 1);
169 MoveCursorTo(model, 2);
190 MoveCursorTo(model, 0);
198 MoveCursorTo(model, model.GetText().length());
207 MoveCursorTo(model, 0);
213 MoveCursorTo(model, 1)
    [all...]
native_textfield_views.cc 129 MoveCursorTo(event.location(), true);
155 if (initiating_drag_ && MoveCursorTo(event.location(), false))
173 MoveCursorTo(event->location(), false))
180 if (MoveCursorTo(event->location(), true))
331 model_->MoveCursorTo(drop_destination_model);
    [all...]
native_textfield_views.h 234 // Helper function to call MoveCursorTo on the TextfieldViewsModel.
235 bool MoveCursorTo(const gfx::Point& point, bool select);
  /external/chromium_org/ui/aura/
root_window_host.h 97 virtual void MoveCursorTo(const gfx::Point& location) = 0;
root_window_host_ozone.h 47 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
root_window_host_ozone.cc 101 void RootWindowHostOzone::MoveCursorTo(const gfx::Point& location) {
root_window_host_win.h 38 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
root_window_host_x11.h 64 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
remote_root_window_host_win.h 185 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
window_unittest.cc 346 TEST_F(WindowTest, MoveCursorTo) {
358 root->MoveCursorTo(gfx::Point(10, 10));
361 w1->MoveCursorTo(gfx::Point(10, 10));
364 w11->MoveCursorTo(gfx::Point(10, 10));
367 w111->MoveCursorTo(gfx::Point(10, 10));
370 w1111->MoveCursorTo(gfx::Point(10, 10));
382 root->MoveCursorTo(gfx::Point(10, 10));
384 root->MoveCursorTo(gfx::Point(9, 10));
401 root->MoveCursorTo(gfx::Point(10, 10));
421 w1->MoveCursorTo(gfx::Point(10, 10))
    [all...]
root_window.h 130 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
318 // by MoveCursorTo() and MoveCursorToHostLocation().
root_window_host_win.cc 228 void RootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
window.h 220 virtual void MoveCursorTo(const gfx::Point& point_in_window);
  /external/chromium_org/ui/gfx/
render_text.h 227 bool MoveCursorTo(const SelectionModel& selection_model);
232 bool MoveCursorTo(const Point& point, bool select);
466 void MoveCursorTo(size_t position, bool select);
render_text.cc 403 MoveCursorTo(position, false);
428 MoveCursorTo(position);
431 bool RenderText::MoveCursorTo(const SelectionModel& model) {
446 bool RenderText::MoveCursorTo(const Point& point, bool select) {
450 return MoveCursorTo(position);
516 MoveCursorTo(reversed ? selection_max : selection_min, false);
517 MoveCursorTo(reversed ? selection_min : selection_max, true);
941 void RenderText::MoveCursorTo(size_t position, bool select) {
    [all...]
render_text_unittest.cc     [all...]
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 44 void MoveCursorTo(aura::RootWindow* root_window,
383 MoveCursorTo(root_window_, mouse);
440 MoveCursorTo(root_window_, position_after_animation_);
  /external/chromium_org/ash/display/
mouse_cursor_event_filter.cc 147 dst_root->MoveCursorTo(point_in_dst_screen);
display_controller_unittest.cc 708 primary_root->MoveCursorTo(gfx::Point(50, 50));
712 secondary_root->MoveCursorTo(gfx::Point(50, 50));
722 secondary_root->MoveCursorTo(gfx::Point(50, 50));
724 primary_root->MoveCursorTo(gfx::Point(50, 50));
736 primary_root->MoveCursorTo(gfx::Point(50, 50));
    [all...]
  /external/chromium_org/ash/test/
ash_test_base.cc 119 Shell::GetPrimaryRootWindow()->MoveCursorTo(gfx::Point(-1000, -1000));
  /external/chromium_org/ash/wm/
ash_native_cursor_manager_unittest.cc 160 root_window->MoveCursorTo(gfx::Point(10, 10));
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_root_window_host_x11.h 147 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
desktop_root_window_host_win.h 120 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;

Completed in 1045 milliseconds

1 2