shapeValue 38 Source/core/animation/AnimatableShapeValue.cpp const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value); shapeValue 41 Source/core/animation/AnimatableShapeValue.cpp || shapeValue->m_shape->type() != ShapeValue::Shape shapeValue 42 Source/core/animation/AnimatableShapeValue.cpp || m_shape->cssBox() != shapeValue->m_shape->cssBox()) shapeValue 46 Source/core/animation/AnimatableShapeValue.cpp const BasicShape* toShape = shapeValue->m_shape->shape(); shapeValue 56 Source/core/animation/AnimatableShapeValue.cpp const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value); shapeValue 58 Source/core/animation/AnimatableShapeValue.cpp const BasicShape* toShape = shapeValue->m_shape->shape(); shapeValue 59 Source/core/animation/AnimatableShapeValue.cpp return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get()); shapeValue 46 Source/core/animation/AnimatableShapeValue.h ShapeValue* shapeValue() const { return m_shape.get(); } shapeValue 1437 Source/core/css/CSSComputedStyleDeclaration.cpp static PassRefPtrWillBeRawPtr<CSSValue> valueForShape(const RenderStyle& style, ShapeValue* shapeValue) shapeValue 1439 Source/core/css/CSSComputedStyleDeclaration.cpp if (!shapeValue) shapeValue 1441 Source/core/css/CSSComputedStyleDeclaration.cpp if (shapeValue->type() == ShapeValue::Outside) shapeValue 1443 Source/core/css/CSSComputedStyleDeclaration.cpp if (shapeValue->type() == ShapeValue::Box) shapeValue 1444 Source/core/css/CSSComputedStyleDeclaration.cpp return cssValuePool().createValue(shapeValue->cssBox()); shapeValue 1445 Source/core/css/CSSComputedStyleDeclaration.cpp if (shapeValue->type() == ShapeValue::Image) { shapeValue 1446 Source/core/css/CSSComputedStyleDeclaration.cpp if (shapeValue->image()) shapeValue 1447 Source/core/css/CSSComputedStyleDeclaration.cpp return shapeValue->image()->cssValue(); shapeValue 1451 Source/core/css/CSSComputedStyleDeclaration.cpp ASSERT(shapeValue->type() == ShapeValue::Shape); shapeValue 1454 Source/core/css/CSSComputedStyleDeclaration.cpp list->append(valueForBasicShape(style, shapeValue->shape())); shapeValue 1455 Source/core/css/CSSComputedStyleDeclaration.cpp if (shapeValue->cssBox() != BoxMissing) shapeValue 1456 Source/core/css/CSSComputedStyleDeclaration.cpp list->append(cssValuePool().createValue(shapeValue->cssBox())); shapeValue 4405 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> shapeValue = parseBasicShape(); shapeValue 4406 Source/core/css/parser/CSSPropertyParser.cpp if (!shapeValue) shapeValue 4408 Source/core/css/parser/CSSPropertyParser.cpp list->append(shapeValue.release()); shapeValue 6661 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> shapeValue = nullptr; shapeValue 6673 Source/core/css/parser/CSSPropertyParser.cpp shapeValue = cssValuePool().createIdentifierValue(a->id); shapeValue 6698 Source/core/css/parser/CSSPropertyParser.cpp result->setShape(shapeValue); shapeValue 6705 Source/core/css/parser/CSSPropertyParser.cpp if (!shapeValue && !sizeValue) { shapeValue 6826 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> shapeValue = nullptr; shapeValue 6841 Source/core/css/parser/CSSPropertyParser.cpp if (shapeValue) shapeValue 6843 Source/core/css/parser/CSSPropertyParser.cpp shapeValue = cssValuePool().createIdentifierValue(a->id); shapeValue 6888 Source/core/css/parser/CSSPropertyParser.cpp if (shapeValue && shapeValue->getValueID() == CSSValueCircle && verticalSize) shapeValue 6891 Source/core/css/parser/CSSPropertyParser.cpp if (shapeValue && shapeValue->getValueID() == CSSValueEllipse && horizontalSize && !verticalSize) shapeValue 6897 Source/core/css/parser/CSSPropertyParser.cpp result->setShape(shapeValue); shapeValue 6925 Source/core/css/parser/CSSPropertyParser.cpp if (shapeValue || sizeValue || horizontalSize || centerX || centerY) shapeValue 576 Source/core/css/resolver/AnimatedStyleBuilder.cpp style->setShapeOutside(toAnimatableShapeValue(value)->shapeValue()); shapeValue 101 Source/core/css/resolver/StyleResourceLoader.cpp void StyleResourceLoader::loadPendingShapeImage(RenderStyle* renderStyle, ShapeValue* shapeValue, float deviceScaleFactor) shapeValue 103 Source/core/css/resolver/StyleResourceLoader.cpp if (!shapeValue) shapeValue 106 Source/core/css/resolver/StyleResourceLoader.cpp StyleImage* image = shapeValue->image(); shapeValue 115 Source/core/css/resolver/StyleResourceLoader.cpp shapeValue->setImage(doLoadPendingImage(m_fetcher, toStylePendingImage(image), deviceScaleFactor, options)); shapeValue 2737 Source/core/rendering/RenderObject.cpp void RenderObject::removeShapeImageClient(ShapeValue* shapeValue) shapeValue 2739 Source/core/rendering/RenderObject.cpp if (!shapeValue) shapeValue 2741 Source/core/rendering/RenderObject.cpp if (StyleImage* shapeImage = shapeValue->image()) shapeValue 86 Source/core/rendering/shapes/ShapeInfo.cpp static void getShapeImageAndRect(const ShapeValue* shapeValue, const RenderBox* renderBox, const LayoutSize& referenceBoxSize, Image*& image, LayoutRect& rect) shapeValue 88 Source/core/rendering/shapes/ShapeInfo.cpp ASSERT(shapeValue->isImageValid()); shapeValue 89 Source/core/rendering/shapes/ShapeInfo.cpp StyleImage* styleImage = shapeValue->image(); shapeValue 117 Source/core/rendering/shapes/ShapeInfo.cpp const ShapeValue* shapeValue = this->shapeValue(); shapeValue 118 Source/core/rendering/shapes/ShapeInfo.cpp ASSERT(shapeValue); shapeValue 120 Source/core/rendering/shapes/ShapeInfo.cpp switch (shapeValue->type()) { shapeValue 122 Source/core/rendering/shapes/ShapeInfo.cpp ASSERT(shapeValue->shape()); shapeValue 123 Source/core/rendering/shapes/ShapeInfo.cpp m_shape = Shape::createShape(shapeValue->shape(), m_referenceBoxLogicalSize, writingMode, margin); shapeValue 128 Source/core/rendering/shapes/ShapeInfo.cpp getShapeImageAndRect(shapeValue, &m_renderer, m_referenceBoxLogicalSize, image, imageRect); shapeValue 101 Source/core/rendering/shapes/ShapeInfo.h virtual ShapeValue* shapeValue() const = 0; shapeValue 40 Source/core/rendering/shapes/ShapeOutsideInfo.cpp ShapeValue* shapeValue = box.style()->shapeOutside(); shapeValue 41 Source/core/rendering/shapes/ShapeOutsideInfo.cpp if (!box.isFloating() || !shapeValue) shapeValue 44 Source/core/rendering/shapes/ShapeOutsideInfo.cpp switch (shapeValue->type()) { shapeValue 46 Source/core/rendering/shapes/ShapeOutsideInfo.cpp return shapeValue->shape(); shapeValue 48 Source/core/rendering/shapes/ShapeOutsideInfo.cpp return shapeValue->isImageValid() && checkShapeImageOrigin(box.document(), *(shapeValue->image()->cachedImage())); shapeValue 60 Source/core/rendering/shapes/ShapeOutsideInfo.h if (shapeValue()->cssBox() == BoxMissing) shapeValue 62 Source/core/rendering/shapes/ShapeOutsideInfo.h return shapeValue()->cssBox(); shapeValue 65 Source/core/rendering/shapes/ShapeOutsideInfo.h virtual ShapeValue* shapeValue() const OVERRIDE;