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

  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 236 float velocity_y = gesture.data.flingStart.velocityY; local
244 } else if (fabs(velocity_y) > kFlingVelocityThreshold) {
245 if ((overscroll_mode_ == OVERSCROLL_NORTH && velocity_y < 0) ||
246 (overscroll_mode_ == OVERSCROLL_SOUTH && velocity_y > 0)) {
  /external/chromium_org/ui/events/
gesture_event_details.h 65 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::__anon20461::GestureEventConsumeDelegate
256 gesture->details().velocity_y() != 0);
260 velocity_y_ = gesture->details().velocity_y();
    [all...]
  /external/chromium_org/ui/events/gestures/
gesture_sequence.cc 1372 float velocity_x = 0.f, velocity_y = 0.f; local
    [all...]

Completed in 658 milliseconds