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

  /bootable/recovery/
ui.h 172 const int kTouchLowThreshold;
ui.cpp 62 kTouchLowThreshold(RECOVERY_UI_TOUCH_LOW_THRESHOLD),
179 // - the delta along one axis is below kTouchLowThreshold;
181 if (abs(dy) < kTouchLowThreshold && abs(dx) > kTouchHighThreshold) {
183 } else if (abs(dx) < kTouchLowThreshold && abs(dy) > kTouchHighThreshold) {
186 LOG(DEBUG) << "Ignored " << dx << " " << dy << " (low: " << kTouchLowThreshold

Completed in 567 milliseconds