Searched refs:LastChildElement (Results 1 – 3 of 3) sorted by relevance
792 const XMLElement* LastChildElement( const char* name = 0 ) const;794 XMLElement* LastChildElement( const char* name = 0 ) {795 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(name) );2074 XMLHandle LastChildElement( const char* name = 0 ) {2075 return XMLHandle( _node ? _node->LastChildElement( name ) : 0 );2148 const XMLConstHandle LastChildElement( const char* name = 0 ) const {2149 return XMLConstHandle( _node ? _node->LastChildElement( name ) : 0 );
489 …XMLTest( "Programmatic DOM", 2, doc->FirstChildElement()->LastChildElement( "sub" )->IntAttribute(… in main()491 doc->FirstChildElement()->LastChildElement( "sub" )->FirstChild()->ToText()->Value() ); in main()500 element->LastChildElement()->DeleteAttribute( "attrib" ); in main()506 …int value2 = doc->FirstChildElement()->LastChildElement()->IntAttribute( "attrib", replacementIntV… in main()507 …XMLError result = doc->FirstChildElement()->LastChildElement()->QueryIntAttribute( "attrib", &valu… in main()549 doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() ); in main()551 doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() ); in main()562 doc2.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() ); in main()1980 …XMLTest("<two> is the last child at root level", true, two == doc.RootElement()->LastChildElement(… in main()
974 const XMLElement* XMLNode::LastChildElement( const char* name ) const in LastChildElement() function in tinyxml2::XMLNode