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

  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 234 float velocity_y = gesture.data.flingStart.velocityY; local
242 } else if (fabs(velocity_y) > kFlingVelocityThreshold) {
243 if ((overscroll_mode_ == OVERSCROLL_NORTH && velocity_y < 0) ||
244 (overscroll_mode_ == OVERSCROLL_SOUTH && velocity_y > 0)) {
  /external/chromium_org/ui/events/
gesture_event_details.h 72 float velocity_y() const { function in struct:ui::GestureEventDetails
  /external/chromium_org/ui/events/gesture_detection/
gesture_detector.cc 85 float velocity_y) {
92 float velocity_y) {
398 const float velocity_y = velocity_tracker_.GetYVelocity(pointer_id); local
401 if ((std::abs(velocity_y) > 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 184 float velocity_y() const { return velocity_y_; } function in class:aura::test::__anon283::GestureEventConsumeDelegate
256 gesture->details().velocity_y() != 0);
260 velocity_y_ = gesture->details().velocity_y();
    [all...]

Completed in 682 milliseconds