Home
last modified time | relevance | path

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

/external/tinyxml2/
Dtinyxml2.h808 const XMLElement* PreviousSiblingElement( const char* name = 0 ) const ;
810 XMLElement* PreviousSiblingElement( const char* name = 0 ) {
811 … return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( name ) );
2082 XMLHandle PreviousSiblingElement( const char* name = 0 ) {
2083 return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
2154 const XMLConstHandle PreviousSiblingElement( const char* name = 0 ) const {
2155 return XMLConstHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
Dxmltest.cpp1704 const XMLElement* pre = ElementPlaylist->PreviousSiblingElement(); in main()
1710 const XMLElement* ElementEntry = ElementBlank->PreviousSiblingElement("entry"); in main()
Dtinyxml2.cpp998 const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const in PreviousSiblingElement() function in tinyxml2::XMLNode