| 1614 | |
| 1615 | |
| 1616 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const |
| 1617 | { |
| 1618 | for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { |
| 1619 | if ( XMLUtil::StringEqual( a->Name(), name ) ) { |
| 1620 | return a; |
| 1621 | } |
| 1622 | } |
| 1623 | return 0; |
| 1624 | } |
| 1625 | |
| 1626 | |
| 1627 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
nothing calls this directly
no test coverage detected