MCPcopy Create free account
hub / github.com/OpenMW/openmw / NextSibling

Method NextSibling

extern/oics/tinyxml/tinyxml.cpp:408–417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

406
407
408const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
409{
410 const TiXmlNode* node;
411 for ( node = next; node; node = node->next )
412 {
413 if ( strcmp( node->Value(), _value ) == 0 )
414 return node;
415 }
416 return 0;
417}
418
419
420const 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