Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:element

818 	// 1) An element without children is printed as a <foo /> node
819 // 2) An element with only a text child is printed as <foo> text </foo>
820 // 3) An element with children is printed on multiple lines.
858 // Element class:
1766 bool TiXmlPrinter::VisitEnter( const TiXmlElement& element, const TiXmlAttribute* firstAttribute )
1770 buffer += element.Value();
1778 if ( !element.FirstChild() )
1786 if ( element.FirstChild()->ToText()
1787 && element.LastChild() == element.FirstChild()
1788 && element.FirstChild()->ToText()->CDATA() == false )
1803 bool TiXmlPrinter::VisitExit( const TiXmlElement& element )
1806 if ( !element.FirstChild() )
1821 buffer += element.Value();