Lines Matching refs:SvgNode

80 typedef SvgNode* (*FactoryMethod)(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned…
912 static void _postpone(Array<SvgNodeIdPair>& nodes, SvgNode *node, char* id) in _postpone()
956 SvgNode* node = loader->svgParse->node; in _attrParseSvgNode()
1027 static void _handleColorAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleColorAttr()
1036 static void _handleFillAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleFillAttr()
1044 static void _handleStrokeAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleStrokeAttr()
1052 static void _handleStrokeOpacityAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* v… in _handleStrokeOpacityAttr()
1058 static void _handleStrokeDashArrayAttr(SvgLoaderData* loader, SvgNode* node, const char* value) in _handleStrokeDashArrayAttr()
1064 static void _handleStrokeDashOffsetAttr(SvgLoaderData* loader, SvgNode* node, const char* value) in _handleStrokeDashOffsetAttr()
1070 static void _handleStrokeWidthAttr(SvgLoaderData* loader, SvgNode* node, const char* value) in _handleStrokeWidthAttr()
1077 static void _handleStrokeLineCapAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* v… in _handleStrokeLineCapAttr()
1084 static void _handleStrokeLineJoinAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* … in _handleStrokeLineJoinAttr()
1090 static void _handleStrokeMiterlimitAttr(SvgLoaderData* loader, SvgNode* node, const char* value) in _handleStrokeMiterlimitAttr()
1107 static void _handleFillRuleAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleFillRuleAttr()
1114 static void _handleOpacityAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleOpacityAttr()
1121 static void _handleFillOpacityAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* val… in _handleFillOpacityAttr()
1128 static void _handleTransformAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleTransformAttr()
1134 static void _handleClipPathAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleClipPathAttr()
1145 static void _handleMaskAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleMaskAttr()
1156 static void _handleMaskTypeAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleMaskTypeAttr()
1162 static void _handleDisplayAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* value) in _handleDisplayAttr()
1174 static void _handlePaintOrderAttr(TVG_UNUSED SvgLoaderData* loader, SvgNode* node, const char* valu… in _handlePaintOrderAttr()
1181 static void _handleCssClassAttr(SvgLoaderData* loader, SvgNode* node, const char* value) in _handleCssClassAttr()
1204 typedef void (*styleMethod)(SvgLoaderData* loader, SvgNode* node, const char* value);
1241 SvgNode* node = loader->svgParse->node; in _parseStyleAttr()
1293 SvgNode* node = loader->svgParse->node; in _attrParseGNode()
1321 SvgNode* node = loader->svgParse->node; in _attrParseClipPathNode()
1345 SvgNode* node = loader->svgParse->node; in _attrParseMaskNode()
1371 SvgNode* node = loader->svgParse->node; in _attrParseCssStyleNode()
1386 SvgNode* node = loader->svgParse->node; in _attrParseSymbolNode()
1411 static SvgNode* _createNode(SvgNode* parent, SvgNodeType type) in _createNode()
1413 SvgNode* node = (SvgNode*)calloc(1, sizeof(SvgNode)); in _createNode()
1465 static SvgNode* _createDefsNode(TVG_UNUSED SvgLoaderData* loader, TVG_UNUSED SvgNode* parent, const… in _createDefsNode()
1468 SvgNode* node = _createNode(nullptr, SvgNodeType::Defs); in _createDefsNode()
1476 static SvgNode* _createGNode(TVG_UNUSED SvgLoaderData* loader, SvgNode* parent, const char* buf, un… in _createGNode()
1486 static SvgNode* _createSvgNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned bu… in _createSvgNode()
1512 static SvgNode* _createMaskNode(SvgLoaderData* loader, SvgNode* parent, TVG_UNUSED const char* buf,… in _createMaskNode()
1526 static SvgNode* _createClipPathNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsign… in _createClipPathNode()
1540 static SvgNode* _createCssStyleNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsign… in _createCssStyleNode()
1551 static SvgNode* _createSymbolNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned… in _createSymbolNode()
1575 SvgNode* node = loader->svgParse->node; in _attrParsePathNode()
1600 static SvgNode* _createPathNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned b… in _createPathNode()
1631 SvgNode* node = loader->svgParse->node; in _attrParseCircleNode()
1662 static SvgNode* _createCircleNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned… in _createCircleNode()
1693 SvgNode* node = loader->svgParse->node; in _attrParseEllipseNode()
1724 static SvgNode* _createEllipseNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigne… in _createEllipseNode()
1752 SvgNode* node = loader->svgParse->node; in _attrParsePolygonNode()
1778 static SvgNode* _createPolygonNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigne… in _createPolygonNode()
1789 static SvgNode* _createPolylineNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsign… in _createPolylineNode()
1821 SvgNode* node = loader->svgParse->node; in _attrParseRectNode()
1861 static SvgNode* _createRectNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned b… in _createRectNode()
1894 SvgNode* node = loader->svgParse->node; in _attrParseLineNode()
1925 static SvgNode* _createLineNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned b… in _createLineNode()
1964 SvgNode* node = loader->svgParse->node; in _attrParseImageNode()
2000 static SvgNode* _createImageNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned … in _createImageNode()
2011 static SvgNode* _getDefsNode(SvgNode* node) in _getDefsNode()
2026 static SvgNode* _findNodeById(SvgNode *node, const char* id) in _findNodeById()
2030 SvgNode* result = nullptr; in _findNodeById()
2044 static SvgNode* _findParentById(SvgNode* node, char* id, SvgNode* doc) in _findParentById()
2046 SvgNode *parent = node->parent; in _findParentById()
2071 static void _cloneNode(SvgNode* from, SvgNode* parent, int depth);
2075 SvgNode *defs, *nodeFrom, *node = loader->svgParse->node; in _attrParseUseNode()
2117 static SvgNode* _createUseNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned bu… in _createUseNode()
2147 SvgNode* node = loader->svgParse->node; in _attrParseTextNode()
2182 static SvgNode* _createTextNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned b… in _createTextNode()
3109 static void _copyAttr(SvgNode* to, const SvgNode* from) in _copyAttr()
3222 static void _cloneNode(SvgNode* from, SvgNode* parent, int depth) in _cloneNode()
3231 SvgNode* newNode; in _cloneNode()
3247 static void _clonePostponedNodes(Array<SvgNodeIdPair>* cloneNodes, SvgNode* doc) in _clonePostponedNodes()
3314 SvgNode *node = nullptr, *parent = nullptr; in _svgLoaderParserXmlOpen()
3421 SvgNode *node = nullptr; in _svgLoaderParserXmlCssStyle()
3488 static void _inefficientNodeCheck(TVG_UNUSED SvgNode* node) in _inefficientNodeCheck()
3529 static void _updateStyle(SvgNode* node, SvgStyleProperty* parentStyle) in _updateStyle()
3570 static void _updateGradient(SvgLoaderData* loader, SvgNode* node, Array<SvgStyleGradient*>* gradien… in _updateGradient()
3602 static void _updateComposite(SvgNode* node, SvgNode* root) in _updateComposite()
3605 SvgNode* findResult = _findNodeById(root, node->style->clipPath.url); in _updateComposite()
3609 SvgNode* findResult = _findNodeById(root, node->style->mask.url); in _updateComposite()
3645 static void _freeNode(SvgNode* node) in _freeNode()
3709 SvgNode *node = nullptr; in _svgLoaderParserForValidCheckXmlOpen()