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

  /external/webkit/WebCore/platform/
LengthSize.h 28 struct LengthSize {
30 LengthSize()
34 LengthSize(Length width, Length height)
40 bool operator==(const LengthSize& o) const
Theme.h 33 #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/WebCore/platform/chromium/
ThemeChromiumMac.h 46 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
47 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
ThemeChromiumMac.mm 213 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
218 LengthSize result = zoomedSize;
316 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
400 static LengthSize radioSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
601 LengthSize ThemeChromiumMac::controlSize(ControlPart part, const Font& font, const LengthSize& zoomedSize, float zoomFactor) const
610 return sizeFromFont(font, LengthSize(zoomedSize.width(), Length()), zoomFactor, buttonSizes())
    [all...]
  /external/webkit/WebCore/platform/mac/
ThemeMac.h 42 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
43 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
ThemeMac.mm 67 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
72 LengthSize result = zoomedSize;
166 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
247 static LengthSize radioSize(const Font& font, const LengthSize& zoomedSize, float zoomFactor)
466 LengthSize ThemeMac::controlSize(ControlPart part, const Font& font, const LengthSize& zoomedSize, float zoomFactor) const
475 return sizeFromFont(font, LengthSize(zoomedSize.width(), Length()), zoomFactor, buttonSizes())
    [all...]
  /external/webkit/WebCore/rendering/style/
FillLayer.h 30 #include "LengthSize.h"
43 FillSize(EFillSizeType t, LengthSize l)
59 LengthSize size;
76 LengthSize sizeLength() const { return m_sizeLength; }
103 void setSizeLength(LengthSize l) { m_sizeLength = l; }
157 static LengthSize initialFillSizeLength(EFillLayerType) { return LengthSize(); }
180 LengthSize m_sizeLength;
RenderStyle.h 52 #include "LengthSize.h"
542 LengthSize backgroundSizeLength() const { return background->m_background.m_sizeLength; }
555 LengthSize maskSize() const { return rareNonInheritedData->m_mask.m_sizeLength; }
    [all...]
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 113 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
115 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
480 m_fillLayerPropertyWrapper = new FillLayerPropertyWrapper<LengthSize>(&FillLayer::sizeLength, &FillLayer::setSizeLength);
    [all...]
  /external/webkit/WebCore/rendering/
RenderTheme.cpp 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());
    [all...]
  /external/webkit/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 1369 milliseconds