/external/chromium_org/ui/views/controls/textfield/ |
D | textfield_views_model_unittest.cc | 37 void MoveCursorTo(views::TextfieldViewsModel& model, size_t pos) { in MoveCursorTo() function 38 model.MoveCursorTo(gfx::SelectionModel(pos, gfx::CURSOR_FORWARD)); in MoveCursorTo() 108 MoveCursorTo(model, 5); in TEST_F() 123 MoveCursorTo(model, 1); in TEST_F() 166 MoveCursorTo(model, 1); in TEST_F() 169 MoveCursorTo(model, 2); in TEST_F() 190 MoveCursorTo(model, 0); in TEST_F() 198 MoveCursorTo(model, model.GetText().length()); in TEST_F() 207 MoveCursorTo(model, 0); in TEST_F() 213 MoveCursorTo(model, 1); in TEST_F() [all …]
|
D | textfield_views_model.cc | 406 bool TextfieldViewsModel::MoveCursorTo(const gfx::SelectionModel& model) { in MoveCursorTo() function in views::TextfieldViewsModel 414 return render_text_->MoveCursorTo( in MoveCursorTo() 417 return render_text_->MoveCursorTo(model); in MoveCursorTo() 420 bool TextfieldViewsModel::MoveCursorTo(const gfx::Point& point, bool select) { in MoveCursorTo() function in views::TextfieldViewsModel 423 return render_text_->MoveCursorTo(point, select); in MoveCursorTo() 440 render_text_->MoveCursorTo(sel); in SelectSelectionModel() 682 render_text_->MoveCursorTo(model); in ReplaceTextInternal()
|
D | textfield_views_model.h | 131 bool MoveCursorTo(const gfx::SelectionModel& selection); 134 bool MoveCursorTo(const gfx::Point& point, bool select);
|
D | native_textfield_views.cc | 127 MoveCursorTo(event.location(), true); in OnMouseDragged() 153 if (initiating_drag_ && MoveCursorTo(event.location(), false)) in OnMouseReleased() 171 MoveCursorTo(event->location(), false)) in OnGestureEvent() 178 if (MoveCursorTo(event->location(), true)) in OnGestureEvent() 334 model_->MoveCursorTo(drop_destination_model); in OnPerformDrop() 1318 bool NativeTextfieldViews::MoveCursorTo(const gfx::Point& point, bool select) { in MoveCursorTo() function in views::NativeTextfieldViews 1319 if (!model_->MoveCursorTo(point, select)) in MoveCursorTo() 1478 MoveCursorTo(event.location(), event.IsShiftDown()); in HandleMousePressEvent() 1481 MoveCursorTo(event.location(), false); in HandleMousePressEvent()
|
D | native_textfield_views.h | 233 bool MoveCursorTo(const gfx::Point& point, bool select);
|
/external/chromium_org/ui/gfx/ |
D | render_text.cc | 444 MoveCursorTo(position, false); in SetCursorPosition() 469 MoveCursorTo(position); in MoveCursor() 472 bool RenderText::MoveCursorTo(const SelectionModel& model) { in MoveCursorTo() function in gfx::RenderText 487 bool RenderText::MoveCursorTo(const Point& point, bool select) { in MoveCursorTo() function in gfx::RenderText 491 return MoveCursorTo(position); in MoveCursorTo() 557 MoveCursorTo(reversed ? selection_max : selection_min, false); in SelectWord() 558 MoveCursorTo(reversed ? selection_min : selection_max, true); in SelectWord() 1078 void RenderText::MoveCursorTo(size_t position, bool select) { in MoveCursorTo() function in gfx::RenderText
|
D | 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);
|
D | render_text_unittest.cc | 972 render_text->MoveCursorTo(start); in MoveLeftRightByWordVerifier() 980 render_text->MoveCursorTo(start); in MoveLeftRightByWordVerifier() 1000 render_text->MoveCursorTo(start); in MoveLeftRightByWordVerifier() 1006 render_text->MoveCursorTo(start); in MoveLeftRightByWordVerifier() 1086 render_text->MoveCursorTo(SelectionModel(5, CURSOR_FORWARD)); in TEST_F() 1090 render_text->MoveCursorTo(SelectionModel(5, CURSOR_FORWARD)); in TEST_F() 1533 render_text->MoveCursorTo(SelectionModel(render_text->text().length(), in TEST_F() 1559 render_text->MoveCursorTo(SelectionModel(0, CURSOR_FORWARD)); in TEST_F() 1589 render_text->MoveCursorTo(SelectionModel(0, CURSOR_FORWARD)); in TEST_F() 1614 render_text->MoveCursorTo(SelectionModel(render_text->text().length(), in TEST_F() [all …]
|
/external/chromium_org/ui/aura/ |
D | window_tree_host.h | 104 virtual void MoveCursorTo(const gfx::Point& location) = 0;
|
D | root_window_host_ozone.h | 46 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
D | root_window_host_ozone.cc | 106 void RootWindowHostOzone::MoveCursorTo(const gfx::Point& location) { in MoveCursorTo() function in aura::RootWindowHostOzone
|
D | root_window_host_x11.h | 65 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
D | root_window_host_win.h | 37 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
D | window_unittest.cc | 322 TEST_F(WindowTest, MoveCursorTo) { in TEST_F() argument 334 root->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 337 w1->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 340 w11->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 343 w111->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 346 w1111->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 358 root->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 360 root->MoveCursorTo(gfx::Point(9, 10)); in TEST_F() 376 dispatcher()->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 396 w1->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() [all …]
|
D | remote_root_window_host_win.h | 228 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
D | root_window_host_win.cc | 216 void RootWindowHostWin::MoveCursorTo(const gfx::Point& location) { in MoveCursorTo() function in aura::RootWindowHostWin
|
D | root_window.h | 128 void MoveCursorTo(const gfx::Point& location);
|
D | window.h | 243 virtual void MoveCursorTo(const gfx::Point& point_in_window);
|
/external/chromium_org/ash/magnifier/ |
D | magnification_controller.cc | 44 void MoveCursorTo(aura::RootWindow* root_window, in MoveCursorTo() function 383 MoveCursorTo(root_window_->GetDispatcher(), mouse); in OnMouseMove() 440 MoveCursorTo(root_window_->GetDispatcher(), position_after_animation_); in OnImplicitAnimationsCompleted()
|
/external/chromium_org/ash/display/ |
D | display_controller_unittest.cc | 926 primary_root->MoveCursorTo(gfx::Point(50, 50)); in TEST_F() 930 secondary_root->MoveCursorTo(gfx::Point(50, 50)); in TEST_F() 940 secondary_root->MoveCursorTo(gfx::Point(50, 50)); in TEST_F() 942 primary_root->MoveCursorTo(gfx::Point(50, 50)); in TEST_F() 954 primary_root->MoveCursorTo(gfx::Point(50, 50)); in TEST_F()
|
D | mouse_cursor_event_filter.cc | 167 dst_root->MoveCursorTo(point_in_dst_screen); in WarpMouseCursorIfNecessary()
|
/external/chromium_org/ash/wm/ |
D | ash_native_cursor_manager_unittest.cc | 186 root_window->MoveCursorTo(gfx::Point(10, 10)); in TEST_F()
|
/external/chromium_org/ash/ |
D | extended_desktop_unittest.cc | 273 root_windows[0]->MoveCursorTo(gfx::Point(10, 10)); in TEST_F() 277 root_windows[1]->MoveCursorTo(gfx::Point(10, 20)); in TEST_F() 281 root_windows[0]->MoveCursorTo(gfx::Point(20, 10)); in TEST_F()
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
D | desktop_root_window_host_x11.h | 150 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
/external/chromium_org/ash/test/ |
D | ash_test_base.cc | 129 Shell::GetPrimaryRootWindow()->MoveCursorTo(gfx::Point(-1000, -1000)); in SetUp()
|