HomeSort by relevance Sort by last modified time
    Searched defs:MoveCursorTo (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/ui/views/controls/textfield/
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...]
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);
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...]
  /external/chromium_org/ui/aura/
root_window_host_ozone.cc 101 void RootWindowHostOzone::MoveCursorTo(const gfx::Point& location) {
remote_root_window_host_win.cc 356 void RemoteRootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
357 VLOG(1) << "In MoveCursorTo: " << location.x() << ", " << location.y();
377 VLOG(1) << "In MoveCursorTo. Sending IPC";
root_window_host_win.cc 228 void RootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
root_window.cc 289 void RootWindow::MoveCursorTo(const gfx::Point& location_in_dip) {
716 host_->MoveCursorTo(host_location);
    [all...]
root_window_host_x11.cc 805 void RootWindowHostX11::MoveCursorTo(const gfx::Point& location) {
    [all...]
window.cc 492 void Window::MoveCursorTo(const gfx::Point& point_in_window) {
497 root_window->MoveCursorTo(point_in_root);
    [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/ui/gfx/
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...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_root_window_host_win.cc 500 void DesktopRootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
desktop_root_window_host_x11.cc 718 void DesktopRootWindowHostX11::MoveCursorTo(const gfx::Point& location) {
    [all...]

Completed in 501 milliseconds