MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / NextSibling

Method NextSibling

Libraries/tinyxml/tinyxml.cpp:430–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

428
429
430const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
431{
432 const TiXmlNode* node;
433 for ( node = next; node; node = node->next )
434 {
435 if ( strcmp( node->Value(), _value ) == 0 )
436 return node;
437 }
438 return 0;
439}
440
441
442const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const

Callers 15

auto_serializeMethod · 0.45
NextSiblingFunction · 0.45
AcceptMethod · 0.45
DeepCloneMethod · 0.45
ParseDeepMethod · 0.45
DeepCopyMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
IterateChildrenMethod · 0.45

Calls 1

ValueMethod · 0.45

Tested by 1

mainFunction · 0.36