HomeSort by relevance Sort by last modified time
    Searched refs:ContainsPointInRoot (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ash/magnifier/
partial_magnification_controller.cc 206 if (root_window->ContainsPointInRoot(
  /external/chromium_org/ash/display/
screen_position_controller.cc 76 if (!root_window->ContainsPointInRoot(location_in_root)) {
  /external/chromium_org/ui/aura/
window.h 244 bool ContainsPointInRoot(const gfx::Point& point_in_root) const;
window_event_dispatcher.cc 245 window->ContainsPointInRoot(last_mouse_location))
564 if (window->ContainsPointInRoot(GetLastMouseLocationInRoot()))
679 window->ContainsPointInRoot(GetLastMouseLocationInRoot())) {
window.cc 663 bool Window::ContainsPointInRoot(const gfx::Point& point_in_root) const {
    [all...]
window_unittest.cc 290 TEST_F(WindowTest, ContainsPointInRoot) {
294 EXPECT_FALSE(w->ContainsPointInRoot(gfx::Point(9, 9)));
295 EXPECT_TRUE(w->ContainsPointInRoot(gfx::Point(10, 10)));
296 EXPECT_TRUE(w->ContainsPointInRoot(gfx::Point(14, 14)));
297 EXPECT_FALSE(w->ContainsPointInRoot(gfx::Point(15, 15)));
298 EXPECT_FALSE(w->ContainsPointInRoot(gfx::Point(20, 20)));
    [all...]

Completed in 2036 milliseconds