Lines Matching refs:operator
95 TiXmlString& operator = (const char * copy)
101 TiXmlString& operator = (const TiXmlString & copy)
108 TiXmlString& operator += (const char * suffix)
114 TiXmlString& operator += (char single)
120 TiXmlString& operator += (const TiXmlString & suffix)
153 char& operator [] (size_type index) const
220 rep_ = static_cast<Rep*>(operator new(sizeof(Rep) + cap)); in init()
234 operator delete(rep_); in quit()
244 inline bool operator == (const TiXmlString & a, const TiXmlString & b)
249 inline bool operator < (const TiXmlString & a, const TiXmlString & b)
254 inline bool operator != (const TiXmlString & a, const TiXmlString & b) { return !(a == b); }
255 inline bool operator > (const TiXmlString & a, const TiXmlString & b) { return b < a; }
256 inline bool operator <= (const TiXmlString & a, const TiXmlString & b) { return !(b < a); }
257 inline bool operator >= (const TiXmlString & a, const TiXmlString & b) { return !(a < b); }
259 inline bool operator == (const TiXmlString & a, const char* b) { return strcmp(a.c_str(), b) == 0; }
260 inline bool operator == (const char* a, const TiXmlString & b) { return b == a; }
261 inline bool operator != (const TiXmlString & a, const char* b) { return !(a == b); }
262 inline bool operator != (const char* a, const TiXmlString & b) { return !(b == a); }
264 TiXmlString operator + (const TiXmlString & a, const TiXmlString & b);
265 TiXmlString operator + (const TiXmlString & a, const char* b);
266 TiXmlString operator + (const char* a, const TiXmlString & b);
278 TiXmlOutStream & operator << (const TiXmlString & in)
285 TiXmlOutStream & operator << (const char * in)