MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / QueryBoolText

Method QueryBoolText

native/thirdpart/tinyxml2/tinyxml2.cpp:1792–1802  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1790
1791
1792XMLError XMLElement::QueryBoolText( bool* bval ) const
1793{
1794 if ( FirstChild() && FirstChild()->ToText() ) {
1795 const char* t = FirstChild()->Value();
1796 if ( XMLUtil::ToBool( t, bval ) ) {
1797 return XML_SUCCESS;
1798 }
1799 return XML_CAN_NOT_CONVERT_TEXT;
1800 }
1801 return XML_NO_TEXT_NODE;
1802}
1803
1804
1805XMLError XMLElement::QueryDoubleText( double* dval ) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected