Searched refs:shapeValue (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShapeOutsideInfo.cpp75 static inline CSSBoxType referenceBox(const ShapeValue& shapeValue) argument
77 if (shapeValue.cssBox() == BoxMissing) {
78 if (shapeValue.type() == ShapeValue::Type::Image)
82 return shapeValue.cssBox();
175 const ShapeValue& shapeValue = *style.shapeOutside(); local
177 switch (shapeValue.type()) {
179 ASSERT(shapeValue.shape());
180 m_shape = Shape::createShape(shapeValue.shape(), m_referenceBoxLogicalSize, writingMode, margin);
183 ASSERT(shapeValue.isImageValid());
184 m_shape = createShapeForImage(shapeValue
292 ShapeValue* shapeValue = box.style().shapeOutside(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSComputedStyleDeclaration.cpp1621 static PassRefPtr<CSSValue> shapePropertyValue(const RenderStyle* style, const ShapeValue* shapeValue) argument
1623 if (!shapeValue)
1626 if (shapeValue->type() == ShapeValue::Type::Box)
1627 return cssValuePool().createValue(shapeValue->cssBox());
1629 if (shapeValue->type() == ShapeValue::Type::Image)
1630 return shapeValue->image() ? shapeValue->image()->cssValue() : cssValuePool().createIdentifierValue(CSSValueNone);
1632 ASSERT(shapeValue->type() == ShapeValue::Type::Shape);
1635 list->append(valueForBasicShape(style, shapeValue->shape()));
1636 if (shapeValue
[all...]
H A DCSSParser.cpp5938 RefPtr<CSSPrimitiveValue> shapeValue = parseBasicShape(); local
5939 if (!shapeValue)
5941 list->append(shapeValue.release());
5966 RefPtr<CSSPrimitiveValue> shapeValue; local
8196 RefPtr<CSSPrimitiveValue> shapeValue; local
8208 shapeValue = cssValuePool().createIdentifierValue(a->id);
8233 result->setShape(shapeValue);
8240 if (!shapeValue && !sizeValue) {
8360 RefPtr<CSSPrimitiveValue> shapeValue; local
8375 if (shapeValue)
[all...]
H A DStyleResolver.cpp3578 void StyleResolver::loadPendingShapeImage(ShapeValue* shapeValue) argument
3580 if (!shapeValue)
3583 StyleImage* image = shapeValue->image();
3593 shapeValue->setImage(loadPendingImage(pendingImage, options));
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderElement.cpp124 if (auto shapeValue = m_style->shapeOutside()) {
125 if (auto shapeImage = shapeValue->image())

Completed in 159 milliseconds