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

12

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControls.cpp 289 float zoomLevel = style->effectiveZoom();
426 float zoomLevel = style->effectiveZoom();
RenderObject.cpp 866 return borderImage && borderImage->canRender(*this, style()->effectiveZoom()) && borderImage->isLoaded();
877 if (!img || !img->canRender(*this, style()->effectiveZoom()))
914 if (!img || !img->canRender(*this, style()->effectiveZoom()))
    [all...]
RenderBoxModelObject.cpp 380 resolvedSize.scale(style()->effectiveZoom());
RenderBox.cpp 194 if (hasOverflowClip() && oldStyle && newStyle && oldStyle->effectiveZoom() != newStyle->effectiveZoom() && layer()) {
196 left = (left / oldStyle->effectiveZoom()) * newStyle->effectiveZoom();
200 top = (top / oldStyle->effectiveZoom()) * newStyle->effectiveZoom();
    [all...]
RenderObject.h     [all...]
RenderLayerScrollableArea.cpp     [all...]
InlineFlowBox.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp 103 float zoomFactor = obj->style()->effectiveZoom();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInlineText.cpp 223 if (style->effectiveZoom() == 1 && (scalingFactor == 1 || !scalingFactor)) {
RenderSVGResourceClipper.cpp 167 animatedLocalTransform.scale(style()->effectiveZoom());
SVGTextLayoutEngine.cpp 446 SVGTextLayoutEngineSpacing spacingLayout(font, style.effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGraphicsElement.cpp 132 float zoom = style->effectiveZoom();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 70 return toAnimatableLength(value)->length(state.style()->effectiveZoom(), range);
79 return BorderImageLength(toAnimatableLength(value)->length(state.style()->effectiveZoom(), ValueRangeNonNegative));
StyleBuilderCustom.cpp 303 float multiplier = state.style()->effectiveZoom();
312 double multiplier = state.style()->effectiveZoom();
715 state.setEffectiveZoom(state.parentStyle() ? state.parentStyle()->effectiveZoom() : RenderStyle::initialZoom());
    [all...]
StyleResolver.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 122 styleImage->setContainerSizeForRenderer(&m_renderer, imageSize, m_renderer.style()->effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 164 ASSERT(renderer->style()->effectiveZoom() == 1);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp 388 m_value.pair = Pair::create(create(lengthSize.width(), style.effectiveZoom()), create(lengthSize.height(), style.effectiveZoom()), Pair::KeepIdenticalValues).leakRef();
    [all...]
CSSComputedStyleDeclaration.cpp 547 return cssValuePool().createValue(value / style.effectiveZoom(), CSSPrimitiveValue::CSS_NUMBER);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 578 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 71 return AnimatableLength::create(length, style.effectiveZoom());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 483 if (renderer.style()->effectiveZoom() != 1) {
488 if (curr->style()->effectiveZoom() != prev->style()->effectiveZoom()) {
667 rend->setScrollLeft(LayoutUnit::fromFloatRound(newLeft * rend->style()->effectiveZoom()));
713 rend->setScrollTop(LayoutUnit::fromFloatRound(newTop * rend->style()->effectiveZoom()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 150 && curLayer->image()->canRender(m_renderBox, m_renderBox.style()->effectiveZoom())
292 bool shouldPaintBackgroundImage = bgImage && bgImage->canRender(obj, obj.style()->effectiveZoom());
    [all...]

Completed in 1355 milliseconds

12