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

  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ThemeMac.mm 110 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
115 LengthSize result = zoomedSize;
116 if (zoomedSize.width().isIntrinsicOrAuto() && controlSize.width() > 0)
118 if (zoomedSize.height().isIntrinsicOrAuto() && controlSize.height() > 0)
123 static LengthSize sizeFromFont(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
125 return sizeFromNSControlSize(controlSizeForFont(fontDescription), zoomedSize, zoomFactor, sizes);
199 IntRect ThemeMac::inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
203 int widthDelta = zoomedRect.width() - (zoomedSize.width() + margins[LeftMargin] * zoomFactor + margins[RightMargin] * zoomFactor);
204 int heightDelta = zoomedRect.height() - (zoomedSize.height() + margins[TopMargin] * zoomFactor + margins[BottomMargin] * zoomFactor);
260 static LengthSize checkboxSize(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderHTMLCanvas.cpp 61 LayoutSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()->effectiveZoom());
63 if (zoomedSize == intrinsicSize())
66 setIntrinsicSize(zoomedSize);
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontSize.cpp 63 float zoomedSize = specifiedSize * zoomFactor;
66 if (zoomedSize < minSize)
67 zoomedSize = minSize;
73 if (useSmartMinimumForFontSize && zoomedSize < minLogicalSize && (specifiedSize >= minLogicalSize || !isAbsoluteSize))
74 zoomedSize = minLogicalSize;
78 return std::min(maximumAllowedFontSize, zoomedSize);
  /external/chromium_org/third_party/WebKit/Source/platform/
Theme.h 84 virtual LengthSize controlSize(ControlPart, const FontDescription&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; }

Completed in 458 milliseconds