Lines Matching defs:node
213 SkSVGRenderContext::SkSVGRenderContext(const SkSVGRenderContext& other, const SkSVGNode* node)
220 OBBScope{node, this}) {}
313 // - the target node doesn't have any descendants;
333 const auto node = this->findNodeById(filter.iri());
334 if (!node || node->tag() != SkSVGTag::kFilter) {
338 const SkSVGFilter* filterNode = reinterpret_cast<const SkSVGFilter*>(node.get());
387 const auto node = this->findNodeById(mask.iri());
388 if (!node || node->tag() != SkSVGTag::kMask) {
392 const auto* mask_node = static_cast<const SkSVGMask*>(node.get());
429 // hierarchy. To avoid gross transgressions like leaf node presentation attributes
435 // and node being rendered.
445 const auto node = this->findNodeById(paint_selector.iri());
446 if (!node || !node->asPaint(local_ctx, p.get())) {