Searched refs:descendent (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/xml/
H A Drepr-sorting.cpp37 Inkscape::XML::Node const *AncetreFils(Inkscape::XML::Node const *descendent, Inkscape::XML::Node const *ancestor) argument
40 if ( descendent && ancestor ) {
41 if (descendent->parent() == ancestor) {
42 result = descendent;
44 result = AncetreFils(descendent->parent(), ancestor);
50 Inkscape::XML::Node *AncetreFils(Inkscape::XML::Node *descendent, Inkscape::XML::Node *ancestor) argument
52 Inkscape::XML::Node const * tmp = AncetreFils(const_cast<Inkscape::XML::Node const*>(descendent), const_cast<Inkscape::XML::Node const*>(ancestor));
H A Drepr-sorting.h23 * Returns a child of \a ancestor such that ret is itself an ancestor of \a descendent.
25 * The current version returns NULL if ancestor or descendent is NULL, though future versions may
28 Inkscape::XML::Node const *AncetreFils(Inkscape::XML::Node const *descendent, Inkscape::XML::Node const *ancestor);
30 Inkscape::XML::Node *AncetreFils(Inkscape::XML::Node *descendent, Inkscape::XML::Node *ancestor);

Completed in 74 milliseconds