Searched defs:oldHeight (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageListView.java75 void onSizeChanged(int width, int height, int oldWidth, int oldHeight); argument
/packages/apps/Camera2/src/com/android/camera/crop/
H A DGeometryMathUtils.java155 public static float scale(float oldWidth, float oldHeight, float newWidth, float newHeight) { argument
156 if (oldHeight == 0 || oldWidth == 0 || (oldWidth == newWidth && oldHeight == newHeight)) {
159 return Math.min(newWidth / oldWidth, newHeight / oldHeight);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DGeometryMathUtils.java204 public static float scale(float oldWidth, float oldHeight, float newWidth, float newHeight) { argument
205 if (oldHeight == 0 || oldWidth == 0 || (oldWidth == newWidth && oldHeight == newHeight)) {
208 return Math.min(newWidth / oldWidth, newHeight / oldHeight);
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
H A DStaggeredGridView.java4071 void onSizeChanged(int width, int height, int oldWidth, int oldHeight); argument

Completed in 156 milliseconds