/inkscape/src/xml/ |
H A D | repr.cpp | 46 Inkscape::XML::Node *root = doc->createElement(rootname); local 47 doc->appendChild(root); 48 Inkscape::GC::release(root);
|
H A D | repr-action-test.h | 14 Inkscape::XML::Node *a, *b, *c, *root; member in class:XmlReprActionTest 23 root = document->root(); 41 root->appendChild(a); 42 TS_ASSERT_EQUALS(a->parent() , root); 50 root->appendChild(a); 53 TS_ASSERT_EQUALS(a->parent() , root); 59 TS_ASSERT_EQUALS(a->parent() , root); 66 root->appendChild(a); 67 root [all...] |
H A D | subtree.cpp | 22 Subtree::Subtree(Node &root) : _root(root) { argument
|
H A D | rebase-hrefs-test.h | 12 Inkscape::XML::Node *a, *b, *c, *root; member in class:RebaseHrefsTest 21 root = document->root();
|
H A D | simple-node.h | 55 Node *root(); 56 Node const *root() const { function in class:Inkscape::XML::SimpleNode 57 return const_cast<SimpleNode *>(this)->root();
|
/inkscape/src/extension/ |
H A D | print.h | 30 Inkscape::DrawingItem *root; member in class:Inkscape::Extension::Print
|
/inkscape/src/libvpsc/pairingheap/ |
H A D | PairingHeap.h | 97 if (root == NULL) { 99 root = broot; 102 compareAndLink(root, broot); 110 PairNode<T> *r=root; 111 root=NULL; 115 PairNode<T> *root; member in class:PairingHeap
|
/inkscape/src/libgdl/ |
H A D | gdl-dock.h | 48 GdlDockObject *root; member in struct:_GdlDock
|
/inkscape/src/ |
H A D | sp-tag-use.cpp | 145 SPItem * SPTagUse::root() function in class:SPTagUse
|
H A D | layer-fns.cpp | 92 SPObject *last_elder_layer(SPObject *root, SPObject *layer) { argument 96 while ( layer != root ) { 110 /** Finds the next layer under \a root, relative to \a layer in 113 * @returns NULL if there are no further layers under \a root 115 SPObject *next_layer(SPObject *root, SPObject *layer) { argument 129 } else if ( layer->parent != root ) { 137 /** Finds the previous layer under \a root, relative to \a layer in 140 * @returns NULL if there are no prior layers under \a root. 142 SPObject *previous_layer(SPObject *root, SPObject *layer) { argument 151 } else if ( layer != root ) { 171 create_layer(SPObject *root, SPObject *layer, LayerRelativePosition position) argument [all...] |
H A D | layer-model.cpp | 36 #include "sp-root.h" 88 * Returns current root (=bottom) layer. 104 * Resets the bottom layer to the current root 206 SPObject *root=currentRoot(); local 208 while ( object && object != root && !isLayer(object) ) { 209 // Objects in defs have no layer and are NOT in the root layer
|
H A D | object-test.h | 14 #include "sp-root.h" 87 SPRoot *root = doc->getRoot(); local 88 assert(root->getRepr() != NULL); 89 assert(root->hasChildren()); 100 SPObject *child = root->firstChild(); 102 TS_ASSERT(child->parent == root); 104 TS_ASSERT(root->isAncestorOf(child));
|
H A D | document-subset.cpp | 190 Record &root = records[NULL]; local 191 for ( Siblings::iterator it = root.children.begin(); it != root.children.end(); ++it ) { 193 root.children.erase( it ); 310 Record &root=records[NULL]; local 312 while (!root.children.empty()) { 313 _doRemoveSubtree(root.children.front());
|
H A D | document.h | 99 SPRoot *root; ///< Our SPRoot member in class:SPDocument 131 SPRoot *getRoot() { return root; } 132 SPRoot const *getRoot() const { return root; }
|
H A D | filter-chemistry.cpp | 327 Inkscape::XML::Node *root = b_repr->root(); local 328 if (!root->attribute("enable-background")) { 329 root->setAttribute("enable-background", "new");
|
H A D | layer-manager.cpp | 195 SPObject *root=_desktop->currentRoot(); local 196 if ( root ) { 265 SPObject *root=_desktop->currentRoot(); local 266 if ( root ) { 267 _addOne(root); 277 if ( root->isAncestorOf(layer) ) { 279 for ( SPObject* curr = layer; curr && (curr != root) && needsAdd; curr = curr->parent ) { 322 while ( higher && (higher->parent != root) ) {
|
H A D | selection-describer.cpp | 133 SPObject *root = selection->layers()->currentRoot(); local 137 if (layer == root) { 138 layer_name = g_strdup(_("root"));
|
H A D | sp-tref.cpp | 46 static void build_string_from_root(Inkscape::XML::Node *root, Glib::ustring *retString); 419 * found in the tree starting at the root 422 build_string_from_root(Inkscape::XML::Node *root, Glib::ustring *retString) argument 424 if (root && retString) { 427 if (root->type() == Inkscape::XML::TEXT_NODE) { 428 *retString += (root->content()); 436 for (childNode = root->firstChild(); childNode; childNode = childNode->next()) {
|
/inkscape/src/extension/internal/ |
H A D | svg.cpp | 28 #include "sp-root.h" 255 // TODO: Move this code into xml/document.h and duplicate rdoc instead of root. 259 // Get a new xml repr for the svg root node 260 Inkscape::XML::Node *root = rdoc->root()->duplicate(new_rdoc); local 263 new_rdoc->appendChild(root); 264 Inkscape::GC::release(root); 266 pruneExtendedNamespaces(root);
|
/inkscape/src/display/ |
H A D | drawing.h | 46 DrawingItem *root() { return _root; } function in class:Inkscape::Drawing
|
H A D | canvas-arena.cpp | 100 Inkscape::DrawingGroup *root = new DrawingGroup(arena->drawing); local 101 root->setPickChildren(true); 102 arena->drawing.setRoot(root); 146 Geom::OptIntRect b = arena->drawing.root()->visualBounds();
|
/inkscape/src/extension/internal/filter/ |
H A D | filter-file.cpp | 93 Inkscape::XML::Node * root = doc->root(); local 94 if (strcmp(root->name(), "svg:svg")) { 100 for (Inkscape::XML::Node * child = root->firstChild(); 110 } // children of root 160 // serialize it, it loses the namespace declarations from the root, so we must provide
|
/inkscape/src/helper/ |
H A D | pixbuf-ops.cpp | 30 #include "sp-root.h" 127 Inkscape::DrawingItem *root = doc->getRoot()->invoke_show( drawing, dkey, SP_ITEM_SHOW_DISPLAY); local 128 root->setTransform(affine); 129 drawing.setRoot(root);
|
/inkscape/src/2geom/ |
H A D | line.cpp | 132 Coord r = root(v, d); 139 Coord Line::root(Coord v, Dim2 d) const function in class:Geom::Line 154 // since the root-based code below will break for them 174 Interval xpart(root(r[X].min(), X), root(r[X].max(), X)); 175 Interval ypart(root(r[Y].min(), Y), root(r[Y].max(), Y));
|
/inkscape/share/filters/ |
H A D | samplify.py | 102 root = tdoc.getroot() variable 103 tout = etree.ElementTree(copy_element(root)) 105 for ch in root.getchildren():
|