MCPcopy Create free account
hub / github.com/Samsung/ONE / decodeNumber

Method decodeNumber

runtime/3rdparty/jsoncpp/jsoncpp.cpp:842–851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

840}
841
842bool Reader::decodeNumber(Token &token)
843{
844 Value decoded;
845 if (!decodeNumber(token, decoded))
846 return false;
847 currentValue().swapPayload(decoded);
848 currentValue().setOffsetStart(token.start_ - begin_);
849 currentValue().setOffsetLimit(token.end_ - begin_);
850 return true;
851}
852
853bool Reader::decodeNumber(Token &token, Value &decoded)
854{

Callers

nothing calls this directly

Calls 4

UIntFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80

Tested by

no test coverage detected