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

  /external/chromium_org/ui/ozone/platform/dri/
dri_cursor.cc 57 void DriCursor::MoveCursorTo(gfx::AcceleratedWidget widget,
79 MoveCursorTo(cursor_window_, cursor_location_ + delta);
dri_window.cc 90 void DriWindow::MoveCursorTo(const gfx::Point& location) {
  /external/chromium_org/ui/ozone/platform/test/
test_window.cc 77 void TestWindow::MoveCursorTo(const gfx::Point& location) {
  /external/chromium_org/ui/ozone/platform/caca/
caca_window.cc 136 void CacaWindow::MoveCursorTo(const gfx::Point& location) {}
  /external/chromium_org/ui/views/controls/textfield/
textfield_model_unittest.cc 37 void MoveCursorTo(views::TextfieldModel& model, size_t pos) {
38 model.MoveCursorTo(gfx::SelectionModel(pos, gfx::CURSOR_FORWARD));
106 MoveCursorTo(model, 5);
121 MoveCursorTo(model, 1);
159 MoveCursorTo(model, 1);
162 MoveCursorTo(model, 2);
183 MoveCursorTo(model, 0);
191 MoveCursorTo(model, model.text().length());
200 MoveCursorTo(model, 0);
204 MoveCursorTo(model, 1)
    [all...]
textfield_model.cc 378 bool TextfieldModel::MoveCursorTo(const gfx::SelectionModel& cursor) {
382 // the SelectionModel parameter of MoveCursorTo().
386 return render_text_->MoveCursorTo(
389 return render_text_->MoveCursorTo(cursor);
392 bool TextfieldModel::MoveCursorTo(const gfx::Point& point, bool select) {
398 return render_text_->MoveCursorTo(cursor);
415 render_text_->MoveCursorTo(sel);
659 render_text_->MoveCursorTo(model);
textfield.cc 347 model_->MoveCursorTo(point, false);
598 MoveCursorTo(event.location(), event.IsShiftDown());
660 MoveCursorTo(event.location(), false);
716 MoveCursorTo(event->location(), false);
892 model_->MoveCursorTo(drop_destination_model);
    [all...]
  /external/chromium_org/ui/platform_window/x11/
x11_window.cc 250 void X11Window::MoveCursorTo(const gfx::Point& location) {}
  /external/chromium_org/ash/display/
mouse_cursor_event_filter.cc 202 void MouseCursorEventFilter::MoveCursorTo(aura::Window* root,
265 MoveCursorTo(dst_root, point_in_screen);
267 MoveCursorTo(src_root, point_in_screen);
  /external/chromium_org/ui/aura/
window_tree_host.cc 163 void WindowTreeHost::MoveCursorTo(const gfx::Point& location_in_dip) {
window.cc 644 void Window::MoveCursorTo(const gfx::Point& point_in_window) {
649 root_window->GetHost()->MoveCursorTo(point_in_root);
    [all...]
  /external/chromium_org/ui/platform_window/win/
win_window.cc 107 void WinWindow::MoveCursorTo(const gfx::Point& location) {}
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 49 void MoveCursorTo(aura::WindowTreeHost* host, const gfx::Point& root_location) {
366 MoveCursorTo(root_window_->GetHost(), mouse);
423 MoveCursorTo(root_window_->GetHost(), position_after_animation_);
  /external/chromium_org/ui/ozone/platform/egltest/
ozone_platform_egltest.cc 72 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
147 void EgltestWindow::MoveCursorTo(const gfx::Point& location) {
  /external/chromium_org/ui/gfx/
render_text.cc 519 MoveCursorTo(position, false);
546 MoveCursorTo(cursor);
549 bool RenderText::MoveCursorTo(const SelectionModel& model) {
627 MoveCursorTo(reversed ? selection_max : selection_min, false);
628 MoveCursorTo(reversed ? selection_min : selection_max, true);
    [all...]

Completed in 255 milliseconds