| 1582 | |
| 1583 | |
| 1584 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const |
| 1585 | { |
| 1586 | for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { |
| 1587 | if ( XMLUtil::StringEqual( a->Name(), name ) ) { |
| 1588 | return a; |
| 1589 | } |
| 1590 | } |
| 1591 | return 0; |
| 1592 | } |
| 1593 | |
| 1594 | |
| 1595 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
nothing calls this directly
no test coverage detected