HomeSort by relevance Sort by last modified time
    Searched refs:kTouchHighThreshold (Results 1 - 2 of 2) sorted by null

  /bootable/recovery/
ui.h 173 const int kTouchHighThreshold;
ui.cpp 63 kTouchHighThreshold(RECOVERY_UI_TOUCH_HIGH_THRESHOLD),
180 // - and the delta along the other axis is beyond kTouchHighThreshold.
181 if (abs(dy) < kTouchLowThreshold && abs(dx) > kTouchHighThreshold) {
183 } else if (abs(dx) < kTouchLowThreshold && abs(dy) > kTouchHighThreshold) {
187 << ", high: " << kTouchHighThreshold << ")";

Completed in 437 milliseconds