/external/chromium_org/ui/views/controls/textfield/ |
textfield_views_model.h | 131 bool MoveCursorTo(const gfx::SelectionModel& selection); 133 // Helper function to call MoveCursorTo on the TextfieldViewsModel. 134 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 | 127 MoveCursorTo(event.location(), true); 153 if (initiating_drag_ && MoveCursorTo(event.location(), false)) 171 MoveCursorTo(event->location(), false)) 178 if (MoveCursorTo(event->location(), true)) 334 model_->MoveCursorTo(drop_destination_model); [all...] |
native_textfield_views.h | 232 // Helper function to call MoveCursorTo on the TextfieldViewsModel. 233 bool MoveCursorTo(const gfx::Point& point, bool select);
|
/external/chromium_org/ui/aura/ |
root_window_host_ozone.h | 46 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
window_tree_host.h | 104 virtual void MoveCursorTo(const gfx::Point& location) = 0;
|
root_window_host_ozone.cc | 106 void RootWindowHostOzone::MoveCursorTo(const gfx::Point& location) {
|
root_window_host_win.h | 37 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
root_window_host_x11.h | 65 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
remote_root_window_host_win.h | 228 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
root_window.h | 128 void MoveCursorTo(const gfx::Point& location); 239 // by MoveCursorTo() and MoveCursorToHostLocation().
|
window_unittest.cc | 322 TEST_F(WindowTest, MoveCursorTo) { 334 root->MoveCursorTo(gfx::Point(10, 10)); 337 w1->MoveCursorTo(gfx::Point(10, 10)); 340 w11->MoveCursorTo(gfx::Point(10, 10)); 343 w111->MoveCursorTo(gfx::Point(10, 10)); 346 w1111->MoveCursorTo(gfx::Point(10, 10)); 358 root->MoveCursorTo(gfx::Point(10, 10)); 360 root->MoveCursorTo(gfx::Point(9, 10)); 376 dispatcher()->MoveCursorTo(gfx::Point(10, 10)); 396 w1->MoveCursorTo(gfx::Point(10, 10)) [all...] |
root_window_host_win.cc | 216 void RootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
|
window.h | 243 virtual void MoveCursorTo(const gfx::Point& point_in_window);
|
/external/chromium_org/ui/gfx/ |
render_text.h | 262 bool MoveCursorTo(const SelectionModel& selection_model); 267 bool MoveCursorTo(const Point& point, bool select); 554 void MoveCursorTo(size_t position, bool select);
|
render_text.cc | 444 MoveCursorTo(position, false); 469 MoveCursorTo(position); 472 bool RenderText::MoveCursorTo(const SelectionModel& model) { 487 bool RenderText::MoveCursorTo(const Point& point, bool select) { 491 return MoveCursorTo(position); 557 MoveCursorTo(reversed ? selection_max : selection_min, false); 558 MoveCursorTo(reversed ? selection_min : selection_max, true); [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_->GetDispatcher(), mouse); 440 MoveCursorTo(root_window_->GetDispatcher(), position_after_animation_);
|
/external/chromium_org/ash/display/ |
mouse_cursor_event_filter.cc | 167 dst_root->MoveCursorTo(point_in_dst_screen);
|
/external/chromium_org/ash/test/ |
ash_test_base.cc | 129 Shell::GetPrimaryRootWindow()->MoveCursorTo(gfx::Point(-1000, -1000));
|
/external/chromium_org/ash/wm/ |
ash_native_cursor_manager_unittest.cc | 186 root_window->MoveCursorTo(gfx::Point(10, 10));
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_root_window_host_x11.h | 150 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
desktop_root_window_host_win.h | 124 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
/external/chromium_org/ash/ |
extended_desktop_unittest.cc | 273 root_windows[0]->MoveCursorTo(gfx::Point(10, 10)); 277 root_windows[1]->MoveCursorTo(gfx::Point(10, 20)); 281 root_windows[0]->MoveCursorTo(gfx::Point(20, 10)); [all...] |