Home
last modified time | relevance | path

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

/packages/apps/InCallUI/src/com/android/incallui/
DCircularRevealFragment.java49 public static void startCircularReveal(FragmentManager fm, Point touchPoint, in startCircularReveal() argument
53 new CircularRevealFragment(touchPoint, listener), TAG) in startCircularReveal()
72 public CircularRevealFragment(Point touchPoint, OnCircularRevealCompleteListener listener) { in CircularRevealFragment() argument
73 mTouchPoint = touchPoint; in CircularRevealFragment()
145 private Animator getRevealAnimator(Point touchPoint) { in getRevealAnimator() argument
154 if (touchPoint != null) { in getRevealAnimator()
155 startX = touchPoint.x; in getRevealAnimator()
156 startY = touchPoint.y; in getRevealAnimator()
DInCallActivity.java587 Point touchPoint = null; in internalResolveIntent() local
590 touchPoint = TouchPointManager.getInstance().getPoint(); in internalResolveIntent()
594 touchPoint = (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT); in internalResolveIntent()
599 CircularRevealFragment.startCircularReveal(getFragmentManager(), touchPoint, in internalResolveIntent() local
DInCallPresenter.java1305 final Point touchPoint = extras.getParcelable(TouchPointManager.TOUCH_POINT); in maybeStartRevealAnimation() local
1310 incallIntent.putExtra(TouchPointManager.TOUCH_POINT, touchPoint); in maybeStartRevealAnimation()
/packages/apps/Dialer/src/com/android/dialer/util/
DDialerUtils.java82 Point touchPoint = TouchPointManager.getInstance().getPoint(); in startActivityWithErrorToast() local
83 if (touchPoint.x != 0 || touchPoint.y != 0) { in startActivityWithErrorToast()
85 extras.putParcelable(TouchPointManager.TOUCH_POINT, touchPoint); in startActivityWithErrorToast()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageCrop.java113 float[] touchPoint = { in onTouchEvent() local
116 mDisplayMatrixInverse.mapPoints(touchPoint); in onTouchEvent()
117 x = touchPoint[0]; in onTouchEvent()
118 y = touchPoint[1]; in onTouchEvent()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
DCropView.java146 float[] touchPoint = { in onTouchEvent() local
149 mDisplayMatrixInverse.mapPoints(touchPoint); in onTouchEvent()
150 x = touchPoint[0]; in onTouchEvent()
151 y = touchPoint[1]; in onTouchEvent()