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

  /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);
  /packages/apps/Dialer/src/com/android/dialer/util/
DialerUtils.java 76 Point touchPoint = TouchPointManager.getInstance().getPoint();
77 if (touchPoint.x != 0 || touchPoint.y != 0) {
79 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];
  /packages/apps/InCallUI/src/com/android/incallui/
InCallActivity.java 492 Point touchPoint = null;
495 touchPoint = TouchPointManager.getInstance().getPoint();
499 touchPoint = (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT);
502 mCallCardFragment.animateForNewOutgoingCall(touchPoint);

Completed in 93 milliseconds