HISTORY_SIZE      147 ui/events/gesture_detection/velocity_tracker.cc   Movement movements_[HISTORY_SIZE];
HISTORY_SIZE      360 ui/events/gesture_detection/velocity_tracker.cc   if (++index_ == HISTORY_SIZE) {
HISTORY_SIZE      462 ui/events/gesture_detection/velocity_tracker.cc     M_ARRAY_LENGTH = LeastSquaresVelocityTrackerStrategy::HISTORY_SIZE,
HISTORY_SIZE      565 ui/events/gesture_detection/velocity_tracker.cc   float x[HISTORY_SIZE];
HISTORY_SIZE      566 ui/events/gesture_detection/velocity_tracker.cc   float y[HISTORY_SIZE];
HISTORY_SIZE      567 ui/events/gesture_detection/velocity_tracker.cc   float w[HISTORY_SIZE];
HISTORY_SIZE      568 ui/events/gesture_detection/velocity_tracker.cc   float time[HISTORY_SIZE];
HISTORY_SIZE      586 ui/events/gesture_detection/velocity_tracker.cc     index = (index == 0 ? HISTORY_SIZE : index) - 1;
HISTORY_SIZE      587 ui/events/gesture_detection/velocity_tracker.cc   } while (++m < HISTORY_SIZE);
HISTORY_SIZE      629 ui/events/gesture_detection/velocity_tracker.cc       uint32_t next_index = (index + 1) % HISTORY_SIZE;