HomeSort by relevance Sort by last modified time
    Searched refs:newHeight (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium/chrome/browser/ui/cocoa/
animatable_view.h 43 - (void)setHeight:(CGFloat)newHeight;
45 // Starts a new animation to the given |newHeight| for the given |duration|.
47 - (void)animateToNewHeight:(CGFloat)newHeight
view_resizer.h 19 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
view_resizer_pong.h 19 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDownsample.java 66 int newHeight = orig_h * p / 100;
69 if (newWidth <= 0 || newHeight <= 0 || newWidth >= w || newHeight >= h) {
72 Bitmap ret = Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
  /external/webkit/Source/WebCore/platform/image-decoders/cg/
ImageDecoderCG.cpp 63 bool ImageFrame::setSize(int newWidth, int newHeight)
66 size_t backingStoreSize = newWidth * newHeight * sizeof(PixelData);
73 m_size = IntSize(newWidth, newHeight);
  /external/webkit/Source/WebCore/platform/image-decoders/qt/
ImageFrameQt.cpp 92 bool ImageFrame::setSize(int newWidth, int newHeight)
98 m_size = IntSize(newWidth, newHeight);
100 m_pixmap = QPixmap(newWidth, newHeight);
  /external/webkit/Source/WebCore/platform/gtk/
DragImageGtk.cpp 49 int newHeight = scale.height() * cairo_image_surface_get_height(image);
50 cairo_surface_t* scaledSurface = cairo_surface_create_similar(image, CAIRO_CONTENT_COLOR_ALPHA, newWidth, newHeight);
  /external/webkit/Source/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 87 bool ImageFrame::setSize(int newWidth, int newHeight)
92 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 125 int newHeight;
133 newHeight = rootView.getHeight();
135 while (Math.abs(newHeight - origHeight) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
136 newHeight = rootView.getHeight();
139 return (Math.abs(origHeight - newHeight) >= IME_MIN_HEIGHT);
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 36 int newHeight, int newWidth);
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscossprite.c 218 int newWidth, newHeight;
232 newHeight = (currHeight >> oldYeig) << this->hidden->yeig;
236 if (currHeight <= newHeight)
238 extent[1] = -newHeight;
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditor.java 255 int newHeight = ((overlayCanvas.getWidth() * mOverlayBitmap.getHeight())
258 top = (overlayCanvas.getHeight() - newHeight) / 2;
260 bottom = top + newHeight;
284 int newHeight = ((mOverlayBitmap.getWidth() * overlayCanvas.getHeight())
288 top = (mOverlayBitmap.getHeight() - newHeight) / 2;
290 bottom = top + newHeight;
OverlayFrame.java 367 int newHeight = ((overlayCanvas.getWidth() * overlayBitmap.getHeight())
370 top = (overlayCanvas.getHeight() - newHeight) / 2;
372 bottom = top + newHeight;
396 int newHeight = ((overlayBitmap.getWidth() * overlayCanvas.getHeight())
400 top = (overlayBitmap.getHeight() - newHeight) / 2;
402 bottom = top + newHeight;
  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 59 int newHeight, int newWidth) {
60 mImage = new unsigned char[newHeight * newWidth * inputChannel];
63 newHeight, newWidth, inputChannel);
64 mHeight = newHeight;
71 int heightScale = inputHeight / newHeight;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) {
171 if (newY + newHeight < 0) {
190 control.setData("oldHeight", newHeight);
195 if (oldWidth == newWidth && oldHeight == newHeight) {
201 control.setBounds(newX, newY, newWidth, newHeight);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 45 private int newHeight = 1;
62 if (newWidth != newWidth2 || newHeight != newHeight2){
64 newHeight = newHeight2;
66 System.out.println("EDT: componentResized " + newWidth + ", " + newHeight);
266 reshapeInThread(newWidth, newHeight);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsContainerView.java 98 int newHeight = (int) ((numRows * cellHeight) + ((numRows - 1) * mCellGap)) +
100 setMeasuredDimension(width, newHeight);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMath.java 131 public static float scale(float oldWidth, float oldHeight, float newWidth, float newHeight) {
134 return Math.min(newWidth / oldWidth, newHeight / oldHeight);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 224 final int newHeight = (int) (cropHeight * scaleFactor);
225 final Bitmap scaledBitmap = Bitmap.createBitmap(newWidth, newHeight,
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglCanvas.java 211 int newHeight = Math.max(canvas.getHeight(), 1);
212 if (width != newWidth || height != newHeight){
214 height = newHeight;
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 195 bool ImageFrame::setSize(int newWidth, int newHeight)
199 m_backingStore.resize(newWidth * newHeight);
201 m_size = IntSize(newWidth, newHeight);
  /external/webkit/Source/WebCore/rendering/
RenderVideo.cpp 173 int newHeight = renderBox.width() * elementSize.height() / elementSize.width();
174 if (renderBox.height() - newHeight > 2)
175 renderBox.setHeight(newHeight);
  /packages/apps/Phone/src/com/android/phone/
ContactsAsyncHelper.java 284 int newHeight = (int) (orgHeight / ratio);
287 if (newWidth <= 0 || newHeight <= 0) {
294 return Bitmap.createScaledBitmap(orgBitmap, newWidth, newHeight, true);
  /frameworks/base/core/java/android/content/res/
CompatibilityInfo.java 495 int newWidth, newHeight;
498 newHeight = newLongSize;
501 newHeight = newShortSize;
505 float sh = height/(float)newHeight;
513 outDm.heightPixels = newHeight;
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 200 int newHeight = heightSpecSize;
204 newHeight = getPaddingTop() + getPaddingBottom() + (mCellCountY * mCellHeight) +
206 setMeasuredDimension(newWidth, newHeight);
216 MeasureSpec.makeMeasureSpec(newHeight - getPaddingTop() -
221 setMeasuredDimension(newWidth, newHeight);

Completed in 1766 milliseconds

1 2 3