/external/chromium_org/third_party/WebKit/Source/platform/ |
LengthSize.h | 28 class LengthSize { 30 LengthSize() 34 LengthSize(const Length& width, const Length& height) 40 bool operator==(const LengthSize& o) const
|
LengthFunctions.h | 34 class LengthSize; 41 PLATFORM_EXPORT FloatSize floatSizeForLengthSize(const LengthSize&, const FloatSize& boxSize);
|
Theme.h | 30 #include "platform/LengthSize.h" 84 virtual LengthSize controlSize(ControlPart, const FontDescription&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; } 87 virtual LengthSize minimumControlSize(ControlPart, const FontDescription&, float /*zoomFactor*/) const { return LengthSize(Length(0, Fixed), Length(0, Fixed)); }
|
LengthFunctions.cpp | 28 #include "platform/LengthSize.h" 127 FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatSize& boxSize) 129 return FloatSize(floatValueForLength(lengthSize.width(), boxSize.width()), floatValueForLength(lengthSize.height(), boxSize.height()));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
BorderData.h | 30 #include "platform/LengthSize.h" 122 const LengthSize& topLeft() const { return m_topLeft; } 123 const LengthSize& topRight() const { return m_topRight; } 124 const LengthSize& bottomLeft() const { return m_bottomLeft; } 125 const LengthSize& bottomRight() const { return m_bottomRight; } 135 LengthSize m_topLeft; 136 LengthSize m_topRight; 137 LengthSize m_bottomLeft; 138 LengthSize m_bottomRight;
|
BasicShapes.h | 35 #include "platform/LengthSize.h" 249 const LengthSize& topLeftRadius() const { return m_topLeftRadius; } 250 const LengthSize& topRightRadius() const { return m_topRightRadius; } 251 const LengthSize& bottomRightRadius() const { return m_bottomRightRadius; } 252 const LengthSize& bottomLeftRadius() const { return m_bottomLeftRadius; } 259 void setTopLeftRadius(const LengthSize& radius) { m_topLeftRadius = radius; } 260 void setTopRightRadius(const LengthSize& radius) { m_topRightRadius = radius; } 261 void setBottomRightRadius(const LengthSize& radius) { m_bottomRightRadius = radius; } 262 void setBottomLeftRadius(const LengthSize& radius) { m_bottomLeftRadius = radius; } 277 LengthSize m_topLeftRadius [all...] |
FillLayer.h | 31 #include "platform/LengthSize.h" 43 FillSize(EFillSizeType t, const LengthSize& l) 59 LengthSize size; 80 const LengthSize& sizeLength() const { return m_sizeLength; } 122 void setSizeLength(const LengthSize& l) { m_sizeLength = l; } 191 static LengthSize initialFillSizeLength(EFillLayerType) { return LengthSize(); } 212 LengthSize m_sizeLength;
|
StyleRareNonInheritedData.h | 49 class LengthSize; 130 LengthSize m_pageSize;
|
RenderStyle.h | 62 #include "platform/LengthSize.h" 493 const LengthSize& borderTopLeftRadius() const { return surround->border.topLeft(); } 494 const LengthSize& borderTopRightRadius() const { return surround->border.topRight(); } 495 const LengthSize& borderBottomLeftRadius() const { return surround->border.bottomLeft(); } 496 const LengthSize& borderBottomRightRadius() const { return surround->border.bottomRight(); } 652 const LengthSize& backgroundSizeLength() const { return m_background->background().sizeLength(); } 665 const LengthSize& maskSizeLength() const { return rareNonInheritedData->m_mask.sizeLength(); } [all...] |
BasicShapes.cpp | 219 static FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatRect& boundingBox) 221 return FloatSize(floatValueForLength(lengthSize.width(), boundingBox.width()), 222 floatValueForLength(lengthSize.height(), boundingBox.height()));
|
FillLayer.cpp | 37 LengthSize m_sizeLength;
|
/external/clang/test/SemaCXX/ |
invalid-member-expr.cpp | 51 struct LengthSize { 60 LengthSize size;
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
ThemeMac.h | 46 virtual LengthSize controlSize(ControlPart, const FontDescription&, const LengthSize&, float zoomFactor) const; 47 virtual LengthSize minimumControlSize(ControlPart, const FontDescription&, float zoomFactor) const;
|
ThemeMac.mm | 110 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes) 115 LengthSize result = zoomedSize; 123 static LengthSize sizeFromFont(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes) 260 static LengthSize checkboxSize(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor) 344 static LengthSize radioSize(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor) 606 LengthSize ThemeMac::controlSize(ControlPart part, const FontDescription& fontDescription, const LengthSize& (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSPrimitiveValue.h | 41 class LengthSize; 240 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const LengthSize& value, const RenderStyle& style) 355 CSSPrimitiveValue(const LengthSize&, const RenderStyle&); 377 void init(const LengthSize&, const RenderStyle&);
|
BasicShapeFunctions.cpp | 138 static LengthSize convertToLengthSize(const StyleResolverState& state, CSSPrimitiveValue* value) 141 return LengthSize(Length(0, Fixed), Length(0, Fixed)); 144 return LengthSize(convertToLength(state, pair->first()), convertToLength(state, pair->second()));
|
CSSPrimitiveValue.cpp | 298 CSSPrimitiveValue::CSSPrimitiveValue(const LengthSize& lengthSize, const RenderStyle& style) 301 init(lengthSize, style); 384 void CSSPrimitiveValue::init(const LengthSize& lengthSize, const RenderStyle& style) 388 m_value.pair = Pair::create(create(lengthSize.width(), style.effectiveZoom()), create(lengthSize.height(), style.effectiveZoom()), Pair::KeepIdenticalValues).leakRef(); [all...] |
CSSComputedStyleDeclaration.cpp | 645 static PassRefPtrWillBeRawPtr<CSSValueList> valuesForBorderRadiusCorner(LengthSize radius, const RenderStyle& style) 659 static PassRefPtrWillBeRawPtr<CSSValue> valueForBorderRadiusCorner(LengthSize radius, const RenderStyle& style) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleBuilderConverter.h | 37 #include "platform/LengthSize.h" 68 static LengthSize convertRadius(StyleResolverState&, CSSValue*);
|
AnimatedStyleBuilder.cpp | 121 LengthSize animatableValueToLengthSize(const AnimatableValue* value, const StyleResolverState& state, ValueRange range) 124 return LengthSize(
|
StyleBuilderConverter.cpp | 521 LengthSize StyleBuilderConverter::convertRadius(StyleResolverState& state, CSSValue* value) 531 return LengthSize(Length(0, Fixed), Length(0, Fixed)); 532 return LengthSize(radiusWidth, radiusHeight);
|
CSSToStyleMap.cpp | 196 LengthSize b = FillLayer::initialFillSizeLength(layer->type());
|
StyleBuilderCustom.cpp | 503 state.style()->setPageSize(LengthSize(width, height)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTheme.cpp | 168 LengthSize controlSize = m_platformTheme->controlSize(part, style->font().fontDescription(), LengthSize(style->width(), style->height()), style->effectiveZoom()); 175 LengthSize minControlSize = m_platformTheme->minimumControlSize(part, style->font().fontDescription(), style->effectiveZoom()); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSAnimatableValueFactory.cpp | 148 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLengthSize(const LengthSize& lengthSize, const RenderStyle& style) 151 createFromLength(lengthSize.width(), style), 152 createFromLength(lengthSize.height(), style));
|