| 1510 | |
| 1511 | |
| 1512 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const |
| 1513 | { |
| 1514 | for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { |
| 1515 | if ( XMLUtil::StringEqual( a->Name(), name ) ) { |
| 1516 | return a; |
| 1517 | } |
| 1518 | } |
| 1519 | return 0; |
| 1520 | } |
| 1521 | |
| 1522 | |
| 1523 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
nothing calls this directly
no test coverage detected