Searched defs:newHeight (Results 1 - 9 of 9) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationFooterView.java29 * @param newHeight the new height in px
31 void onConversationFooterHeightChange(int newHeight); argument
H A DConversationViewHeader.java62 * @param newHeight the new height in px
64 void onConversationViewHeaderHeightChange(int newHeight); argument
/packages/apps/Dialer/java/com/android/dialer/animation/
H A DAnimUtils.java217 * @param newHeight The new height of the view.
219 public static void changeDimensions(final View view, final int newWidth, final int newHeight) { argument
225 final int deltaHeight = newHeight - oldHeight;
/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
H A DAnimUtils.java197 * @param newHeight The new height of the view.
199 public static void changeDimensions(final View view, final int newWidth, final int newHeight) { argument
205 final int deltaHeight = newHeight - oldHeight;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSecureConversationViewFragment.java227 public void onConversationViewHeaderHeightChange(int newHeight) { argument
H A DAbstractConversationViewFragment.java223 public abstract void onConversationViewHeaderHeightChange(int newHeight); argument
H A DConversationViewFragment.java969 public void onConversationViewHeaderHeightChange(int newHeight) { argument
970 final int h = mWebView.screenPxToWebPx(newHeight);
980 public void onConversationFooterHeightChange(int newHeight) { argument
981 final int h = mWebView.screenPxToWebPx(newHeight);
/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/Messaging/src/com/android/messaging/util/
H A DImageUtils.java822 * @param newHeight destination height
826 final int newHeight) {
834 final float yScale = (float) newHeight / sourceHeight;
844 final float top = (newHeight - scaledHeight) / 2;
852 final Bitmap dest = Bitmap.createBitmap(newWidth, newHeight, source.getConfig());
825 scaleCenterCrop(final Bitmap source, final int newWidth, final int newHeight) argument

Completed in 213 milliseconds