/external/skia/modules/svg/src/ |
D | SkSVGDOM.cpp | 55 bool SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetIRIAttribute() 66 bool SetStringAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetStringAttribute() 74 bool SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetTransformAttribute() 85 bool SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLengthAttribute() 96 bool SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetViewBoxAttribute() 108 bool SetObjectBoundingBoxUnitsAttribute(const sk_sp<SkSVGNode>& node, in SetObjectBoundingBoxUnitsAttribute() 120 bool SetPreserveAspectRatioAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetPreserveAspectRatioAttribute() 180 bool set_string_attribute(const sk_sp<SkSVGNode>& node, const char* name, const char* value); 182 bool SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, in SetStyleAttributes() 206 bool (*fSetter)(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue); [all …]
|
D | SkSVGNode.cpp | 17 SkSVGNode::SkSVGNode(SkSVGTag t) : fTag(t) { in SkSVGNode() function in SkSVGNode 26 SkSVGNode::~SkSVGNode() { } in ~SkSVGNode() 28 void SkSVGNode::render(const SkSVGRenderContext& ctx) const { in render() 36 bool SkSVGNode::asPaint(const SkSVGRenderContext& ctx, SkPaint* paint) const { in asPaint() 42 SkPath SkSVGNode::asPath(const SkSVGRenderContext& ctx) const { in asPath() 58 SkRect SkSVGNode::objectBoundingBox(const SkSVGRenderContext& ctx) const { in objectBoundingBox() 62 bool SkSVGNode::onPrepareToRender(SkSVGRenderContext* ctx) const { in onPrepareToRender() 75 void SkSVGNode::setAttribute(SkSVGAttribute attr, const SkSVGValue& v) { in setAttribute() 90 bool SkSVGNode::parseAndSetAttribute(const char* n, const char* v) { in parseAndSetAttribute() 132 SkMatrix SkSVGNode::ComputeViewboxMatrix(const SkRect& viewBox, in ComputeViewboxMatrix()
|
D | SkSVGShape.cpp | 29 void SkSVGShape::appendChild(sk_sp<SkSVGNode>) { in appendChild() argument
|
/external/skqp/experimental/svg/model/ |
D | SkSVGDOM.cpp | 38 bool SetPaintAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetPaintAttribute() 50 bool SetColorAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetColorAttribute() 62 bool SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetIRIAttribute() 74 bool SetClipPathAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetClipPathAttribute() 87 bool SetPathDataAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetPathDataAttribute() 98 bool SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetTransformAttribute() 110 bool SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLengthAttribute() 122 bool SetNumberAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetNumberAttribute() 134 bool SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetViewBoxAttribute() 146 bool SetLineCapAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLineCapAttribute() [all …]
|
D | SkSVGNode.cpp | 16 SkSVGNode::SkSVGNode(SkSVGTag t) : fTag(t) { } in SkSVGNode() function in SkSVGNode 18 SkSVGNode::~SkSVGNode() { } in ~SkSVGNode() 20 void SkSVGNode::render(const SkSVGRenderContext& ctx) const { in render() 28 bool SkSVGNode::asPaint(const SkSVGRenderContext& ctx, SkPaint* paint) const { in asPaint() 34 SkPath SkSVGNode::asPath(const SkSVGRenderContext& ctx) const { in asPath() 50 bool SkSVGNode::onPrepareToRender(SkSVGRenderContext* ctx) const { in onPrepareToRender() 59 void SkSVGNode::setAttribute(SkSVGAttribute attr, const SkSVGValue& v) { in setAttribute() 63 void SkSVGNode::setClipPath(const SkSVGClip& clip) { in setClipPath() 67 void SkSVGNode::setClipRule(const SkSVGFillRule& clipRule) { in setClipRule() 71 void SkSVGNode::setFill(const SkSVGPaint& svgPaint) { in setFill() [all …]
|
D | SkSVGNode.h | 40 class SkSVGNode : public SkRefCnt { 42 virtual ~SkSVGNode(); 46 virtual void appendChild(sk_sp<SkSVGNode>) = 0; 68 SkSVGNode(SkSVGTag);
|
D | SkSVGDOM.h | 19 class SkSVGNode; variable 32 void setRoot(sk_sp<SkSVGNode>); 40 sk_sp<SkSVGNode> fRoot;
|
D | SkSVGIDMapper.h | 15 class SkSVGNode; variable 17 using SkSVGIDMapper = SkTHashMap<SkString, sk_sp<SkSVGNode>>;
|
D | SkSVGTransformableNode.h | 14 class SkSVGTransformableNode : public SkSVGNode { 33 typedef SkSVGNode INHERITED;
|
D | SkSVGContainer.h | 18 void appendChild(sk_sp<SkSVGNode>) override; 30 SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
|
D | SkSVGShape.h | 21 void appendChild(sk_sp<SkSVGNode>) override;
|
D | SkSVGShape.cpp | 26 void SkSVGShape::appendChild(sk_sp<SkSVGNode>) { in appendChild() argument
|
D | SkSVGUse.h | 24 void appendChild(sk_sp<SkSVGNode>) override;
|
D | SkSVGContainer.cpp | 15 void SkSVGContainer::appendChild(sk_sp<SkSVGNode> node) { in appendChild()
|
/external/skia/modules/svg/include/ |
D | SkSVGRenderContext.h | 62 const SkSVGNode* fNode; 73 SkSVGRenderContext(const SkSVGRenderContext&, const SkSVGNode*); 92 explicit BorrowedNode(sk_sp<SkSVGNode>* node) in BorrowedNode() 106 const SkSVGNode* get() const { return fBorrowed.get(); } in get() 107 const SkSVGNode* operator->() const { return fBorrowed.get(); } 108 const SkSVGNode& operator*() const { return *fBorrowed; } 117 sk_sp<SkSVGNode>* fOwner; 118 sk_sp<SkSVGNode> fBorrowed;
|
D | SkSVGIDMapper.h | 15 class SkSVGNode; variable 17 using SkSVGIDMapper = SkTHashMap<SkString, sk_sp<SkSVGNode>>;
|
D | SkSVGTransformableNode.h | 14 class SkSVGTransformableNode : public SkSVGNode { 33 using INHERITED = SkSVGNode;
|
D | SkSVGContainer.h | 16 void appendChild(sk_sp<SkSVGNode>) override; 30 SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
|
D | SkSVGDOM.h | 21 class SkSVGNode; variable 53 sk_sp<SkSVGNode>* findNodeById(const char* id);
|
D | SkSVGNode.h | 95 class SkSVGNode : public SkRefCnt { 97 ~SkSVGNode() override; 101 virtual void appendChild(sk_sp<SkSVGNode>) = 0; 150 SkSVGNode(SkSVGTag);
|
D | SkSVGText.h | 48 void appendChild(sk_sp<SkSVGNode>) final; 101 void appendChild(sk_sp<SkSVGNode>) override {} in appendChild() argument
|
D | SkSVGShape.h | 19 void appendChild(sk_sp<SkSVGNode>) override;
|
D | SkSVGUse.h | 22 void appendChild(sk_sp<SkSVGNode>) override;
|
D | SkSVGImage.h | 24 void appendChild(sk_sp<SkSVGNode>) override { in appendChild() argument
|
/external/skia/modules/svg/ |
D | svg.gni | 42 "$_include/SkSVGNode.h", 87 "$_src/SkSVGNode.cpp",
|