HomeSort by relevance Sort by last modified time
    Searched refs:velocity_y (Results 1 - 25 of 25) 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/events/gesture_detection/
gesture_detector.h 85 float velocity_y) = 0;
90 float velocity_y) = 0;
122 float velocity_y) OVERRIDE;
126 float velocity_y) OVERRIDE;
gesture_provider.h 94 void Fling(const MotionEvent& e, float velocity_x, float velocity_y);
gesture_provider.cc 379 float velocity_y) OVERRIDE {
382 velocity_y = 0;
388 provider_->Fling(e2, velocity_x, velocity_y);
395 float velocity_y) OVERRIDE {
396 GestureEventDetails swipe_details(ET_GESTURE_SWIPE, velocity_x, velocity_y);
625 float velocity_y) {
626 if (!velocity_x && !velocity_y) {
637 ET_GESTURE_SCROLL_BEGIN, velocity_x, velocity_y);
643 ET_SCROLL_FLING_START, velocity_x, velocity_y);
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/content/common/input/
synthetic_web_input_event_builders.h 57 float velocity_y,
synthetic_web_input_event_builders.cc 141 float velocity_y,
146 result.data.flingStart.velocityY = velocity_y;
  /external/chromium_org/ui/gfx/android/
scroller.h 53 float velocity_y,
scroller.cc 225 float velocity_y,
236 Signum(velocity_y) == Signum(old_velocity_y)) {
238 velocity_y += old_velocity_y;
245 float velocity = std::sqrt(velocity_x * velocity_x + velocity_y * velocity_y);
256 float coeff_y = velocity == 0 ? 1.0f : velocity_y / velocity;
  /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)) {
ui_events_helper.cc 201 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/ui/events/gestures/
gesture_sequence.cc 1372 float velocity_x = 0.f, velocity_y = 0.f; local
    [all...]
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 86 event.details().velocity_y() > -kMinThresholdGestureFling)
  /external/chromium_org/ui/events/
gesture_event_details.h 65 float velocity_y() const { function in struct:ui::GestureEventDetails
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 762 final public boolean fling(int velocity_x, int velocity_y){
773 velocity_y,
778 updateDirection(velocity_x, velocity_y);
    [all...]
  /external/chromium_org/ui/views/controls/menu/
submenu_view.cc 287 if (event->details().velocity_y() != 0.0f)
288 scroll_animator_->Start(0, event->details().velocity_y());
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.h 115 void GestureFlingStart(float x, float y, float velocity_x, float velocity_y);
event_sender.cc 349 void GestureFlingStart(float x, float y, float velocity_x, float velocity_y);
668 float velocity_y) {
670 sender_->GestureFlingStart(x, y, velocity_x, velocity_y);
    [all...]
  /external/chromium_org/ash/wm/
toplevel_window_event_handler.cc 331 if (event->details().velocity_y() > kMinVertVelocityForWindowMinimize) {
333 } else if (event->details().velocity_y() <
  /external/chromium_org/ash/shelf/
shelf_layout_manager.cc 460 should_change = horizontal ? fabs(gesture.details().velocity_y()) > 0 :
464 gesture.details().velocity_y() < 0,
467 gesture.details().velocity_y() > 0);
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_util.cc 299 gesture.data.flingStart.velocityY = data.details.velocity_y();
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar.cc 260 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::__anon20461::GestureEventConsumeDelegate
256 gesture->details().velocity_y() != 0);
260 velocity_y_ = gesture->details().velocity_y();
    [all...]

Completed in 720 milliseconds