Home | History | Annotate | Download | only in tinyxml

Lines Matching full:children

378 	Nodes have siblings, a parent, and children. A node can be
409 all the children of that root element.
479 /// Delete all the children of this node. Does not affect 'this'.
486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
493 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
503 /** An alternate way to walk the children of a node.
522 /// This flavor of IterateChildren searches for children with a particular 'value'
633 /// Returns true if this node has no children.