/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/gestures/ |
gesture_types.cc | 94 void GestureEventDetails::SetScrollVelocity(float velocity_x, 99 data.scroll_update.velocity_x = velocity_x;
|
gesture_types.h | 33 void SetScrollVelocity(float velocity_x, float velocity_y, 46 float velocity_x() const { function in struct:ui::GestureEventDetails 50 data.scroll_update.velocity_x; 138 float velocity_x; 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/ui/views/controls/ |
slide_out_view.cc | 31 if (fabsf(event->details().velocity_x()) > kFlingThresholdForClose) { 32 SlideOutAndClose(event->details().velocity_x() < 0 ? SLIDE_LEFT :
|
/external/chromium_org/content/common/input/ |
synthetic_web_input_event_builders.h | 53 float velocity_x,
|
synthetic_web_input_event_builders.cc | 119 float velocity_x, 124 result.data.flingStart.velocityX = velocity_x;
|
/external/chromium_org/content/browser/renderer_host/ |
overscroll_controller.cc | 254 float velocity_x = gesture.data.flingStart.velocityX; local 256 if (fabs(velocity_x) > kFlingVelocityThreshold) { 257 if ((overscroll_mode_ == OVERSCROLL_WEST && velocity_x < 0) || 258 (overscroll_mode_ == OVERSCROLL_EAST && velocity_x > 0)) {
|
ui_events_helper.cc | 202 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/app_list/views/ |
contents_view.cc | 228 if (fabs(event->details().velocity_x()) > kMinHorizVelocityToSwitchPage) { 230 event->details().velocity_x() < 0 ? 1 : -1,
|
/external/chromium_org/ash/wm/ |
toplevel_window_event_handler.cc | 311 fabs(event->details().velocity_x()) > 319 event->details().velocity_x() < 0 ?
|
/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 | 456 fabs(gesture.details().velocity_x()) > 0; 460 gesture.details().velocity_x() > 0, 461 gesture.details().velocity_x() < 0, [all...] |
/external/chromium_org/ui/views/controls/scrollbar/ |
base_scroll_bar.cc | 249 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::__anon14704::GestureEventConsumeDelegate 231 scroll_velocity_x_ = gesture->details().velocity_x(); 259 EXPECT_TRUE(gesture->details().velocity_x() != 0 || 263 velocity_x_ = gesture->details().velocity_x(); [all...] |