Searched refs:oldWidth (Results 1 - 6 of 6) 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
H A DComposeMessageActivity.java3512 public void onSizeChanged(int width, int height, int oldWidth, int oldHeight) {
3515 " oldw=" + oldWidth + " oldh=" + oldHeight);
/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
H A DAnimUtils.java198 final int oldWidth = view.getWidth();
200 final int deltaWidth = newWidth - oldWidth;
208 view.getLayoutParams().width = (int) (value * deltaWidth + oldWidth);
/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/Camera/src/com/android/camera/
H A DVideoModule.java1996 int oldWidth = screenNail.getWidth();
1999 if (oldWidth != width || oldHeight != height) {
/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 437 milliseconds