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

Method decodeDouble

runtime/3rdparty/jsoncpp/jsoncpp.cpp:898–907  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

896}
897
898bool Reader::decodeDouble(Token &token)
899{
900 Value decoded;
901 if (!decodeDouble(token, decoded))
902 return false;
903 currentValue().swapPayload(decoded);
904 currentValue().setOffsetStart(token.start_ - begin_);
905 currentValue().setOffsetLimit(token.end_ - begin_);
906 return true;
907}
908
909bool Reader::decodeDouble(Token &token, Value &decoded)
910{

Callers

nothing calls this directly

Calls 4

swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80
StringFunction · 0.50

Tested by

no test coverage detected