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

  /external/webkit/Source/WebCore/rendering/
RenderHTMLCanvas.cpp 74 IntSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()->effectiveZoom());
RenderThemeMac.mm 495 if (style->appearance() == MenulistPart && style->effectiveZoom() != 1.0f)
521 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());
691 fontDescription.setComputedSize([font pointSize] * style->effectiveZoom());
692 fontDescription.setSpecifiedSize([font pointSize] * style->effectiveZoom());
    [all...]
RenderMediaControls.cpp 76 float zoomLevel = o->style()->effectiveZoom();
101 float zoomLevel = o->style()->effectiveZoom();
188 float zoomLevel = muteButtonBox->style()->effectiveZoom();
RenderImage.cpp 98 return IntSize(paddingWidth + newImage->image()->width() * style()->effectiveZoom(), paddingHeight + newImage->image()->height() * style()->effectiveZoom());
173 if (m_imageResource->imageSize(style()->effectiveZoom()) != intrinsicSize() || imageSizeChanged) {
175 setIntrinsicSize(m_imageResource->imageSize(style()->effectiveZoom()));
419 float zoom = style()->effectiveZoom();
493 IntSize size = m_imageResource->imageSize(style()->effectiveZoom());
523 IntSize size = m_imageResource->imageSize(style()->effectiveZoom());
RenderReplaced.cpp 73 float oldZoom = hadStyle ? oldStyle->effectiveZoom() : RenderStyle::initialZoom();
74 if (style() && style()->effectiveZoom() != oldZoom)
99 int scaledWidth = static_cast<int>(cDefaultWidth * style()->effectiveZoom());
100 int scaledHeight = static_cast<int>(cDefaultHeight * style()->effectiveZoom());
RenderTheme.cpp 111 borderBox = m_theme->controlBorder(part, style->font(), borderBox, style->effectiveZoom());
140 LengthBox paddingBox = m_theme->controlPadding(part, style->font(), style->paddingBox(), style->effectiveZoom());
151 LengthSize controlSize = m_theme->controlSize(part, style->font(), LengthSize(style->width(), style->height()), style->effectiveZoom());
158 LengthSize minControlSize = m_theme->minimumControlSize(part, style->font(), style->effectiveZoom());
165 FontDescription controlFont = m_theme->controlFont(part, style->font(), style->effectiveZoom());
275 m_theme->paint(part, controlStatesForRenderer(o), const_cast<GraphicsContext*>(paintInfo.context), r, o->style()->effectiveZoom(), o->view()->frameView());
637 return box->height() + box->marginTop() + m_theme->baselinePositionAdjustment(o->style()->appearance()) * o->style()->effectiveZoom();
682 m_theme->inflateControlPaintRect(o->style()->appearance(), controlStatesForRenderer(o), r, o->style()->effectiveZoom());
    [all...]
RenderSlider.cpp 81 m_maxPreferredLogicalWidth = defaultTrackLength * style()->effectiveZoom();
RenderVideo.cpp 84 size.scale(style()->effectiveZoom());
RenderListMarker.cpp     [all...]
RenderMediaControlsChromium.cpp 294 float zoomLevel = object->style()->effectiveZoom();
RenderBoxModelObject.cpp 591 bool shouldPaintBackgroundImage = bgImage && bgImage->canRender(style()->effectiveZoom());
809 IntSize imageIntrinsicSize = image->imageSize(this, style()->effectiveZoom())
    [all...]
RenderBox.cpp 316 if (hasOverflowClip() && oldStyle && style() && oldStyle->effectiveZoom() != style()->effectiveZoom()) {
318 left = (left / oldStyle->effectiveZoom()) * style()->effectiveZoom();
322 top = (top / oldStyle->effectiveZoom()) * style()->effectiveZoom();
919 if (fillLayer->hasImage() && fillLayer->image()->canRender(style()->effectiveZoom())) {
    [all...]
RenderView.cpp 704 height = m_frameView->useFixedLayout() ? ceilf(style()->effectiveZoom() * float(height)) : height;
714 width = m_frameView->useFixedLayout() ? ceilf(style()->effectiveZoom() * float(width)) : width;
InlineFlowBox.cpp     [all...]
RenderObject.cpp 668 if (!img || !img->canRender(renderer->style()->effectiveZoom()))
699 bool shouldPaintBorderImage = borderImage && borderImage->canRender(style()->effectiveZoom());
    [all...]
RenderObject.h     [all...]
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSubSup.cpp 195 float zoomFactor = style()->effectiveZoom();
RenderMathMLUnderOver.cpp 275 float zoomFactor = style()->effectiveZoom();
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 162 float length = stop.m_position->computeLengthFloat(style, rootStyle, style->effectiveZoom());
367 float zoomFactor = style->effectiveZoom();
632 float zoomFactor = style->effectiveZoom();
    [all...]
CSSStyleSelector.cpp     [all...]
CSSComputedStyleDeclaration.cpp 365 return primitiveValueCache->createValue(value / style->effectiveZoom(), CSSPrimitiveValue::CSS_NUMBER);
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 330 if (renderer->style()->effectiveZoom() != 1) {
335 if (curr->style()->effectiveZoom() != prev->style()->effectiveZoom()) {
478 rend->setScrollLeft(static_cast<int>(newLeft * rend->style()->effectiveZoom()));
485 rend->setScrollTop(static_cast<int>(newTop * rend->style()->effectiveZoom()));
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 491 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; }
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 481 checkBoxWidth *= renderStyle->effectiveZoom();
489 radioWidth *= renderStyle->effectiveZoom();
    [all...]

Completed in 340 milliseconds