HomeSort by relevance Sort by last modified time
    Searched defs:scaledWidth (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/WebCore/platform/qt/
DragImageQt.cpp 52 int scaledWidth = image->width() * scale.width();
55 *image = image->scaled(scaledWidth, scaledHeight);
  /external/skia/src/images/
SkScaledBitmapSampler.h 20 int scaledWidth() const { return fScaledWidth; }
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 152 int scaledWidth = WidgetTestUtils.convertDipToPixels(getActivity(), mMovie.width());
153 assertEquals(expectedWidth, scaledWidth);
BitmapTest.java 665 int scaledWidth = scaleFromDensity(ret.getWidth(), ret.getDensity(), dummyDensity);
667 assertEquals(scaledWidth, ret.getScaledWidth(dummyDensity));
674 int scaledWidth = scaleFromDensity(ret.getWidth(), ret.getDensity(), metrics.densityDpi);
675 assertEquals(scaledWidth, ret.getScaledWidth(metrics));
684 int scaledWidth = scaleFromDensity(ret.getWidth(), ret.getDensity(), mCanvas.getDensity());
685 assertEquals(scaledWidth, ret.getScaledWidth(mCanvas));
  /external/webkit/Source/WebCore/rendering/
RenderReplaced.cpp 99 int scaledWidth = static_cast<int>(cDefaultWidth * style()->effectiveZoom());
101 m_intrinsicSize = IntSize(scaledWidth, scaledHeight);
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 336 int scaledWidth = (int)(outWidth * scaleFactor);
341 "Bitmap.createScaledBitmap: w=" + scaledWidth +
345 b = Bitmap.createScaledBitmap(b, scaledWidth, scaledHeight, false);
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 84 float scaledWidth, scaledHeight;
90 scaledWidth = nativeWidth / scale;
95 scaledWidth = width;
106 final Bitmap bitmap = Bitmap.createBitmap(Math.round(scaledWidth),
112 new Rect(0, 0, Math.round(scaledWidth), Math.round(scaledHeight)),
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
LayoutViewer.java 310 int scaledWidth = (int) Math.ceil(mTree.viewNode.width * mScale);
315 mTransform.translate((bounds.width - scaledWidth) / 2.0f,
317 mInverse.translate((bounds.width - scaledWidth) / 2.0f,
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocvideo.cpp 592 TInt scaledWidth = (w * (scaleValue-1))/scaleValue;
593 if (scaledWidth > Private->EPOC_ScreenSize.iWidth)
    [all...]
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 258 int scaledWidth = decoded->width();
262 scaledWidth = int(scaledWidth * scale + 0.5f);
268 env->SetIntField(options, gOptions_widthFieldID, scaledWidth);
327 const float sx = scaledWidth / float(decoded->width());
341 bitmap->setConfig(config, scaledWidth, scaledHeight);
  /frameworks/base/media/java/android/media/videoeditor/
MediaItem.java 441 final int scaledWidth, scaledHeight;
443 scaledWidth = getWidth();
446 scaledWidth = ((MediaImageItem)this).getScaledWidth();
454 if (bitmap.getWidth() != scaledWidth || bitmap.getHeight() != scaledHeight) {
  /sdk/assetstudio/src/com/android/assetstudiolib/
Util.java 332 final int scaledWidth = Math.max(1, dstRect.width);
334 Image scaledImage = scaledImage(source, scaledWidth, scaledHeight);
342 0 + scaledWidth,
346 final int scaledWidth = Math.max(1, dstRect.height * srcWidth / srcHeight);
348 Image scaledImage = scaledImage(source, scaledWidth, scaledHeight);
350 dstRect.x + (dstRect.width - scaledWidth) / 2,
352 dstRect.x + (dstRect.width - scaledWidth) / 2 + scaledWidth,
356 0 + scaledWidth,
375 final int scaledWidth = dstRect.height * srcWidth / srcHeight
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 237 int scaledWidth = (int) (imageWidth * scale);
238 if (scaledWidth > maxWidth) {
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 434 int scaledWidth = (int) (patchWidth * scale);
437 horizontal.scaledWidth = scaledWidth;
439 both.scaledWidth = scaledWidth;
442 size = new Dimension(scaledWidth, scaledHeight);
472 horizontal.remainderHorizontal = horizontal.scaledWidth - remainderHorizontal;
473 vertical.remainderHorizontal = vertical.scaledWidth - remainderHorizontal;
474 both.remainderHorizontal = both.scaledWidth - remainderHorizontal;
531 int scaledWidth;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
GlowPadView.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 766 int scaledWidth = (int) (scale * width);
768 int x = -scaledWidth / 2;
770 dragBounds = new Rect(x, y, scaledWidth, scaledHeight);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Controller.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java     [all...]

Completed in 707 milliseconds