Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
DSwipeButtonHelper.java50 private int touchSlop; field in SwipeButtonHelper
114 touchSlop = configuration.getScaledPagingTouchSlop(); in initDimens()
182 if (!touchSlopExeeded && distance > touchSlop) { in onTouchEvent()
486 return translation > 0.0f ? translation + touchSlop : 0.0f; in getTranslationFromRadius()
490 if (translation <= touchSlop) { in getRadiusFromTranslation()
493 return (translation - touchSlop) * BACKGROUND_RADIUS_SCALE_FACTOR + minBackgroundRadius; in getRadiusFromTranslation()
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
DFlingUpDownTouchHandler.java156 private float touchSlop; field in FlingUpDownTouchHandler
179 touchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); in FlingUpDownTouchHandler()
274 if (Math.abs(deltaY) > touchSlop) { in onTouch()
295 || Math.abs(pointerY - initialTouchY) > touchSlop in endMotionEvent()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DMessageScrollView.java114 final int touchSlop = ViewConfiguration.get(c).getScaledTouchSlop(); in MessageScrollView() local
115 mTouchSlopSquared = touchSlop * touchSlop; in MessageScrollView()
/packages/apps/Music/src/com/android/music/
DTouchInterceptor.java140 int touchSlop = mTouchSlop; in onInterceptTouchEvent() local
141 mUpperBound = Math.min(y - touchSlop, mHeight / 3); in onInterceptTouchEvent()
142 mLowerBound = Math.max(y + touchSlop, mHeight * 2 / 3); in onInterceptTouchEvent()
/packages/apps/Launcher2/src/com/android/launcher2/
DPagedViewWithDraggableItems.java139 final int touchSlop = mTouchSlop; in determineDraggingStart() local
140 boolean yMoved = yDiff > touchSlop; in determineDraggingStart()
DPagedView.java1107 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local
1109 boolean xMoved = xDiff > touchSlop; in determineScrollingStart()
1110 boolean yMoved = yDiff > touchSlop; in determineScrollingStart()
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java1245 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local
1246 boolean xMoved = xDiff > touchSlop; in determineScrollingStart()