Lines Matching refs:rect
1822 SvgRectNode* rect = &(node->node.rect); in _attrParseRectNode() local
1827 array = (unsigned char*)rect; in _attrParseRectNode()
1833 if (!strncmp(rectTags[i].tag, "rx", sz)) rect->hasRx = true; in _attrParseRectNode()
1834 if (!strncmp(rectTags[i].tag, "ry", sz)) rect->hasRy = true; in _attrParseRectNode()
1836 …if ((rect->rx >= FLOAT_EPSILON) && (rect->ry < FLOAT_EPSILON) && rect->hasRx && !rect->hasRy) rect… in _attrParseRectNode()
1837 …if ((rect->ry >= FLOAT_EPSILON) && (rect->rx < FLOAT_EPSILON) && !rect->hasRx && rect->hasRy) rect… in _attrParseRectNode()
1867 loader->svgParse->node->node.rect.hasRx = loader->svgParse->node->node.rect.hasRy = false; in _createRectNode()
3144 to->node.rect.x = from->node.rect.x; in _copyAttr()
3145 to->node.rect.y = from->node.rect.y; in _copyAttr()
3146 to->node.rect.w = from->node.rect.w; in _copyAttr()
3147 to->node.rect.h = from->node.rect.h; in _copyAttr()
3148 to->node.rect.rx = from->node.rect.rx; in _copyAttr()
3149 to->node.rect.ry = from->node.rect.ry; in _copyAttr()
3150 to->node.rect.hasRx = from->node.rect.hasRx; in _copyAttr()
3151 to->node.rect.hasRy = from->node.rect.hasRy; in _copyAttr()
3516 …if (node->node.rect.w == 0 && node->node.rect.h) TVGLOG("SVG", "Inefficient elements used [Size is… in _inefficientNodeCheck()