HomeSort by relevance Sort by last modified time
    Searched refs:TiXmlString (Results 1 - 7 of 7) sorted by null

  /external/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 30 const TiXmlString::size_type TiXmlString::npos = static_cast< TiXmlString::size_type >(-1);
34 TiXmlString::Rep TiXmlString::nullrep_ = { 0, 0, { '\0' } };
37 void TiXmlString::reserve (size_type cap)
41 TiXmlString tmp;
49 TiXmlString& TiXmlString::assign(const char* str, size_type len)
54 TiXmlString tmp
    [all...]
tinystr.h 34 required - it is used to check that the TiXmlString class isn't incorrectly
49 TiXmlString is an emulation of a subset of the std::string template.
55 class TiXmlString
65 // TiXmlString empty constructor
66 TiXmlString () : rep_(&nullrep_)
70 // TiXmlString copy constructor
71 TiXmlString ( const TiXmlString & copy) : rep_(0)
77 // TiXmlString constructor, based on a string
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0
    [all...]
tinyxml.h 53 #define TIXML_STRING TiXmlString
205 or the string class (TiXmlString in non-STL mode, std::string
    [all...]
  /external/tinyxml/
tinystr.cpp 35 const TiXmlString::size_type TiXmlString::npos = static_cast< size_type >(-1);
38 TiXmlString::Rep TiXmlString::nullrep_ = { 0, 0, '\0' };
41 void TiXmlString::reserve (size_type cap)
45 TiXmlString tmp;
53 TiXmlString& TiXmlString::assign(const char* str, size_type len)
58 TiXmlString tmp;
72 TiXmlString& TiXmlString::append(const char* str, size_type len
    [all...]
tinystr.h 29 * - sizeof(TiXmlString) = pointer size (4 bytes on 32-bit systems)
46 TiXmlString is an emulation of a subset of the std::string template.
52 class TiXmlString
62 // TiXmlString empty constructor
63 TiXmlString () : rep_(&nullrep_)
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy)
74 // TiXmlString constructor, based on a string
75 TiXmlString (const char * copy
    [all...]
xmltest.cpp 770 TiXmlString a;
771 TiXmlString b( "Hello" );
772 TiXmlString c( "ooga" );
779 XmlTest( "Basic TiXmlString test. ", "Hello World!", a.c_str() );
1010 TiXmlString temp;
1013 TiXmlString foo;
1014 TiXmlString bar( "" );
tinyxml.h 61 #define TIXML_STRING TiXmlString
    [all...]

Completed in 900 milliseconds