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

  /external/chromium_org/ui/views/animation/
scroll_animator.cc 46 void ScrollAnimator::Start(float velocity_x, float velocity_y) {
49 float v = std::max(fabs(velocity_x), fabs(velocity_y));
52 velocity_y_ = velocity_y;
scroll_animator.h 37 void Start(float velocity_x, float velocity_y);
  /external/chromium_org/ui/base/gestures/
gesture_types.cc 95 float velocity_y,
100 data.scroll_update.velocity_y = velocity_y;
gesture_types.h 32 void SetScrollVelocity(float velocity_x, float velocity_y,
52 float velocity_y() const { function in struct:ui::GestureEventDetails
56 data.scroll_update.velocity_y;
138 float velocity_y; member in struct:ui::GestureEventDetails::__anon16594::__anon16595
gesture_sequence.cc 1111 float velocity_x = 0.f, velocity_y = 0.f; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 252 float velocity_y = gesture.data.flingStart.velocityY; local
259 } else if (fabs(velocity_y) > kFlingVelocityThreshold) {
260 if ((overscroll_mode_ == OVERSCROLL_NORTH && velocity_y < 0) ||
261 (overscroll_mode_ == OVERSCROLL_SOUTH && velocity_y > 0)) {
ui_events_helper.cc 196 gesture_event.data.flingStart.velocityY = event.details().velocity_y();
  /frameworks/base/tools/velocityplot/
velocityplot.py 87 self.velocity_y = self._make_timeseries()
203 self._append(self.velocity_y, timeindex, self.parse_velocity_y)
219 self._scroll(self.velocity_y, bottom)
227 self.velocity_line_y.set_data(self.velocity_y)
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 87 event.details().velocity_y() > -kMinThresholdGestureFling)
  /external/chromium_org/ash/wm/
toplevel_window_event_handler.cc 292 if (fabs(event->details().velocity_y()) >
295 if (event->details().velocity_y() > 0 &&
  /external/chromium_org/ui/views/controls/menu/
submenu_view.cc 278 if (event->details().velocity_y() != 0.0f)
279 scroll_animator_->Start(0, event->details().velocity_y());
  /external/chromium_org/content/browser/web_contents/aura/
window_slider.cc 273 UpdateForFling(details.velocity_x(), details.velocity_y());
  /external/chromium_org/ash/shelf/
shelf_layout_manager.cc 446 should_change = horizontal ? fabs(gesture.details().velocity_y()) > 0 :
450 gesture.details().velocity_y() < 0,
453 gesture.details().velocity_y() > 0);
    [all...]
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar.cc 250 IsHorizontal() ? 0.f : event->details().velocity_y());
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 179 float velocity_y() const { return velocity_y_; } function in class:aura::test::__anon16542::GestureEventConsumeDelegate
227 scroll_velocity_y_ = gesture->details().velocity_y();
255 gesture->details().velocity_y() != 0);
259 velocity_y_ = gesture->details().velocity_y();
    [all...]

Completed in 245 milliseconds