Lines Matching defs:defs
231 return root->defs;
243 // If not, return the first perspective in defs (which may be NULL of none exists)
260 for (SPObject *i = root->defs->firstChild(); i; i = i->getNext() ) {
425 if (!document->root->defs) {
426 Inkscape::XML::Node *r = rdoc->createElement("svg:defs");
429 g_assert(document->root->defs);
1676 * Paste SVG defs from the document retrieved from the clipboard or imported document into the active document.
1684 std::vector<Inkscape::XML::Node const *> defsNodes = sp_repr_lookup_name_many(root, "svg:defs");
1688 for (std::vector<Inkscape::XML::Node const *>::iterator defs = defsNodes.begin(); defs != defsNodes.end(); ++defs) {
1689 importDefsNode(source, const_cast<Inkscape::XML::Node *>(*defs), target_defs);
1693 void SPDocument::importDefsNode(SPDocument *source, Inkscape::XML::Node *defs, Inkscape::XML::Node *target_defs)
1736 for (Inkscape::XML::Node *def = defs->firstChild() ; def ; def = def->next()) {
1769 for (Inkscape::XML::Node *def = defs->firstChild() ; def ; def = def->next()) {
1797 for (Inkscape::XML::Node *def = defs->firstChild() ; def ; def = def->next()) {
1800 /* Ignore duplicate defs marked in the first pass */
1809 // We assume that symbols are in defs section (not required by SVG spec).