MCPcopy Create free account
hub / github.com/DFHack/dfhack / NextSibling

Method NextSibling

depends/tinyxml/tinyxml.cpp:413–422  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

411
412
413const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
414{
415 const TiXmlNode* node;
416 for ( node = next; node; node = node->next )
417 {
418 if ( strcmp( node->Value(), _value ) == 0 )
419 return node;
420 }
421 return 0;
422}
423
424
425const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const

Callers 7

IterateChildrenMethod · 0.45
FirstChildElementMethod · 0.45
NextSiblingElementMethod · 0.45
PrintMethod · 0.45
CopyToMethod · 0.45
AcceptMethod · 0.45
ChildMethod · 0.45

Calls 1

ValueMethod · 0.45

Tested by

no test coverage detected