Searched refs:XMLText (Results 1 – 3 of 3) sorted by relevance
105 class XMLText; variable635 virtual XMLText* ToText() { in ToText()894 class TINYXML2_LIB XMLText : public XMLNode901 virtual XMLText* ToText() { in ToText()904 virtual const XMLText* ToText() const { in ToText()922 virtual ~XMLText() {} in ~XMLText()929 XMLText( const XMLText& ); // not supported930 XMLText& operator=( const XMLText& ); // not supported1648 XMLText* NewText( const char* text );1851 XMLText* ToText() { in ToText()[all …]
653 XMLText* text = new (_textPool.Alloc()) XMLText( this ); in Identify()673 returnNode = new (_textPool.Alloc()) XMLText( this ); in Identify()1039 char* XMLText::ParseDeep( char* p, StrPair* ) in ParseDeep()1067 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()1078 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()1080 const XMLText* text = compare->ToText(); in ShallowEqual()1085 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()1431 XMLText* theText = GetDocument()->NewText( inText ); in SetText()1843 XMLText* XMLDocument::NewText( const char* str ) in NewText()1846 XMLText* text = new (_textPool.Alloc()) XMLText( this ); in NewText()[all …]
14 using tinyxml2::XMLText;61 XMLText* txtNode = node.FirstChild().ToText(); in ToString()