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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShapeValue.h 41 class ShapeValue : public RefCounted<ShapeValue> {
44 // The Auto value is defined by a null ShapeValue*
51 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape)
53 return adoptRef(new ShapeValue(shape));
56 static PassRefPtr<ShapeValue> createOutsideValue()
58 return adoptRef(new ShapeValue(Outside));
61 static PassRefPtr<ShapeValue> createLayoutBoxValue(LayoutBox layoutBox)
63 return adoptRef(new ShapeValue(layoutBox));
66 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image
    [all...]
StyleRareNonInheritedData.h 37 #include "core/rendering/style/ShapeValue.h"
130 RefPtr<ShapeValue> m_shapeInside;
131 RefPtr<ShapeValue> m_shapeOutside;
RenderStyle.h 41 #include "core/rendering/style/ShapeValue.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableShapeValue.h 35 #include "core/rendering/style/ShapeValue.h"
42 static PassRefPtr<AnimatableShapeValue> create(ShapeValue* shape)
46 ShapeValue* shapeValue() const { return m_shape.get(); }
52 AnimatableShapeValue(ShapeValue* shape)
60 RefPtr<ShapeValue> m_shape;
AnimatableShapeValue.cpp 38 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value);
40 if (m_shape->type() != ShapeValue::Shape || shapeValue->m_shape->type() != ShapeValue::Shape)
44 const BasicShape* toShape = shapeValue->m_shape->shape();
49 return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction)).get());
54 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get();
AnimatableValueTestHelperTest.cpp 130 PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get()).get())),
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 40 ShapeValue* shapeValue = box->style()->shapeOutside();
41 if (!box->isFloating() || !shapeValue)
44 switch (shapeValue->type()) {
45 case ShapeValue::Shape:
46 return shapeValue->shape();
47 case ShapeValue::Image:
48 return shapeValue->isImageValid() && checkShapeImageOrigin(box->document(), *(shapeValue->image()->cachedImage()));
49 case ShapeValue::Box
    [all...]
ShapeInsideInfo.cpp 46 ShapeValue* shapeValue = renderer->style()->resolvedShapeInside();
47 if (!shapeValue)
50 switch (shapeValue->type()) {
51 case ShapeValue::Shape:
52 return shapeValue->shape() && shapeValue->shape()->type() != BasicShape::BasicShapeInsetRectangleType;
53 case ShapeValue::Image:
54 return shapeValue->isImageValid() && checkShapeImageOrigin(renderer->document(), *(shapeValue->image()->cachedImage()))
    [all...]
ShapeInfo.cpp 59 const ShapeValue* shapeValue = this->shapeValue();
60 ASSERT(shapeValue);
62 switch (shapeValue->type()) {
63 case ShapeValue::Shape:
64 ASSERT(shapeValue->shape());
65 m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding);
67 case ShapeValue::Image:
68 ASSERT(shapeValue->image())
    [all...]
ShapeInfo.h 35 #include "core/rendering/style/ShapeValue.h"
73 if (shapeValue()->type() == ShapeValue::Box) {
74 switch (shapeValue()->layoutBox()) {
129 virtual ShapeValue* shapeValue() const = 0;
134 if (shapeValue()->type() == ShapeValue::Box) {
135 switch (shapeValue()->layoutBox()) {
151 if (shapeValue()->type() == ShapeValue::Box)
    [all...]
ShapeOutsideInfo.h 59 virtual ShapeValue* shapeValue() const OVERRIDE;
ShapeInsideInfo.h 104 virtual ShapeValue* shapeValue() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResourceLoader.h 34 class ShapeValue;
57 void loadPendingShapeImage(RenderStyle*, ShapeValue*);
StyleResourceLoader.cpp 106 void StyleResourceLoader::loadPendingShapeImage(RenderStyle* renderStyle, ShapeValue* shapeValue)
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/frame/animation/
CSSPropertyAnimation.cpp 130 static inline PassRefPtr<ShapeValue> blendFunc(const AnimationBase*, ShapeValue* from, ShapeValue* to, double progress)
133 if (!from || !to || from->type() != ShapeValue::Shape || to->type() != ShapeValue::Shape)
142 return ShapeValue::createShapeValue(toShape->blend(fromShape, progress));
396 class PropertyWrapperShape : public RefCountedPropertyWrapper<ShapeValue> {
398 PropertyWrapperShape(CSSPropertyID prop, ShapeValue* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ShapeValue>))
399 : RefCountedPropertyWrapper<ShapeValue>(prop, getter, setter
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.h 664 void updateShapeImage(const ShapeValue*, const ShapeValue*);
    [all...]
RenderBlock.h 33 #include "core/rendering/style/ShapeValue.h"
487 void updateShapeInsideInfoAfterStyleChange(const ShapeValue*, const ShapeValue* oldShape);
    [all...]
RenderObject.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp 282 const ShapeValue* shapeOutside = style.shapeOutside();
283 const ShapeValue* oldShapeOutside = oldStyle ? oldStyle->shapeOutside() : RenderStyle::initialShapeOutside();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 72 #include "core/rendering/style/ShapeValue.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 240 inline static PassRefPtr<AnimatableValue> createFromShapeValue(ShapeValue* value)

Completed in 4979 milliseconds