HomeSort by relevance Sort by last modified time
    Searched full:origy (Results 1 - 9 of 9) sorted by null

  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 29 * @param origY the raw y coordinate of the initial touch
32 public boolean onInterceptMoveLeft(float origX, float origY);
38 * @param origY the raw y coordinate of the initial touch
41 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);
PhotoViewActivity.java 417 public InterceptType onTouchIntercept(float origX, float origY) {
423 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
426 interceptRight = listener.onInterceptMoveRight(origX, origY);
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 311 int ImageDecoder::upperBoundScaledY(int origY, int searchStart)
313 return getScaledValue<UpperBound>(m_scaledRows, origY, searchStart);
316 int ImageDecoder::lowerBoundScaledY(int origY, int searchStart)
318 return getScaledValue<LowerBound>(m_scaledRows, origY, searchStart);
321 int ImageDecoder::scaledY(int origY, int searchStart)
323 return getScaledValue<Exact>(m_scaledRows, origY, searchStart);
ImageDecoder.h 331 int upperBoundScaledY(int origY, int searchStart = 0);
332 int lowerBoundScaledY(int origY, int searchStart = 0);
333 int scaledY(int origY, int searchStart = 0);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 72 * @param origY the raw y coordinate of the initial touch
75 public boolean interceptMoveLeft(float origX, float origY);
82 * @param origY the raw y coordinate of the initial touch
84 public boolean interceptMoveRight(float origX, float origY);
458 public boolean onInterceptMoveLeft(float origX, float origY) {
464 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
468 public boolean onInterceptMoveRight(float origX, float origY) {
474 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
  /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 299 public boolean interceptMoveLeft(float origX, float origY) {
332 public boolean interceptMoveRight(float origX, float origY) {
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 113 milliseconds