Home | History | Annotate | Download | only in widget

Lines Matching refs:swipeFlags

978         final int swipeFlags = (movementFlags & ACTION_MODE_SWIPE_MASK)
981 if (swipeFlags == 0) {
1002 if (dx < 0 && (swipeFlags & LEFT) == 0) {
1005 if (dx > 0 && (swipeFlags & RIGHT) == 0) {
1009 if (dy < 0 && (swipeFlags & UP) == 0) {
1012 if (dy > 0 && (swipeFlags & DOWN) == 0) {
1489 * @param swipeFlags The directions in which the item can be swiped.
1492 public static int makeMovementFlags(int dragFlags, int swipeFlags) {
1493 return makeFlag(ACTION_STATE_IDLE, swipeFlags | dragFlags)
1494 | makeFlag(ACTION_STATE_SWIPE, swipeFlags)