Lines Matching refs:copy
70 // TiXmlString copy constructor
71 TiXmlString ( const TiXmlString & copy) : rep_(0)
73 init(copy.length());
74 memcpy(start(), copy.data(), length());
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0)
80 init( static_cast<size_type>( strlen(copy) ));
81 memcpy(start(), copy, length());
97 TiXmlString& operator = (const char * copy)
99 return assign( copy, (size_type)strlen(copy));
102 TiXmlString& operator = (const TiXmlString & copy)
104 return assign(copy.start(), copy.length());