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

  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 72 int widthScale = inputWidth / newWidth;
82 for (int m = 0; m < widthScale; ++m) {
85 + (j * widthScale + m) * inputChannel + k];
88 pixelValue = pixelValue / (heightScale * widthScale);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntSize.h 66 void scale(float widthScale, float heightScale)
68 m_width = static_cast<int>(static_cast<float>(m_width) * widthScale);
LayoutSize.h 79 void scale(float widthScale, float heightScale)
81 m_width *= widthScale;
FloatRect.cpp 265 float widthScale = destRect.width() / srcRect.width();
267 return FloatRect(destRect.x() + (r.x() - srcRect.x()) * widthScale,
269 r.width() * widthScale, r.height() * heightScale);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 158 int widthScale = localDisplayMetrics.widthPixels / pixelSize;
161 mColumnWidth = (localDisplayMetrics.widthPixels / widthScale);
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageDocument.cpp 215 float widthScale = (float)windowSize.width() / imageSize.width();
218 return min(widthScale, heightScale);
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ImageResource.cpp 248 float widthScale = m_image->hasRelativeWidth() ? 1.0f : multiplier;
251 imageSize.scale(widthScale, heightScale);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 269 float widthScale = Math.min(viewWidth / w, 3.0f);
271 float scale = Math.min(widthScale, heightScale);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ImageViewTouchBase.java 274 float widthScale = Math.min(viewWidth / w, 10.0f);
276 float scale = Math.min(widthScale, heightScale);

Completed in 1107 milliseconds