Home
last modified time | relevance | path

Searched refs:dirFlag (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java1199 final int dirFlag = mDx > 0 ? RIGHT : LEFT; in checkHorizontalSwipe() local
1207 if ((velDirFlag & flags) != 0 && dirFlag == velDirFlag in checkHorizontalSwipe()
1217 if ((flags & dirFlag) != 0 && Math.abs(mDx) > threshold) { in checkHorizontalSwipe()
1218 return dirFlag; in checkHorizontalSwipe()
1226 final int dirFlag = mDy > 0 ? DOWN : UP; in checkVerticalSwipe() local
1234 if ((velDirFlag & flags) != 0 && velDirFlag == dirFlag in checkVerticalSwipe()
1243 if ((flags & dirFlag) != 0 && Math.abs(mDy) > threshold) { in checkVerticalSwipe()
1244 return dirFlag; in checkVerticalSwipe()