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

  /external/webkit/WebCore/rendering/
RenderHTMLCanvas.cpp 69 IntSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()->effectiveZoom());
RenderThemeMac.mm 460 if (style->appearance() == MenulistPart && style->effectiveZoom() != 1.0f)
485 float zoomLevel = o->style()->effectiveZoom();
621 if (style->effectiveZoom() != 1.0f) {
623 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
630 if (style->effectiveZoom() != 1.0f) {
632 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
655 fontDescription.setComputedSize([font pointSize] * style->effectiveZoom());
656 fontDescription.setSpecifiedSize([font pointSize] * style->effectiveZoom());
    [all...]
RenderThemeChromiumMac.mm 512 if (style->appearance() == MenulistPart && style->effectiveZoom() != 1.0f)
537 float zoomLevel = o->style()->effectiveZoom();
692 if (style->effectiveZoom() != 1.0f) {
694 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
701 if (style->effectiveZoom() != 1.0f) {
703 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
726 fontDescription.setComputedSize([font pointSize] * style->effectiveZoom());
727 fontDescription.setSpecifiedSize([font pointSize] * style->effectiveZoom());
    [all...]
RenderReplaced.cpp 63 float oldZoom = hadStyle ? oldStyle->effectiveZoom() : RenderStyle::initialZoom();
64 if (style() && style()->effectiveZoom() != oldZoom)
89 int scaledWidth = static_cast<int>(cDefaultWidth * style()->effectiveZoom());
90 int scaledHeight = static_cast<int>(cDefaultHeight * style()->effectiveZoom());
RenderImage.cpp 242 imageWidth += newImage->image()->width() * style()->effectiveZoom();
243 imageHeight += newImage->image()->height() * style()->effectiveZoom();
281 if (imageSize(style()->effectiveZoom()) != intrinsicSize() || imageSizeChanged) {
283 setIntrinsicSize(imageSize(style()->effectiveZoom()));
522 float zoom = style()->effectiveZoom();
596 width = imageSize(style()->effectiveZoom()).width();
625 height = imageSize(style()->effectiveZoom()).height();
RenderListMarker.cpp     [all...]
RenderTheme.cpp 99 borderBox = m_theme->controlBorder(part, style->font(), borderBox, style->effectiveZoom());
128 LengthBox paddingBox = m_theme->controlPadding(part, style->font(), style->paddingBox(), style->effectiveZoom());
139 LengthSize controlSize = m_theme->controlSize(part, style->font(), LengthSize(style->width(), style->height()), style->effectiveZoom());
146 LengthSize minControlSize = m_theme->minimumControlSize(part, style->font(), style->effectiveZoom());
153 FontDescription controlFont = m_theme->controlFont(part, style->font(), style->effectiveZoom());
247 m_theme->paint(part, controlStatesForRenderer(o), const_cast<GraphicsContext*>(paintInfo.context), r, o->style()->effectiveZoom(), o->view()->frameView());
583 return box->height() + box->marginTop() + m_theme->baselinePositionAdjustment(o->style()->appearance()) * o->style()->effectiveZoom();
622 m_theme->inflateControlPaintRect(o->style()->appearance(), controlStatesForRenderer(o), r, o->style()->effectiveZoom());
    [all...]
RenderVideo.cpp 217 width = calcAspectRatioWidth() * style()->effectiveZoom();
231 height = calcAspectRatioHeight() * style()->effectiveZoom();
RenderMediaControls.cpp 80 float zoomLevel = o->style()->effectiveZoom();
RenderBoxModelObject.cpp 528 bool shouldPaintBackgroundImage = bg && bg->canRender(style()->effectiveZoom());
651 w = image->imageSize(this, style()->effectiveZoom()).width() * h / image->imageSize(this, style()->effectiveZoom()).height();
653 h = image->imageSize(this, style()->effectiveZoom()).height() * w / image->imageSize(this, style()->effectiveZoom()).width();
657 w = image->imageSize(this, style()->effectiveZoom()).width();
658 h = image->imageSize(this, style()->effectiveZoom()).height();
675 return image->imageSize(this, style()->effectiveZoom());
    [all...]
RenderBox.cpp 173 if (hasOverflowClip() && oldStyle && style() && oldStyle->effectiveZoom() != style()->effectiveZoom()) {
176 left = (left / oldStyle->effectiveZoom()) * style()->effectiveZoom();
181 top = (top / oldStyle->effectiveZoom()) * style()->effectiveZoom();
709 if (fillLayer->hasImage() && fillLayer->image()->canRender(style()->effectiveZoom())) {
789 if (curLayer->image() && image == curLayer->image()->data() && curLayer->image()->canRender(style()->effectiveZoom())) {
    [all...]
RenderView.cpp 639 height = m_frameView->useFixedLayout() ? ceilf(style()->effectiveZoom() * float(height)) : height;
649 width = m_frameView->useFixedLayout() ? ceilf(style()->effectiveZoom() * float(width)) : width;
RenderMediaControlsChromium.cpp 297 float zoomLevel = object->style()->effectiveZoom();
InlineFlowBox.cpp 704 bool hasFillImage = img && img->canRender(renderer()->style()->effectiveZoom());
    [all...]
RenderSlider.cpp 243 m_maxPrefWidth = defaultTrackLength * style()->effectiveZoom();
RenderObject.h     [all...]
RenderMedia.cpp 614 return width >= minWidthToDisplayTimeDisplays * style()->effectiveZoom();
RenderObject.cpp 674 if (!img || !img->canRender(renderer->style()->effectiveZoom()))
705 bool shouldPaintBorderImage = borderImage && borderImage->canRender(style()->effectiveZoom());
    [all...]
RenderLayer.cpp     [all...]
  /external/webkit/WebCore/css/
CSSGradientValue.cpp 76 float zoomFactor = renderer->style()->effectiveZoom();
SVGCSSStyleSelector.cpp 537 float zoomFactor = m_style->effectiveZoom();
CSSStyleSelector.cpp     [all...]
  /external/webkit/WebCore/dom/
Element.cpp 251 if (renderer->style()->effectiveZoom() != 1.0f) {
256 if (curr->style()->effectiveZoom() != prev->style()->effectiveZoom()) {
399 rend->setScrollLeft(static_cast<int>(newLeft * rend->style()->effectiveZoom()));
406 rend->setScrollTop(static_cast<int>(newTop * rend->style()->effectiveZoom()));
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.h 457 float effectiveZoom() const { return inherited->m_effectiveZoom; }
    [all...]

Completed in 281 milliseconds