Home | History | Annotate | Download | only in tinyxml2

Lines Matching defs:ele

778         XMLElement* ele = node->ToElement();

779 if ( ele ) {
780 if ( endTag.Empty() && ele->ClosingType() == XMLElement::OPEN ) {
784 else if ( !endTag.Empty() && ele->ClosingType() != XMLElement::OPEN ) {
1336 // <ele></ele>
1337 // <ele>foo<b>bar</b></ele>
1465 XMLElement* ele = new (elementPool.Alloc()) XMLElement( this );
1466 ele->memPool = &elementPool;
1467 ele->SetName( name );
1468 return ele;