Searched defs:shapeValue (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableShapeValue.cpp38 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value); local
40 if (m_shape->type() != ShapeValue::Shape || shapeValue->m_shape->type() != ShapeValue::Shape)
44 const BasicShape* toShape = shapeValue->m_shape->shape();
H A DAnimatableShapeValue.h46 ShapeValue* shapeValue() const { return m_shape.get(); } function in class:WebCore::AnimatableShapeValue
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeInfo.cpp59 const ShapeValue* shapeValue = this->shapeValue(); local
60 ASSERT(shapeValue);
62 switch (shapeValue->type()) {
64 ASSERT(shapeValue->shape());
65 m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding);
68 ASSERT(shapeValue->image());
69 m_shape = Shape::createShape(shapeValue->image(), shapeImageThreshold, m_shapeLogicalSize, writingMode, margin, padding);
H A DShapeOutsideInfo.cpp40 ShapeValue* shapeValue = box->style()->shapeOutside(); local
41 if (!box->isFloating() || !shapeValue)
44 switch (shapeValue->type()) {
46 return shapeValue->shape();
48 return shapeValue->isImageValid() && checkShapeImageOrigin(box->document(), *(shapeValue->image()->cachedImage()));
95 ShapeValue* ShapeOutsideInfo::shapeValue() const function in class:WebCore::ShapeOutsideInfo
H A DShapeInsideInfo.cpp46 ShapeValue* shapeValue = renderer->style()->resolvedShapeInside(); local
47 if (!shapeValue)
50 switch (shapeValue->type()) {
52 return shapeValue->shape() && shapeValue->shape()->type() != BasicShape::BasicShapeInsetRectangleType;
54 return shapeValue->isImageValid() && checkShapeImageOrigin(renderer->document(), *(shapeValue->image()->cachedImage()));
104 ShapeValue* ShapeInsideInfo::shapeValue() const function in class:WebCore::ShapeInsideInfo
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResourceLoader.cpp106 void StyleResourceLoader::loadPendingShapeImage(RenderStyle* renderStyle, ShapeValue* shapeValue) argument
108 if (!shapeValue)
111 StyleImage* image = shapeValue->image();
121 shapeValue->setImage(cssImageValue->cachedImage(m_fetcher, options, PotentiallyCORSEnabled));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.cpp2715 void RenderObject::removeShapeImageClient(ShapeValue* shapeValue) argument
2717 if (!shapeValue)
2719 if (StyleImage* shapeImage = shapeValue->image())

Completed in 105 milliseconds