/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/events/gestures/ |
gesture_types.cc | 95 float velocity_y, 100 data.scroll_update.velocity_y = velocity_y;
|
gesture_types.h | 33 void SetScrollVelocity(float velocity_x, float velocity_y, 53 float velocity_y() const { function in struct:ui::GestureEventDetails 57 data.scroll_update.velocity_y; 139 float velocity_y; member in struct:ui::GestureEventDetails::__anon14833::__anon14834
|
gesture_sequence.cc | 1357 float velocity_x = 0.f, velocity_y = 0.f; local [all...] |
/external/chromium_org/content/common/input/ |
synthetic_web_input_event_builders.h | 54 float velocity_y,
|
synthetic_web_input_event_builders.cc | 120 float velocity_y, 125 result.data.flingStart.velocityY = velocity_y;
|
/external/chromium_org/content/browser/renderer_host/ |
overscroll_controller.cc | 255 float velocity_y = gesture.data.flingStart.velocityY; local 263 } else if (fabs(velocity_y) > kFlingVelocityThreshold) { 264 if ((overscroll_mode_ == OVERSCROLL_NORTH && velocity_y < 0) || 265 (overscroll_mode_ == OVERSCROLL_SOUTH && velocity_y > 0)) {
|
ui_events_helper.cc | 203 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 | 298 if (fabs(event->details().velocity_y()) > 301 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 | 278 UpdateForFling(details.velocity_x(), details.velocity_y());
|
/external/chromium_org/ash/shelf/ |
shelf_layout_manager.cc | 455 should_change = horizontal ? fabs(gesture.details().velocity_y()) > 0 : 459 gesture.details().velocity_y() < 0, 462 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 | 184 float velocity_y() const { return velocity_y_; } function in class:aura::test::__anon14704::GestureEventConsumeDelegate 232 scroll_velocity_y_ = gesture->details().velocity_y(); 260 gesture->details().velocity_y() != 0); 264 velocity_y_ = gesture->details().velocity_y(); [all...] |