MCPcopy Create free account
hub / github.com/avast/retdec / QueryIntText

Method QueryIntText

deps/tinyxml2/tinyxml2.cpp:1698–1708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1696
1697
1698XMLError XMLElement::QueryIntText( int* ival ) const
1699{
1700 if ( FirstChild() && FirstChild()->ToText() ) {
1701 const char* t = FirstChild()->Value();
1702 if ( XMLUtil::ToInt( t, ival ) ) {
1703 return XML_SUCCESS;
1704 }
1705 return XML_CAN_NOT_CONVERT_TEXT;
1706 }
1707 return XML_NO_TEXT_NODE;
1708}
1709
1710
1711XMLError XMLElement::QueryUnsignedText( unsigned* uval ) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected