Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:Parent

417 /** The parent class for everything in the Document Object Model.
419 Nodes have siblings, a parent, and children. A node can be
519 TiXmlNode* Parent() { return parent; }
520 const TiXmlNode* Parent() const { return parent; }
549 for( child = parent->FirstChild(); child; child = child->NextSibling() )
555 while( child = parent->IterateChildren( child ) )
755 TiXmlNode* parent;