OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MoveMouseTo
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/aura/test/
event_generator.h
150
void
MoveMouseTo
(const gfx::Point& point_in_screen, int count);
151
void
MoveMouseTo
(const gfx::Point& point_in_screen) {
152
MoveMouseTo
(point_in_screen, 1);
154
void
MoveMouseTo
(int x, int y) {
155
MoveMouseTo
(gfx::Point(x, y));
166
MoveMouseTo
(current_location_ + gfx::Vector2d(x, y));
event_generator.cc
167
void EventGenerator::
MoveMouseTo
(const gfx::Point& point_in_screen,
191
MoveMouseTo
(point);
196
MoveMouseTo
(point);
201
MoveMouseTo
(CenterOfWindow(window));
Completed in 3024 milliseconds