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

  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 235 float velocity_x = gesture.data.flingStart.velocityX; local
237 if (fabs(velocity_x) > kFlingVelocityThreshold) {
238 if ((overscroll_mode_ == OVERSCROLL_WEST && velocity_x < 0) ||
239 (overscroll_mode_ == OVERSCROLL_EAST && velocity_x > 0)) {
  /external/chromium_org/ui/events/
gesture_event_details.h 60 float velocity_x() const { function in struct:ui::GestureEventDetails
  /external/chromium_org/ui/events/gesture_detection/
gesture_detector.cc 84 float velocity_x,
91 float velocity_x,
399 const float velocity_x = velocity_tracker_.GetXVelocity(pointer_id); local
402 (std::abs(velocity_x) > min_fling_velocity_)) {
404 *current_down_event_, ev, velocity_x, velocity_y);
407 handled |= HandleSwipeIfNeeded(ev, velocity_x, velocity_y);
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 183 float velocity_x() const { return velocity_x_; } function in class:aura::test::__anon20461::GestureEventConsumeDelegate
255 EXPECT_TRUE(gesture->details().velocity_x() != 0 ||
259 velocity_x_ = gesture->details().velocity_x();
    [all...]
  /external/chromium_org/ui/events/gestures/
gesture_sequence.cc 1372 float velocity_x = 0.f, velocity_y = 0.f; local
    [all...]

Completed in 914 milliseconds