HomeSort by relevance Sort by last modified time
    Searched refs:origX (Results 1 - 15 of 15) 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 51 double origX = endPt[0]->fX;
53 double adj = endPt[1]->fX - origX;
55 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
62 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkPathOpsCubic.cpp 161 double origX = endPt[0]->fX;
163 double adj = endPt[1]->fX - origX;
167 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
169 double sign2 = (fPts[oddMan2].fY - origY) * adj - (fPts[oddMan2].fX - origX) * opp;
182 double test = (pts[n].fY - origY) * adj - (pts[n].fX - origX) * opp;
SkPathOpsTSect.h 629 double origX = fPart[start].fX;
631 double adj = fPart[end].fX - origX;
637 double dy = q2[n].fX - origX;
639 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
    [all...]
  /external/skqp/src/pathops/
SkPathOpsQuad.cpp 48 double origX = endPt[0]->fX;
50 double adj = endPt[1]->fX - origX;
52 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
59 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkPathOpsCubic.cpp 161 double origX = endPt[0]->fX;
163 double adj = endPt[1]->fX - origX;
167 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
169 double sign2 = (fPts[oddMan2].fY - origY) * adj - (fPts[oddMan2].fX - origX) * opp;
182 double test = (pts[n].fY - origY) * adj - (pts[n].fX - origX) * opp;
SkPathOpsTSect.h 629 double origX = fPart[start].fX;
631 double adj = fPart[end].fX - origX;
637 double dy = q2[n].fX - origX;
639 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
    [all...]
  /platform_testing/libraries/system-helpers/accessibility-helper/src/android/system/helpers/
AccessibilityScannerHelper.java 288 int origX = bounds.centerX();
292 if (Math.abs(locX - origX) > buttonWidth || Math.abs(locY - origY) > buttonHeight) {
  /external/skia/src/core/
SkScan_AntiPath.cpp 321 int origX = x;
382 x = origX;
  /external/skqp/src/core/
SkScan_AntiPath.cpp 321 int origX = x;
382 x = origX;
  /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 151 milliseconds