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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 36 * @param origX the raw x coordinate of the initial touch
40 public boolean onInterceptMoveLeft(float origX, float origY);
45 * @param origX the raw x coordinate of the initial touch
49 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);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 72 * @param origX the raw x coordinate of the initial touch
76 public boolean interceptMoveLeft(float origX, float origY);
82 * @param origX the raw x coordinate of the initial touch
85 public boolean interceptMoveRight(float origX, float origY);
493 public boolean onInterceptMoveLeft(float origX, float origY) {
499 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
503 public boolean onInterceptMoveRight(float origX, float origY) {
509 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 96 double origX = endPt[0]->fX;
98 double adj = endPt[1]->fX - origX;
100 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
105 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkDCubicIntersection.cpp 378 double origX = endPt[triTest]->fX;
384 double adj = endPt[oppTest]->fX - origX;
386 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
391 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 96 double origX = endPt[0]->fX;
98 double adj = endPt[1]->fX - origX;
100 double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX - origX) * opp;
105 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
SkDCubicIntersection.cpp 378 double origX = endPt[triTest]->fX;
384 double adj = endPt[oppTest]->fX - origX;
386 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
391 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /external/chromium_org/third_party/skia/src/core/
SkScan_AntiPath.cpp 300 int origX = x;
362 x = origX;
  /external/skia/src/core/
SkScan_AntiPath.cpp 300 int origX = x;
362 x = origX;
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java 531 public InterceptType onTouchIntercept(float origX, float origY) {
537 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
540 interceptRight = listener.onInterceptMoveRight(origX, origY);
    [all...]
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java 530 public InterceptType onTouchIntercept(float origX, float origY) {
536 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
539 interceptRight = listener.onInterceptMoveRight(origX, origY);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 270 float origX = mMotionEvent2.getX();
279 assertEquals(origX, mMotionEvent2.getHistoricalX(0), DELTA);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 363 public boolean interceptMoveLeft(float origX, float origY) {
396 public boolean interceptMoveRight(float origX, float origY) {
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 3311 milliseconds