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

Method QueryInt64Text

native/thirdpart/tinyxml2/tinyxml2.cpp:1766–1776  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1764
1765
1766XMLError XMLElement::QueryInt64Text(int64_t* ival) const
1767{
1768 if (FirstChild() && FirstChild()->ToText()) {
1769 const char* t = FirstChild()->Value();
1770 if (XMLUtil::ToInt64(t, ival)) {
1771 return XML_SUCCESS;
1772 }
1773 return XML_CAN_NOT_CONVERT_TEXT;
1774 }
1775 return XML_NO_TEXT_NODE;
1776}
1777
1778
1779XMLError XMLElement::QueryUnsigned64Text(uint64_t* ival) const

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected