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

12

/macosx-10.10/WebCore-7600.1.25/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
51 LengthSize blend(const LengthSize& from, double progress) const
53 return LengthSize(m_width.blend(from.width(), progress), m_height.blend(from.height(), progress));
H A DTheme.h34 #include "LengthSize.h"
88 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; }
91 virtual LengthSize minimumControlSize(ControlPart, const Font&, float /*zoomFactor*/) const { return LengthSize(Length(0, Fixed), Length(0, Fixed)); }
/macosx-10.10/WebCore-7600.1.25/css/
H A DLengthFunctions.h33 struct LengthSize;
41 FloatSize floatSizeForLengthSize(const LengthSize&, const FloatSize&);
H A DLengthFunctions.cpp29 #include "LengthSize.h"
149 FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatSize& boxSize)
H A DBasicShapeFunctions.cpp135 static LengthSize convertToLengthSize(const CSSToLengthConversionData& conversionData, CSSPrimitiveValue* value)
138 return LengthSize(Length(0, Fixed), Length(0, Fixed));
141 return LengthSize(convertToLength(conversionData, pair->first()), convertToLength(conversionData, pair->second()));
H A DCSSPrimitiveValue.h47 struct LengthSize;
217 static PassRef<CSSPrimitiveValue> create(const LengthSize& value, const RenderStyle* style) { return adoptRef(*new CSSPrimitiveValue(value, style)); }
347 CSSPrimitiveValue(const LengthSize&, const RenderStyle*);
369 void init(const LengthSize&, const RenderStyle*);
H A DCSSValuePool.h57 PassRef<CSSPrimitiveValue> createValue(const LengthSize& value, const RenderStyle* style) { return CSSPrimitiveValue::create(value, style); }
H A DCSSPrimitiveValue.cpp318 CSSPrimitiveValue::CSSPrimitiveValue(const LengthSize& lengthSize, const RenderStyle* style)
373 void CSSPrimitiveValue::init(const LengthSize& lengthSize, const RenderStyle* style)
H A DDeprecatedStyleBuilder.cpp429 template <const LengthSize& (RenderStyle::*getterFunction)() const, void (RenderStyle::*setterFunction)(LengthSize), LengthSize (*initialFunction)()>
432 static void setValue(RenderStyle* style, LengthSize value) { (style->*setterFunction)(WTF::move(value)); }
468 setValue(styleResolver->style(), LengthSize(radiusWidth, radiusHeight));
472 PropertyHandler handler = ApplyPropertyDefaultBase<const LengthSize&, getterFunction, LengthSize, setterFunction, LengthSize, initialFunction>::createHandler();
1697 styleResolver->style()->setPageSize(LengthSize(width, height));
H A DCSSToStyleMap.cpp205 LengthSize b = FillLayer::initialFillSizeLength(layer->type());
H A DCSSComputedStyleDeclaration.cpp705 static PassRef<CSSValueList> getBorderRadiusCornerValues(const LengthSize& radius, const RenderStyle* style)
719 static PassRef<CSSValue> getBorderRadiusCornerValue(const LengthSize& radius, const RenderStyle* style)
/macosx-10.10/WebCore-7600.1.25/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 DBasicShapes.h34 #include "LengthSize.h"
235 const LengthSize& topLeftRadius() const { return m_topLeftRadius; }
236 const LengthSize& topRightRadius() const { return m_topRightRadius; }
237 const LengthSize& bottomRightRadius() const { return m_bottomRightRadius; }
238 const LengthSize& bottomLeftRadius() const { return m_bottomLeftRadius; }
245 void setTopLeftRadius(LengthSize radius) { m_topLeftRadius = WTF::move(radius); }
246 void setTopRightRadius(LengthSize radius) { m_topRightRadius = WTF::move(radius); }
247 void setBottomRightRadius(LengthSize radius) { m_bottomRightRadius = WTF::move(radius); }
248 void setBottomLeftRadius(LengthSize radius) { m_bottomLeftRadius = WTF::move(radius); }
262 LengthSize m_topLeftRadiu
[all...]
H A DFillLayer.h29 #include "LengthSize.h"
44 FillSize(EFillSizeType type, const LengthSize& size)
51 LengthSize size;
82 const LengthSize& sizeLength() const { return m_sizeLength; }
117 void setSizeLength(LengthSize l) { m_sizeLength = l; }
164 static LengthSize initialFillSizeLength(EFillLayerType) { return LengthSize(); }
183 LengthSize m_sizeLength;
H A DStyleRareNonInheritedData.h61 struct LengthSize;
141 LengthSize m_pageSize;
H A DRenderStyle.h44 #include "LengthSize.h"
641 const LengthSize& borderTopLeftRadius() const { return surround->border.topLeft(); }
642 const LengthSize& borderTopRightRadius() const { return surround->border.topRight(); }
643 const LengthSize& borderBottomLeftRadius() const { return surround->border.bottomLeft(); }
644 const LengthSize& borderBottomRightRadius() const { return surround->border.bottomRight(); }
802 const LengthSize& backgroundSizeLength() const { return m_background->background().sizeLength(); }
815 const LengthSize& maskSizeLength() const { return rareNonInheritedData->m_mask.sizeLength(); }
1072 const LengthSize& pageSize() const { return rareNonInheritedData->m_pageSize; }
1218 void setBackgroundSizeLength(LengthSize size) { SET_VAR(m_background, m_background.m_sizeLength, WTF::move(size)); }
1226 void setBorderTopLeftRadius(LengthSize siz
[all...]
H A DBasicShapes.cpp223 static FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatRect& boundingBox)
H A DFillLayer.cpp35 LengthSize sizeLength;
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DThemeMac.h46 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
47 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
H A DThemeMac.mm162 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const std::array<IntSize, 3>& sizes)
167 LengthSize result = zoomedSize;
175 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const std::array<IntSize, 3>& sizes)
298 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
328 static LengthSize radioSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
699 LengthSize ThemeMa
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DRenderThemeEfl.h218 LengthSize min;
219 LengthSize max;
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DCSSPropertyAnimation.cpp86 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
88 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
912 m_fillLayerPropertyWrapper = new FillLayerPropertyWrapper<LengthSize>(&FillLayer::sizeLength, &FillLayer::setSizeLength);
1213 new LengthPropertyWrapper<LengthSize>(CSSPropertyBorderTopLeftRadius, &RenderStyle::borderTopLeftRadius, &RenderStyle::setBorderTopLeftRadius),
1214 new LengthPropertyWrapper<LengthSize>(CSSPropertyBorderTopRightRadius, &RenderStyle::borderTopRightRadius, &RenderStyle::setBorderTopRightRadius),
1215 new LengthPropertyWrapper<LengthSize>(CSSPropertyBorderBottomLeftRadius, &RenderStyle::borderBottomLeftRadius, &RenderStyle::setBorderBottomLeftRadius),
1216 new LengthPropertyWrapper<LengthSize>(CSSPropertyBorderBottomRightRadius, &RenderStyle::borderBottomRightRadius, &RenderStyle::setBorderBottomRightRadius),
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderTheme.cpp161 LengthSize controlSize = m_theme->controlSize(part, style.font(), LengthSize(style.width(), style.height()), style.effectiveZoom());
168 LengthSize minControlSize = m_theme->minimumControlSize(part, style.font(), style.effectiveZoom());
H A DRenderThemeIOS.mm534 style.setBorderRadius(LengthSize(radiusWidth, radiusHeight));
722 style.setBorderRadius(LengthSize(radiusWidth, radiusHeight));
810 style.setBorderRadius(LengthSize(length, length));
H A DRenderElement.cpp1134 LengthSize size = layer->sizeLength();

Completed in 392 milliseconds

12