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

  /packages/apps/InCallUI/src/com/android/incallui/
CircularRevealActivity.java 62 final Point touchPoint = getIntent().getParcelableExtra(TouchPointManager.TOUCH_POINT);
64 setupDecorView(touchPoint, palette);
84 private void setupDecorView(final Point touchPoint, MaterialPalette palette) {
113 final Animator animator = getRevealAnimator(touchPoint);
151 private Animator getRevealAnimator(Point touchPoint) {
159 if (touchPoint != null) {
160 startX = touchPoint.x;
161 startY = touchPoint.y;
CallCardFragment.java     [all...]
InCallActivity.java 504 Point touchPoint = null;
507 touchPoint = TouchPointManager.getInstance().getPoint();
511 touchPoint = (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT);
520 mCallCardFragment.animateForNewOutgoingCall(touchPoint, showCircularReveal);
InCallPresenter.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchDisambiguation.cpp 69 static float scoreTouchTarget(IntPoint touchPoint, int padding, IntRect boundingBox)
77 IntSize distance = boundingBox.differenceToPoint(touchPoint);
95 IntPoint touchPoint = touchBox.center();
96 IntPoint contentsPoint = mainFrame->view()->windowToContents(touchPoint);
132 targetData.score = scoreTouchTarget(touchPoint, touchPointPadding, targetData.windowBoundingBox);
TouchAdjustment.cpp 400 bool snapTo(const SubtargetGeometry& geom, const IntPoint& touchPoint, const IntRect& touchArea, IntPoint& adjustedPoint)
409 if (bounds.contains(touchPoint)) {
410 adjustedPoint = touchPoint;
433 if (quad.containsPoint(touchPoint)) {
434 adjustedPoint = touchPoint;
  /packages/apps/Dialer/src/com/android/dialer/util/
DialerUtils.java 78 Point touchPoint = TouchPointManager.getInstance().getPoint();
79 if (touchPoint.x != 0 || touchPoint.y != 0) {
81 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 719 milliseconds