Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.h603 const XMLElement* LastChildElement( const char* value = 0 ) const;
604 XMLElement* LastChildElement( const char* _value = 0 ) {
605 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(_value) );
1571 XMLHandle LastChildElement( const char* _value = 0 ) {
1572 return XMLHandle( node ? node->LastChildElement( _value ) : 0 );
1648 const XMLConstHandle LastChildElement( const char* _value = 0 ) const {
1649 return XMLConstHandle( node ? node->LastChildElement( _value ) : 0 );
H A Dtinyxml2.cpp713 const XMLElement* XMLNode::LastChildElement( const char* value ) const in LastChildElement() function in XMLNode