Lines Matching full:base
637 void TiXmlElement::operator=( const TiXmlElement& base )
640 base.CopyTo( this );
1283 void TiXmlComment::operator=( const TiXmlComment& base )
1286 base.CopyTo( this );
1586 TIXML_ISTREAM & operator >> (TIXML_ISTREAM & in, TiXmlNode & base)
1590 base.StreamIn( &in, &tag );
1592 base.Parse( tag.c_str(), 0, TIXML_DEFAULT_ENCODING );
1598 TIXML_OSTREAM & operator<< (TIXML_OSTREAM & out, const TiXmlNode & base)
1600 base.StreamOut (& out);
1606 std::string & operator<< (std::string& out, const TiXmlNode& base )
1609 base.StreamOut( &os_stream );