Lines Matching refs:dash
362 static void _parseDashArray(SvgLoaderData* loader, const char *str, SvgDash* dash) in _PARSE_TAG()
379 (*dash).array.push(parsedValue); in _PARSE_TAG()
383 if ((*dash).array.count == 1) (*dash).array.push((*dash).array[0]); in _PARSE_TAG()
1061 _parseDashArray(loader, value, &node->style->stroke.dash); in _handleStrokeDashArrayAttr()
1067 …node->style->stroke.dash.offset = _toFloat(loader->svgParse, value, SvgParserLengthType::Horizonta… in _handleStrokeDashOffsetAttr()
3011 if (parent->stroke.dash.array.count > 0) { in _styleInherit()
3012 child->stroke.dash.array.clear(); in _styleInherit()
3013 child->stroke.dash.array.reserve(parent->stroke.dash.array.count); in _styleInherit()
3014 for (uint32_t i = 0; i < parent->stroke.dash.array.count; ++i) { in _styleInherit()
3015 child->stroke.dash.array.push(parent->stroke.dash.array[i]); in _styleInherit()
3020 child->stroke.dash.offset = parent->stroke.dash.offset; in _styleInherit()
3086 if (from->stroke.dash.array.count > 0) { in _styleCopy()
3087 to->stroke.dash.array.clear(); in _styleCopy()
3088 to->stroke.dash.array.reserve(from->stroke.dash.array.count); in _styleCopy()
3089 for (uint32_t i = 0; i < from->stroke.dash.array.count; ++i) { in _styleCopy()
3090 to->stroke.dash.array.push(from->stroke.dash.array[i]); in _styleCopy()
3095 to->stroke.dash.offset = from->stroke.dash.offset; in _styleCopy()
3640 style->stroke.dash.array.reset(); in _freeNodeStyle()