MCPcopy Create free account
hub / github.com/cjcliffe/CubicSDR / PreviousSibling

Method PreviousSibling

external/tinyxml/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 1

mainFunction · 0.45

Calls 1

ValueMethod · 0.45

Tested by 1

mainFunction · 0.36