HomeSort by relevance Sort by last modified time
    Searched refs:effectiveZoom (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.h 33 SVGTextLayoutEngineSpacing(const Font&, float effectiveZoom);
SVGTextLayoutEngineSpacing.cpp 36 SVGTextLayoutEngineSpacing::SVGTextLayoutEngineSpacing(const Font& font, float effectiveZoom)
39 , m_effectiveZoom(effectiveZoom)
RenderSVGImage.cpp 102 LayoutSize intrinsicSize = m_imageResource->intrinsicSize(style()->effectiveZoom());
103 if (intrinsicSize != m_imageResource->imageSize(style()->effectiveZoom())) {
RenderSVGRoot.cpp 140 return resolveLengthAttributeForSVG(svg->intrinsicWidth(), style()->effectiveZoom(), containingBlock()->availableLogicalWidth().toFloat());
162 return resolveLengthAttributeForSVG(svg->intrinsicHeight(), style()->effectiveZoom(), containingBlock()->availableLogicalHeight(IncludeMarginBorderPadding).toFloat());
321 float scale = style()->effectiveZoom();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderHTMLCanvas.cpp 61 LayoutSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()->effectiveZoom());
RenderImageResourceStyleImage.cpp 75 m_styleImage->setContainerSizeForRenderer(m_renderer, size, m_renderer->style()->effectiveZoom());
RenderThemeChromiumMac.mm 511 if (style->appearance() == MenulistPart && style->effectiveZoom() != 1.0f)
514 if (style->appearance() == SearchFieldPart && style->effectiveZoom() != 1)
540 float zoomLevel = o->style()->effectiveZoom();
657 if (style->effectiveZoom() != 1.0f) {
659 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
666 if (style->effectiveZoom() != 1.0f) {
668 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
692 fontDescription.setComputedSize([font pointSize] * style->effectiveZoom());
    [all...]
RenderImageResource.cpp 96 m_cachedImage->setContainerSizeForRenderer(m_renderer, imageContainerSize, m_renderer->style()->effectiveZoom());
RenderTheme.cpp 128 borderBox = m_platformTheme->controlBorder(part, style->font().fontDescription(), borderBox, style->effectiveZoom());
157 LengthBox paddingBox = m_platformTheme->controlPadding(part, style->font().fontDescription(), style->paddingBox(), style->effectiveZoom());
168 LengthSize controlSize = m_platformTheme->controlSize(part, style->font().fontDescription(), LengthSize(style->width(), style->height()), style->effectiveZoom());
175 LengthSize minControlSize = m_platformTheme->minimumControlSize(part, style->font().fontDescription(), style->effectiveZoom());
182 FontDescription controlFont = m_platformTheme->controlFont(part, style->font().fontDescription(), style->effectiveZoom());
246 m_platformTheme->paint(part, controlStatesForRenderer(o), const_cast<GraphicsContext*>(paintInfo.context), r, o->style()->effectiveZoom(), o->view()->frameView());
534 return box->height() + box->marginTop() + m_platformTheme->baselinePositionAdjustment(o->style()->appearance()) * o->style()->effectiveZoom();
596 m_platformTheme->inflateControlPaintRect(o->style()->appearance(), controlStatesForRenderer(o), r, o->style()->effectiveZoom());
849 float zoomFactor = o->style()->effectiveZoom();
    [all...]
RenderSlider.cpp 58 maxLogicalWidth = defaultTrackLength * style()->effectiveZoom();
RenderImage.cpp 113 return IntSize(paddingWidth + imageSize.width() * style()->effectiveZoom(), paddingHeight + imageSize.height() * style()->effectiveZoom());
197 LayoutSize newIntrinsicSize = m_imageResource->intrinsicSize(style()->effectiveZoom());
237 const LayoutSize imageSizeWithoutZoom = m_imageResource->imageSize(1 / style()->effectiveZoom());
365 float scaleFactor = 1 / style()->effectiveZoom();
RenderThemeChromiumDefault.cpp 212 float zoomLevel = useMockTheme() ? 1 : style->effectiveZoom();
252 float zoomLevel = o->style()->effectiveZoom();
275 float zoomLevel = style->effectiveZoom();
298 float zoomLevel = style->effectiveZoom();
427 float zoomLevel = useMockTheme() ? 1 : o->style()->effectiveZoom();
452 float zoomLevel = useMockTheme() ? 1 : o->style()->effectiveZoom();
519 return style->effectiveZoom() != 1;
RenderSliderContainer.cpp 80 float zoomFactor = style()->effectiveZoom();
RenderReplaced.cpp 73 float oldZoom = hadStyle ? oldStyle->effectiveZoom() : RenderStyle::initialZoom();
74 if (style() && style()->effectiveZoom() != oldZoom)
102 int scaledWidth = static_cast<int>(defaultWidth * style()->effectiveZoom());
103 int scaledHeight = static_cast<int>(defaultHeight * style()->effectiveZoom());
251 intrinsicSize.scale(style()->effectiveZoom());
RenderVideo.cpp 70 size.scale(style()->effectiveZoom());
RenderListMarker.cpp     [all...]
FilterEffectRenderer.cpp 92 float invZoom = style ? 1.0f / style->effectiveZoom() : 1.0f;
315 float zoom = style ? style->effectiveZoom() : 1.0f;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.h 49 void setInitial(float effectiveZoom);
54 void fromSystemFont(CSSValueID, float effectiveZoom);
106 float getComputedSizeFromSpecifiedSize(FontDescription&, float effectiveZoom, float specifiedSize);
FontBuilder.cpp 93 void FontBuilder::setInitial(float effectiveZoom)
118 void FontBuilder::fromSystemFont(CSSValueID valueId, float effectiveZoom)
136 fontDescription.setComputedSize(getComputedSizeFromSpecifiedSize(fontDescription, effectiveZoom, fontDescription.specifiedSize()));
334 float FontBuilder::getComputedSizeFromSpecifiedSize(FontDescription& fontDescription, float effectiveZoom, float specifiedSize)
336 float zoomFactor = effectiveZoom;
443 float computedSize = getComputedSizeFromSpecifiedSize(fontDescription, style->effectiveZoom(), fontDescription.specifiedSize());
StyleBuilderConverter.h 113 if (state.style()->effectiveZoom() < 1.0f && result < 1.0) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.cpp 76 return m_style ? m_style->effectiveZoom() : 1;
CSSValuePool.cpp 125 return CSSPrimitiveValue::create(value, style.effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlineFlowBoxPainter.cpp 99 bool hasFillImage = img && img->canRender(m_inlineFlowBox.renderer(), m_inlineFlowBox.renderer().style()->effectiveZoom());
218 bool hasBorderImage = borderImageSource && borderImageSource->canRender(m_inlineFlowBox.renderer(), styleToUse->effectiveZoom());
289 bool hasBoxImage = maskBoxImage && maskBoxImage->canRender(m_inlineFlowBox.renderer(), m_inlineFlowBox.renderer().style()->effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.cpp 500 zoomFactor = 1 / renderer->style()->effectiveZoom();
636 return FloatSize(contentBoxRect.width() / renderer()->style()->effectiveZoom(), contentBoxRect.height() / renderer()->style()->effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBodyElement.cpp 256 render->setScrollLeft(static_cast<int>(scrollLeft * render->style()->effectiveZoom()));
303 render->setScrollTop(static_cast<int>(scrollTop * render->style()->effectiveZoom()));

Completed in 442 milliseconds

1 2