Home | History | Annotate | Download | only in tinyxml

Lines Matching full:copy

33  * - added "copy" constructor with length, and most compare operators.
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy)
70 init(copy.length());
71 memcpy(start(), copy.data(), length());
75 TiXmlString (const char * copy)
77 init( static_cast<size_type>( strlen(copy) ));
78 memcpy(start(), copy, length());
95 TiXmlString& operator = (const char * copy)
97 return assign( copy, (size_type)strlen(copy));
101 TiXmlString& operator = (const TiXmlString & copy)
103 return assign(copy.start(), copy.length());