Searched refs:LengthSize (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DLengthSize.h28 struct LengthSize { struct in namespace:WebCore
30 LengthSize() function in struct:WebCore::LengthSize
34 LengthSize(Length width, Length height) function in struct:WebCore::LengthSize
40 bool operator==(const LengthSize& o) const
H A DTheme.h33 #include "LengthSize.h"
87 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; }
90 virtual LengthSize minimumControlSize(ControlPart, const Font&, float /*zoomFactor*/) const { return LengthSize(Length(0, Fixed), Length(0, Fixed)); }
/external/webkit/Source/WebCore/platform/chromium/
H A DThemeChromiumMac.h46 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
47 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
H A DThemeChromiumMac.mm214 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
219 LengthSize result = zoomedSize;
227 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
342 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
427 static LengthSize radioSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
687 LengthSize ThemeChromiumMa
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DThemeMac.h42 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
43 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
H A DThemeMac.mm101 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
106 LengthSize result = zoomedSize;
114 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
224 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
306 static LengthSize radioSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
596 LengthSize ThemeMa
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DBorderData.h30 #include "LengthSize.h"
109 const LengthSize& topLeft() const { return m_topLeft; }
110 const LengthSize& topRight() const { return m_topRight; }
111 const LengthSize& bottomLeft() const { return m_bottomLeft; }
112 const LengthSize& bottomRight() const { return m_bottomRight; }
122 LengthSize m_topLeft;
123 LengthSize m_topRight;
124 LengthSize m_bottomLeft;
125 LengthSize m_bottomRight;
H A DFillLayer.h30 #include "LengthSize.h"
43 FillSize(EFillSizeType t, LengthSize l)
59 LengthSize size;
77 LengthSize sizeLength() const { return m_sizeLength; }
105 void setSizeLength(LengthSize l) { m_sizeLength = l; }
159 static LengthSize initialFillSizeLength(EFillLayerType) { return LengthSize(); }
185 LengthSize m_sizeLength;
H A DStyleRareNonInheritedData.h51 struct LengthSize;
130 LengthSize m_pageSize;
H A DRenderStyle.h42 #include "LengthSize.h"
423 const LengthSize& borderTopLeftRadius() const { return surround->border.topLeft(); }
424 const LengthSize& borderTopRightRadius() const { return surround->border.topRight(); }
425 const LengthSize& borderBottomLeftRadius() const { return surround->border.bottomLeft(); }
426 const LengthSize& borderBottomRightRadius() const { return surround->border.bottomRight(); }
576 LengthSize backgroundSizeLength() const { return m_background->background().sizeLength(); }
590 LengthSize maskSizeLength() const { return rareNonInheritedData->m_mask.sizeLength(); }
769 LengthSize pageSize() const { return rareNonInheritedData->m_pageSize; }
863 void setBackgroundSizeLength(LengthSize l) { SET_VAR(m_background, m_background.m_sizeLength, l) }
867 void setBorderTopLeftRadius(const LengthSize
[all...]
/external/webkit/Source/WebCore/platform/efl/
H A DRenderThemeEfl.h217 LengthSize min;
218 LengthSize max;
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp119 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
121 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
518 m_fillLayerPropertyWrapper = new FillLayerPropertyWrapper<LengthSize>(&FillLayer::sizeLength, &FillLayer::setSizeLength);
670 gPropertyWrappers->append(new PropertyWrapper<const LengthSize&>(CSSPropertyBorderTopLeftRadius, &RenderStyle::borderTopLeftRadius, &RenderStyle::setBorderTopLeftRadius));
671 gPropertyWrappers->append(new PropertyWrapper<const LengthSize&>(CSSPropertyBorderTopRightRadius, &RenderStyle::borderTopRightRadius, &RenderStyle::setBorderTopRightRadius));
672 gPropertyWrappers->append(new PropertyWrapper<const LengthSize&>(CSSPropertyBorderBottomLeftRadius, &RenderStyle::borderBottomLeftRadius, &RenderStyle::setBorderBottomLeftRadius));
673 gPropertyWrappers->append(new PropertyWrapper<const LengthSize&>(CSSPropertyBorderBottomRightRadius, &RenderStyle::borderBottomRightRadius, &RenderStyle::setBorderBottomRightRadius));
/external/webkit/Source/WebCore/rendering/
H A DRenderTheme.cpp151 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());
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp5090 LengthSize size(radiusWidth, radiusHeight);
6279 m_style->setPageSize(LengthSize(width, height));
6501 LengthSize b = FillLayer::initialFillSizeLength(layer->type());
H A DCSSComputedStyleDeclaration.cpp448 static PassRefPtr<CSSValue> getBorderRadiusCornerValue(LengthSize radius, const RenderStyle* style, CSSPrimitiveValueCache* primitiveValueCache)
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1667 LengthSize size = style->pageSize();

Completed in 511 milliseconds