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

Method decodeDouble

external/jsoncpp/jsoncpp.cpp:818–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

816}
817
818bool Reader::decodeDouble(Token &token) {
819 Value decoded;
820 if (!decodeDouble(token, decoded))
821 return false;
822 currentValue().swapPayload(decoded);
823 currentValue().setOffsetStart(token.start_ - begin_);
824 currentValue().setOffsetLimit(token.end_ - begin_);
825 return true;
826}
827
828bool Reader::decodeDouble(Token &token, Value &decoded) {
829 double value = 0;

Callers

nothing calls this directly

Calls 4

fixNumericLocaleInputFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80

Tested by

no test coverage detected