Home
last modified time | relevance | path

Searched refs:zoomedSize (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/mac/
DThemeMac.mm119 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, …
124 LengthSize result = zoomedSize;
125 if (zoomedSize.width().isIntrinsicOrAuto() && controlSize.width() > 0)
127 if (zoomedSize.height().isIntrinsicOrAuto() && controlSize.height() > 0)
132 static LengthSize sizeFromFont(const FontDescription& fontDescription, const LengthSize& zoomedSize
134 … return sizeFromNSControlSize(controlSizeForFont(fontDescription), zoomedSize, zoomFactor, sizes);
207 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins…
211 …int widthDelta = zoomedRect.width() - (zoomedSize.width() + margins[leftMargin] * zoomFactor + mar…
212 …int heightDelta = zoomedRect.height() - (zoomedSize.height() + margins[topMargin] * zoomFactor + m…
244 static LengthSize checkboxSize(const FontDescription& fontDescription, const LengthSize& zoomedSize
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/
DFontSize.cpp63 float zoomedSize = specifiedSize * zoomFactor; in getComputedSizeFromSpecifiedSize() local
66 if (zoomedSize < minSize) in getComputedSizeFromSpecifiedSize()
67 zoomedSize = minSize; in getComputedSizeFromSpecifiedSize()
73 …if (useSmartMinimumForFontSize && zoomedSize < minLogicalSize && (specifiedSize >= minLogicalSize … in getComputedSizeFromSpecifiedSize()
74 zoomedSize = minLogicalSize; in getComputedSizeFromSpecifiedSize()
78 return std::min(maximumAllowedFontSize, zoomedSize); in getComputedSizeFromSpecifiedSize()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderHTMLCanvas.cpp83 …LayoutSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()… in canvasSizeChanged() local
85 if (zoomedSize == intrinsicSize()) in canvasSizeChanged()
88 setIntrinsicSize(zoomedSize); in canvasSizeChanged()
/external/chromium_org/third_party/WebKit/Source/platform/
DTheme.h84 …art, const FontDescription&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zo… in controlSize() argument