Lines Matching refs:child
305 // A document can never be a child. Thanks to Noam.
819 // 2) An element with only a text child is printed as <foo> text </foo>
902 const TiXmlNode* child = this->FirstChild();
903 if ( child ) {
904 const TiXmlText* childText = child->ToText();
1636 TiXmlNode* child = node->FirstChild();
1637 if ( child )
1638 return TiXmlHandle( child );
1648 TiXmlNode* child = node->FirstChild( value );
1649 if ( child )
1650 return TiXmlHandle( child );
1660 TiXmlElement* child = node->FirstChildElement();
1661 if ( child )
1662 return TiXmlHandle( child );
1672 TiXmlElement* child = node->FirstChildElement( value );
1673 if ( child )
1674 return TiXmlHandle( child );
1680 TiXmlHandle TiXmlHandle::Child( int count ) const
1685 TiXmlNode* child = node->FirstChild();
1687 child && i<count;
1688 child = child->NextSibling(), ++i )
1692 if ( child )
1693 return TiXmlHandle( child );
1699 TiXmlHandle TiXmlHandle::Child( const char* value, int count ) const
1704 TiXmlNode* child = node->FirstChild( value );
1706 child && i<count;
1707 child = child->NextSibling( value ), ++i )
1711 if ( child )
1712 return TiXmlHandle( child );
1723 TiXmlElement* child = node->FirstChildElement();
1725 child && i<count;
1726 child = child->NextSiblingElement(), ++i )
1730 if ( child )
1731 return TiXmlHandle( child );
1742 TiXmlElement* child = node->FirstChildElement( value );
1744 child && i<count;
1745 child = child->NextSiblingElement( value ), ++i )
1749 if ( child )
1750 return TiXmlHandle( child );