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

  /packages/apps/Phone/src/com/android/phone/
BitmapUtils.java 72 final int scaledSize = 128;
74 scaledSize, scaledSize,
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 119 float scaledSize = scaleFactor * fontDescription.computedSize();
120 winFont.lfHeight = -lroundf(scaledSize);
122 return new SimpleFontData(FontPlatformData(hfont, scaledSize), isCustomFont(), false);
SimpleFontDataLinux.cpp 160 const float scaledSize = lroundf(fontDescription.computedSize() * scaleFactor);
161 return new SimpleFontData(FontPlatformData(m_platformData, scaledSize), isCustomFont(), false);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
ImageOpenVG.cpp 115 static void adjustSourceRectForDownSampling(FloatRect& srcRect, const IntSize& origSize, const IntSize& scaledSize)
118 if (origSize.width() == scaledSize.width())
122 double rate = static_cast<double>(scaledSize.width()) / origSize.width();
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 113 float scaledSize = scaleFactor * m_platformData.size();
116 scaledFont.setSize(scaledSize);
122 winfont.lfHeight = -lroundf(scaledSize * (m_platformData.useGDI() ? 1 : 32));
124 return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()), isCustomFont(), false);
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.cpp 269 if (buffer.originalFrameRect().contains(IntRect(IntPoint(), scaledSize())))
344 if (!buffer->setSize(scaledSize().width(), scaledSize().height()))
371 const IntSize& bufferSize = scaledSize();
372 if (!frameIndex || prevRect.contains(IntRect(IntPoint(), scaledSize()))) {
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 340 if (!buffer.setSize(scaledSize().width(), scaledSize().height())) {
398 int width = scaledSize().width();
402 if (destY < 0 || destY >= scaledSize().height())
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageQt.cpp 134 QSizeF scaledSize(float(pixmap.width()) * transform.m11(), float(pixmap.height()) * transform.m22());
135 QPixmap scaledPixmap(scaledSize.toSize());
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 464 if (!buffer.setSize(scaledSize().width(), scaledSize().height()))
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 265 IntSize scaledSize() const
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.h 145 IntSize calculateFillTileSize(const FillLayer*, IntSize scaledSize) const;
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java 493 float scaledSize = scale * mBaselineIconSize;
498 float transY = mAvailableSpaceInPreview - (offset + scaledSize + scaleOffsetCorrection);

Completed in 665 milliseconds