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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 37 * @param origY the raw y coordinate of the initial touch
40 public boolean onInterceptMoveLeft(float origX, float origY);
46 * @param origY the raw y coordinate of the initial touch
49 public boolean onInterceptMoveRight(float origX, float origY);
PhotoViewPager.java 50 * @param origY the raw y coordinate of the initial touch
53 public InterceptType onTouchIntercept(float origX, float origY);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 73 * @param origY the raw y coordinate of the initial touch
76 public boolean interceptMoveLeft(float origX, float origY);
83 * @param origY the raw y 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 97 double origY = endPt[0]->fY;
99 double opp = endPt[1]->fY - origY;
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 414 double origY = endPt[triTest]->fY;
420 double opp = endPt[oppTest]->fY - origY;
421 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
426 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 97 double origY = endPt[0]->fY;
99 double opp = endPt[1]->fY - origY;
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 414 double origY = endPt[triTest]->fY;
420 double opp = endPt[oppTest]->fY - origY;
421 double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX - origX) * opp;
426 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
  /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 271 float origY = mMotionEvent2.getY();
280 assertEquals(origY, mMotionEvent2.getHistoricalY(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 851 milliseconds