MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / PreviousSibling

Method PreviousSibling

lesson7-Detection/src/utils/tinyxml.cpp:425–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

423
424
425const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const
426{
427 const TiXmlNode* node;
428 for ( node = prev; node; node = node->prev )
429 {
430 if ( strcmp( node->Value(), _value ) == 0 )
431 return node;
432 }
433 return 0;
434}
435
436
437void TiXmlElement::RemoveAttribute( const char * name )

Callers

nothing calls this directly

Calls 1

ValueMethod · 0.45

Tested by

no test coverage detected