Searched refs:detector (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java77 public boolean onScale(ScaleGestureDetector detector) { argument
78 float scale = detector.getScaleFactor();
97 float centerX = detector.getFocusX();
98 float centerY = detector.getFocusY();
115 public boolean onScaleBegin(ScaleGestureDetector detector) { argument
119 public void onScaleEnd(ScaleGestureDetector detector) { argument
120 mLastX = detector.getFocusX();
121 mLastY = detector.getFocusY();
/frameworks/base/core/java/android/view/
H A DScaleGestureDetector.java57 * @param detector The detector reporting the event - use this to
59 * @return Whether or not the detector should consider this event
60 * as handled. If an event was not handled, the detector
66 public boolean onScale(ScaleGestureDetector detector); argument
72 * @param detector The detector reporting the event - use this to
74 * @return Whether or not the detector should continue recognizing
80 public boolean onScaleBegin(ScaleGestureDetector detector); argument
90 * @param detector Th
93 onScaleEnd(ScaleGestureDetector detector) argument
108 onScale(ScaleGestureDetector detector) argument
112 onScaleBegin(ScaleGestureDetector detector) argument
116 onScaleEnd(ScaleGestureDetector detector) argument
[all...]
/frameworks/base/core/java/android/pim/vcard/
H A DVCardParser_V21.java116 public VCardParser_V21(VCardSourceDetector detector) { argument
117 this(detector != null ? detector.getEstimatedType() : VCardConfig.PARSE_TYPE_UNKNOWN);
/frameworks/base/core/java/android/webkit/
H A DWebView.java4577 public boolean onScaleBegin(ScaleGestureDetector detector) { argument
4594 public void onScaleEnd(ScaleGestureDetector detector) { argument
4622 startTouch(detector.getFocusX(), detector.getFocusY(),
4628 public boolean onScale(ScaleGestureDetector detector) { argument
4629 float scale = (float) (Math.round(detector.getScaleFactor()
4639 mZoomCenterX = detector.getFocusX();
4640 mZoomCenterY = detector.getFocusY();

Completed in 92 milliseconds