Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.h95 class XMLComment; variable
391 virtual bool Visit( const XMLComment& /*comment*/ ) { in Visit() argument
515 virtual XMLComment* ToComment() { in ToComment()
534 virtual const XMLComment* ToComment() const { in ToComment()
798 class XMLComment : public XMLNode
802 virtual XMLComment* ToComment() { in ToComment()
805 virtual const XMLComment* ToComment() const { in ToComment()
816 XMLComment( XMLDocument* doc );
817 virtual ~XMLComment();
818 XMLComment( const XMLComment& ); // not supported
[all …]
H A Dtinyxml2.cpp508 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()
509 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()
519 returnNode = new (commentPool.Alloc()) XMLComment( this ); in Identify()
879 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in XMLComment
884 XMLComment::~XMLComment() in ~XMLComment()
890 char* XMLComment::ParseDeep( char* p, StrPair* ) in ParseDeep()
902 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
907XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. I… in ShallowClone()
912 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
918 bool XMLComment::Accept( XMLVisitor* visitor ) const in Accept()
[all …]