MCPcopy Create free account
hub / github.com/NanoMichael/MicroTeX / NextSiblingElement

Method NextSiblingElement

src/xml/tinyxml2.cpp:764–773  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

762
763
764const XMLElement* XMLNode::NextSiblingElement( const char* value ) const {
765 for( XMLNode* node=this->_next; node; node = node->_next ) {
766 const XMLElement* element = node->ToElement();
767 if ( element
768 && (!value || XMLUtil::StringEqual( value, node->Value() ))) {
769 return element;
770 }
771 }
772 return 0;
773}
774
775
776const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const {

Callers 9

NextSiblingElementFunction · 0.80
readSymbolsMethod · 0.80
add2mapMethod · 0.80
addFormula2mapMethod · 0.80
processCharElementMethod · 0.80
parseStyleMappingsMethod · 0.80
parseFontDescriptionsMethod · 0.80
parseSymbolMappingsMethod · 0.80

Calls 1

ValueMethod · 0.80

Tested by

no test coverage detected