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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 44 * @param origX the raw x coordinate of the initial touch
48 public boolean onInterceptMoveLeft(float origX, float origY);
53 * @param origX the raw x coordinate of the initial touch
57 public boolean onInterceptMoveRight(float origX, float origY);
PhotoViewPager.java 49 * @param origX the raw x coordinate of the initial touch
53 public InterceptType onTouchIntercept(float origX, float origY);
PhotoViewController.java 718 public InterceptType onTouchIntercept(float origX, float origY) {
724 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
727 interceptRight = listener.onInterceptMoveRight(origX, origY);
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 69 * @param origX the raw x coordinate of the initial touch
73 public boolean interceptMoveLeft(float origX, float origY);
79 * @param origX the raw x coordinate of the initial touch
82 public boolean interceptMoveRight(float origX, float origY);
482 public boolean onInterceptMoveLeft(float origX, float origY) {
488 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
492 public boolean onInterceptMoveRight(float origX, float origY) {
498 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
  /external/skia/src/pathops/
SkPathOpsQuad.cpp 26 double origX = endPt[0]->fX;
28 double adj = endPt[1]->fX - origX;
30 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
37 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkPathOpsCubic.cpp 164 double origX = endPt[0]->fX;
166 double adj = endPt[1]->fX - origX;
170 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
172 double sign2 = (fPts[oddMan2].fY - origY) * adj - (fPts[oddMan2].fX - origX) * opp;
185 double test = (pts[n].fY - origY) * adj - (pts[n].fX - origX) * opp;
SkPathOpsTSect.h 605 double origX = fPart[start].fX;
607 double adj = fPart[end].fX - origX;
613 double dy = q2[n].fX - origX;
615 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
    [all...]
  /external/skia/src/core/
SkScan_AntiPath.cpp 321 int origX = x;
383 x = origX;
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 304 float origX = mMotionEvent2.getX();
313 assertEquals(origX, mMotionEvent2.getHistoricalX(0), DELTA);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 403 public boolean interceptMoveLeft(float origX, float origY) {
436 public boolean interceptMoveRight(float origX, float origY) {
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 1034 milliseconds