Home
last modified time | relevance | path

Searched refs:XMLText (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/tools/xml2sdb/
H A Dtinyxml2.h105 class XMLText; variable
635 virtual XMLText* ToText() { in ToText()
894 class TINYXML2_LIB XMLText : public XMLNode
901 virtual XMLText* ToText() { in ToText()
904 virtual const XMLText* ToText() const { in ToText()
922 virtual ~XMLText() {} in ~XMLText()
929 XMLText( const XMLText& ); // not supported
930 XMLText& operator=( const XMLText& ); // not supported
1648 XMLText* NewText( const char* text );
1851 XMLText* ToText() { in ToText()
[all …]
H A Dtinyxml2.cpp653 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 …]
H A Dxml2sdb.cpp14 using tinyxml2::XMLText;
61 XMLText* txtNode = node.FirstChild().ToText(); in ToString()