Searched refs:oldHeight (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);
3518 if (!mMessagesAndDraftLoaded && (oldHeight-height > SMOOTH_SCROLL_THRESHOLD)) {
3528 smoothScrollToEnd(false, height - oldHeight);
/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
H A DAnimUtils.java199 final int oldHeight = view.getHeight();
201 final int deltaHeight = newHeight - oldHeight;
209 view.getLayoutParams().height = (int) (value * deltaHeight + 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/Camera/src/com/android/camera/
H A DVideoModule.java1997 int oldHeight = screenNail.getHeight();
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 132 milliseconds