HomeSort by relevance Sort by last modified time
    Searched refs:newWidth (Results 1 - 22 of 22) sorted by null

  /external/webkit/WebCore/platform/image-decoders/qt/
RGBA32BufferQt.cpp 78 bool RGBA32Buffer::setSize(int newWidth, int newHeight)
84 m_size = IntSize(newWidth, newHeight);
85 m_image = QImage(newWidth, newHeight, QImage::Format_ARGB32_Premultiplied);
  /external/webkit/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp 67 bool RGBA32Buffer::setSize(int newWidth, int newHeight)
72 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscossprite.c 218 int newWidth, newHeight;
231 newWidth = (currWidth >> oldXeig) << this->hidden->xeig;
243 if (currWidth <= newWidth)
245 extent[2] = newWidth;
  /packages/apps/Gallery3D/src/com/cooliris/wallpaper/
Slideshow.java 214 float newWidth = bitmapWidth * viewAspect;
215 if (bitmapHeight < newWidth) {
217 newWidth = bitmapHeight / viewAspect;
218 rect.set((int) (bitmapWidth / 2 - newWidth / 2), 0, (int) (bitmapWidth / 2 + newWidth / 2), bitmapHeight);
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.cpp 138 bool RGBA32Buffer::setSize(int newWidth, int newHeight)
142 m_bytes.resize(newWidth * newHeight);
143 m_size = IntSize(newWidth, newHeight);
ImageDecoder.h 115 bool setSize(int newWidth, int newHeight);
  /external/webkit/WebCore/html/
HTMLTableColElement.cpp 86 int newWidth = width().toInt();
87 if (newWidth != col->width())
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
BalloonHint.java 245 int newWidth = mBalloonView.getMeasuredWidth() + getPaddingLeft()
249 setWidth(newWidth);
264 mForceDismiss = oldWidth - newWidth > 1 || newWidth - oldWidth > 1;
  /external/webkit/WebCore/rendering/
RenderVideo.cpp 134 int newWidth = renderBox.height() * elementSize.width() / elementSize.height();
136 if (renderBox.width() - newWidth > 2)
137 renderBox.setWidth(newWidth);
AutoTableLayout.cpp 580 int newWidth = max(static_cast<int>(m_layoutStruct[i].effMinWidth), w - reduction);
581 available += w - newWidth;
582 m_layoutStruct[i].calcWidth = newWidth;
RenderFrameSet.cpp 578 int newWidth = maxWidth - borderThickness;
582 int dWidth = (width() - newWidth) / cols;
605 setWidth(max(width(), newWidth));
RenderBox.cpp     [all...]
  /external/webkit/WebCore/inspector/front-end/
ScriptsPanel.js 794 var newWidth = Number.constrain(window.innerWidth - x, Preferences.minScriptsSidebarWidth, window.innerWidth * 0.66);
796 this.sidebarElement.style.width = newWidth + "px";
797 this.sidebarButtonsElement.style.width = newWidth + "px";
798 this.viewsContainerElement.style.right = newWidth + "px";
799 this.sidebarResizeWidgetElement.style.right = newWidth + "px";
800 this.sidebarResizeElement.style.right = (newWidth - 3) + "px";
    [all...]
ElementsPanel.js     [all...]
  /external/webkit/WebKit/mac/WebView/
WebVideoFullscreenController.mm 190 double newWidth = originalRatio * frameToConstrain->size.height;
191 double diff = frameToConstrain->size.width - newWidth;
192 frameToConstrain->size.width = newWidth;
  /frameworks/base/core/java/android/widget/
ImageView.java 675 int newWidth = (int)(desiredAspect *
678 if (newWidth <= widthSize) {
679 widthSize = newWidth;
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
GLRootView.java 697 int newWidth = Util.nextPowerOf2(width);
715 GL11.GL_RGBA, x, y, newWidth, newHeight, 0);
728 texture.setTextureSize(newWidth, newHeight);
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 887 int32_t newWidth = getWindowProp(code->nativeWindow.get(),
891 if (newWidth != code->lastWindowWidth
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 888 int newWidth = 200;
889 final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(newWidth, 100);
897 assertEquals(newWidth, view.getWidth());
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 418 milliseconds