Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.h97 class XMLText; variable
387 virtual bool Visit( const XMLText& /*text*/ ) { in Visit() argument
512 virtual XMLText* ToText() { in ToText()
531 virtual const XMLText* ToText() const { in ToText()
758 class XMLText : public XMLNode
765 virtual XMLText* ToText() { in ToText()
768 virtual const XMLText* ToText() const { in ToText()
787 XMLText( XMLDocument* doc ) : XMLNode( doc ), isCData( false ) {} in XMLText() function
788 virtual ~XMLText() {} in ~XMLText()
789 XMLText( const XMLText& ); // not supported
[all …]
H A Dtinyxml2.cpp524 XMLText* text = new (textPool.Alloc()) XMLText( this ); in Identify()
541 returnNode = new (textPool.Alloc()) XMLText( this ); in Identify()
831 char* XMLText::ParseDeep( char* p, StrPair* ) in ParseDeep()
854 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
859 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone()
865 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
871 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1518 XMLText* XMLDocument::NewText( const char* str ) in NewText()
1520 XMLText* text = new (textPool.Alloc()) XMLText( this ); in NewText()
2034 bool XMLPrinter::Visit( const XMLText& text ) in Visit()