HomeSort by relevance Sort by last modified time
    Searched refs:velocity_x (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));
51 velocity_x_ = velocity_x;
scroll_animator.h 37 void Start(float velocity_x, float velocity_y);
  /external/chromium_org/ui/events/gesture_detection/
gesture_detector.h 84 float velocity_x,
89 float velocity_x,
121 float velocity_x,
125 float velocity_x,
gesture_provider.h 94 void Fling(const MotionEvent& e, float velocity_x, float velocity_y);
gesture_provider.cc 378 float velocity_x,
384 velocity_x = 0;
388 provider_->Fling(e2, velocity_x, velocity_y);
394 float velocity_x,
396 GestureEventDetails swipe_details(ET_GESTURE_SWIPE, velocity_x, velocity_y);
624 float velocity_x,
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 84 float velocity_x,
91 float velocity_x,
399 const float velocity_x = velocity_tracker_.GetXVelocity(pointer_id); local
402 (std::abs(velocity_x) > min_fling_velocity_)) {
404 *current_down_event_, ev, velocity_x, velocity_y);
407 handled |= HandleSwipeIfNeeded(ev, velocity_x, velocity_y);
  /external/chromium_org/ui/views/controls/
slide_out_view.cc 29 if (fabsf(event->details().velocity_x()) > kFlingThresholdForClose) {
30 SlideOutAndClose(event->details().velocity_x() < 0 ? SLIDE_LEFT :
  /external/chromium_org/content/common/input/
synthetic_web_input_event_builders.h 56 float velocity_x,
synthetic_web_input_event_builders.cc 140 float velocity_x,
145 result.data.flingStart.velocityX = velocity_x;
  /external/chromium_org/ui/gfx/android/
scroller.h 52 float velocity_x,
scroller.cc 224 float velocity_x,
235 if (Signum(velocity_x) == Signum(old_velocity_x) &&
237 velocity_x += old_velocity_x;
245 float velocity = std::sqrt(velocity_x * velocity_x + velocity_y * velocity_y);
255 float coeff_x = velocity == 0 ? 1.0f : velocity_x / velocity;
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 235 float velocity_x = gesture.data.flingStart.velocityX; local
237 if (fabs(velocity_x) > kFlingVelocityThreshold) {
238 if ((overscroll_mode_ == OVERSCROLL_WEST && velocity_x < 0) ||
239 (overscroll_mode_ == OVERSCROLL_EAST && velocity_x > 0)) {
ui_events_helper.cc 200 gesture_event.data.flingStart.velocityX = event.details().velocity_x();
  /frameworks/base/tools/velocityplot/
velocityplot.py 86 self.velocity_x = self._make_timeseries()
202 self._append(self.velocity_x, timeindex, self.parse_velocity_x)
218 self._scroll(self.velocity_x, bottom)
226 self.velocity_line_x.set_data(self.velocity_x)
  /external/chromium_org/ui/events/gestures/
gesture_sequence.cc 1372 float velocity_x = 0.f, velocity_y = 0.f; local
    [all...]
  /external/chromium_org/ui/events/
gesture_event_details.h 60 float velocity_x() const { function in struct:ui::GestureEventDetails
  /external/chromium_org/ui/app_list/views/
contents_view.cc 343 if (fabs(event->details().velocity_x()) > kMinHorizVelocityToSwitchPage) {
345 event->details().velocity_x() < 0 ? 1 : -1, true);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 762 final public boolean fling(int velocity_x, int velocity_y){
772 velocity_x,
778 updateDirection(velocity_x, velocity_y);
    [all...]
  /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);
667 float velocity_x,
670 sender_->GestureFlingStart(x, y, velocity_x, velocity_y);
    [all...]
  /external/chromium_org/ash/wm/
toplevel_window_event_handler.cc 336 } else if (event->details().velocity_x() >
340 } else if (event->details().velocity_x() <
  /external/chromium_org/ash/shelf/
shelf_layout_manager.cc 461 fabs(gesture.details().velocity_x()) > 0;
465 gesture.details().velocity_x() > 0,
466 gesture.details().velocity_x() < 0,
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_util.cc 298 gesture.data.flingStart.velocityX = data.details.velocity_x();
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar.cc 259 IsHorizontal() ? event->details().velocity_x() : 0.f,
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 183 float velocity_x() const { return velocity_x_; } function in class:aura::test::__anon20461::GestureEventConsumeDelegate
255 EXPECT_TRUE(gesture->details().velocity_x() != 0 ||
259 velocity_x_ = gesture->details().velocity_x();
    [all...]

Completed in 784 milliseconds