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

  /external/webkit/WebCore/rendering/
RenderListBox.cpp 419 int yDelta = currentMousePosition.y() - panStartMousePosition.y();
422 yDelta = max(min(yDelta, maxSpeed), -maxSpeed);
424 if (abs(yDelta) < iconRadius) // at the center we let the space for the icon
427 if (yDelta > 0)
430 else if (yDelta < 0)
431 yDelta--;
434 yDelta /= speedReducer;
437 scrollPoint.setY(absOffset.y() + yDelta);
RenderLayer.cpp     [all...]
RenderLayer.h 239 void scrollByRecursively(int xDelta, int yDelta);
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 261 float yDelta = dy * (mCropRect.height() / r.height());
263 (((edge & GROW_TOP_EDGE) != 0) ? -1 : 1) * yDelta);
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 232 float yDelta = dy * (mCropRect.height() / r.height());
233 growBy((((edge & GROW_LEFT_EDGE) != 0) ? -1 : 1) * xDelta, (((edge & GROW_TOP_EDGE) != 0) ? -1 : 1) * yDelta);