HomeSort by relevance Sort by last modified time
    Searched refs:touchPoint (Results 1 - 6 of 6) sorted by null

  /packages/apps/InCallUI/src/com/android/incallui/
CircularRevealFragment.java 49 public static void startCircularReveal(FragmentManager fm, Point touchPoint,
53 new CircularRevealFragment(touchPoint, listener), TAG)
72 public CircularRevealFragment(Point touchPoint, OnCircularRevealCompleteListener listener) {
73 mTouchPoint = touchPoint;
145 private Animator getRevealAnimator(Point touchPoint) {
154 if (touchPoint != null) {
155 startX = touchPoint.x;
156 startY = touchPoint.y;
InCallActivity.java 587 Point touchPoint = null;
590 touchPoint = TouchPointManager.getInstance().getPoint();
594 touchPoint = (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT);
599 CircularRevealFragment.startCircularReveal(getFragmentManager(), touchPoint,
    [all...]
InCallPresenter.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/util/
DialerUtils.java 82 Point touchPoint = TouchPointManager.getInstance().getPoint();
83 if (touchPoint.x != 0 || touchPoint.y != 0) {
85 extras.putParcelable(TouchPointManager.TOUCH_POINT, touchPoint);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java 146 float[] touchPoint = {
149 mDisplayMatrixInverse.mapPoints(touchPoint);
150 x = touchPoint[0];
151 y = touchPoint[1];
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 113 float[] touchPoint = {
116 mDisplayMatrixInverse.mapPoints(touchPoint);
117 x = touchPoint[0];
118 y = touchPoint[1];

Completed in 111 milliseconds