Searched refs:touchPoint (Results 1 – 7 of 7) sorted by relevance
/packages/apps/InCallUI/src/com/android/incallui/ |
D | CircularRevealActivity.java | 62 final Point touchPoint = getIntent().getParcelableExtra(TouchPointManager.TOUCH_POINT); in onCreate() local 64 setupDecorView(touchPoint, palette); in onCreate() 84 private void setupDecorView(final Point touchPoint, MaterialPalette palette) { in setupDecorView() argument 113 final Animator animator = getRevealAnimator(touchPoint); in setupDecorView() 151 private Animator getRevealAnimator(Point touchPoint) { in getRevealAnimator() argument 159 if (touchPoint != null) { in getRevealAnimator() 160 startX = touchPoint.x; in getRevealAnimator() 161 startY = touchPoint.y; in getRevealAnimator()
|
D | CallCardFragment.java | 845 public void animateForNewOutgoingCall(final Point touchPoint, in animateForNewOutgoingCall() argument 878 final Animator animator = getOutgoingCallAnimator(touchPoint, in animateForNewOutgoingCall() 993 private Animator getRevealAnimator(Point touchPoint) { in getRevealAnimator() argument 1002 if (touchPoint != null) { in getRevealAnimator() 1003 startX = touchPoint.x; in getRevealAnimator() 1004 startY = touchPoint.y; in getRevealAnimator() 1013 private Animator getOutgoingCallAnimator(Point touchPoint, int startHeight, int endHeight, in getOutgoingCallAnimator() argument 1022 final Animator revealAnimator = getRevealAnimator(touchPoint); in getOutgoingCallAnimator()
|
D | InCallActivity.java | 504 Point touchPoint = null; in internalResolveIntent() local 507 touchPoint = TouchPointManager.getInstance().getPoint(); in internalResolveIntent() 511 touchPoint = (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT); in internalResolveIntent() 520 mCallCardFragment.animateForNewOutgoingCall(touchPoint, showCircularReveal); in internalResolveIntent()
|
D | InCallPresenter.java | 1189 final Point touchPoint = extras.getParcelable(TouchPointManager.TOUCH_POINT); in maybeStartRevealAnimation() local 1192 mContext.startActivity(getAnimationIntent(touchPoint, colors)); in maybeStartRevealAnimation() 1195 private Intent getAnimationIntent(Point touchPoint, MaterialPalette palette) { in getAnimationIntent() argument 1200 intent.putExtra(TouchPointManager.TOUCH_POINT, touchPoint); in getAnimationIntent()
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
D | DialerUtils.java | 78 Point touchPoint = TouchPointManager.getInstance().getPoint(); in startActivityWithErrorToast() local 79 if (touchPoint.x != 0 || touchPoint.y != 0) { in startActivityWithErrorToast() 81 extras.putParcelable(TouchPointManager.TOUCH_POINT, touchPoint); in startActivityWithErrorToast()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
D | CropView.java | 146 float[] touchPoint = { in onTouchEvent() local 149 mDisplayMatrixInverse.mapPoints(touchPoint); in onTouchEvent() 150 x = touchPoint[0]; in onTouchEvent() 151 y = touchPoint[1]; in onTouchEvent()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | ImageCrop.java | 113 float[] touchPoint = { in onTouchEvent() local 116 mDisplayMatrixInverse.mapPoints(touchPoint); in onTouchEvent() 117 x = touchPoint[0]; in onTouchEvent() 118 y = touchPoint[1]; in onTouchEvent()
|