HomeSort by relevance Sort by last modified time
    Searched full:origx (Results 1 - 16 of 16) 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 652 public InterceptType onTouchIntercept(float origX, float origY) {
658 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
661 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);
489 public boolean onInterceptMoveLeft(float origX, float origY) {
495 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
499 public boolean onInterceptMoveRight(float origX, float origY) {
505 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticImplicit.cpp 94 double origX = endPt[0]->x;
96 double adj = endPt[1]->x - origX;
98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp;
103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp;
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 95 double origX = endPt[0]->fX;
97 double adj = endPt[1]->fX - origX;
99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkDCubicIntersection.cpp 444 double origX = endPt[triTest]->fX;
450 double adj = endPt[oppTest]->fX - origX;
455 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
460 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /external/skia/experimental/Intersection/
QuadraticImplicit.cpp 94 double origX = endPt[0]->x;
96 double adj = endPt[1]->x - origX;
98 double sign = (q1[oddMan].y - origY) * adj - (q1[oddMan].x - origX) * opp;
103 double test = (q2[n].y - origY) * adj - (q2[n].x - origX) * opp;
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 95 double origX = endPt[0]->fX;
97 double adj = endPt[1]->fX - origX;
99 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
104 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkDCubicIntersection.cpp 444 double origX = endPt[triTest]->fX;
450 double adj = endPt[oppTest]->fX - origX;
455 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
460 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 270 float origX = mMotionEvent2.getX();
279 assertEquals(origX, mMotionEvent2.getHistoricalX(0), DELTA);
  /external/chromium_org/crypto/
curve25519-donna.c 401 limb origx[10], origxprime[10], zzz[19], xx[19], zz[19], xxprime[19], local
404 memcpy(origx, x, 10 * sizeof(limb));
406 fdifference(z, origx); // does x - z
  /external/chromium_org/third_party/skia/src/core/
SkScan_AntiPath.cpp 324 int origX = x;
386 x = origX;
  /external/skia/src/core/
SkScan_AntiPath.cpp 300 int origX = x;
362 x = origX;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 432 public boolean interceptMoveLeft(float origX, float origY) {
465 public boolean interceptMoveRight(float origX, float origY) {
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 771 milliseconds