Searched defs:newWidth (Results 1 - 3 of 3) sorted by relevance

/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
H A DAnimUtils.java192 * @param newWidth The new width of the view.
195 public static void changeDimensions(final View view, final int newWidth, final int newHeight) { argument
200 final int deltaWidth = newWidth - oldWidth;
/packages/apps/Camera2/src/com/android/camera/ui/
H A DModeSelectorItem.java165 * @param newWidth new visible width
167 public void setVisibleWidth(int newWidth) { argument
169 newWidth = Math.max(newWidth, 0);
171 newWidth = Math.min(newWidth, fullyShownIconWidth);
173 if (mVisibleWidth != newWidth) {
174 mVisibleWidth = newWidth;
176 mListener.onVisibleWidthChanged(newWidth);
/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);

Completed in 152 milliseconds