Home | History | Annotate | Download | only in tinyxml

Lines Matching full:operator

165 		(For an unformatted stream, use the << operator.)
187 when the DOM was created from operator>>.
357 void operator=( const TiXmlBase& base ); // not allowed.
390 /** An input stream operator, for every class. Tolerant of newlines and
393 friend std::istream& operator >> (std::istream& in, TiXmlNode& base);
395 /** An output stream operator, for every class. Note that this outputs
399 The operator<< and operator>> are not completely symmetric. Writing
411 friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base);
414 friend std::string& operator<< (std::string& out, const TiXmlNode& base );
418 friend TIXML_OSTREAM& operator<< (TIXML_OSTREAM& out, const TiXmlNode& base);
659 // and the assignment operator.
663 // The real work of the input operator.
683 void operator=( const TiXmlNode& base ); // not allowed.
772 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
773 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; }
774 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; }
791 void operator=( const TiXmlAttribute& base ); // not allowed.
834 void operator=( const TiXmlAttributeSet& ); // not allowed (as TiXmlAttribute)
857 void operator=( const TiXmlElement& base );
1028 void operator=( const TiXmlComment& base );
1086 void operator=( const TiXmlText& base ) { base.CopyTo( this ); }
1147 void operator=( const TiXmlDeclaration& copy );
1195 void operator=( const TiXmlUnknown& copy ) { copy.CopyTo( this ); }
1235 void operator=( const TiXmlDocument& copy );
1315 Note that row and column tracking is not supported when using operator>>.
1455 TiXmlHandle operator=( const TiXmlHandle& ref ) { this->node = ref.node; return *this; }