MCPcopy Create free account
hub / github.com/Kitware/CMake / deserialize

Method deserialize

Utilities/cmcppdap/src/rapid_json_serializer.cpp:36–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36bool RapidDeserializer::deserialize(dap::boolean* v) const {
37 if (!json()->IsBool()) {
38 return false;
39 }
40 *v = json()->GetBool();
41 return true;
42}
43
44bool RapidDeserializer::deserialize(dap::integer* v) const {
45 if (json()->IsInt()) {

Callers 6

processRequestMethod · 0.45
processEventMethod · 0.45
processResponseMethod · 0.45
TESTFunction · 0.45
TEST_FFunction · 0.45

Calls 7

booleanClass · 0.85
numberClass · 0.85
integerClass · 0.85
GetBoolMethod · 0.80
reserveMethod · 0.80
GetStringMethod · 0.45
IsNullMethod · 0.45

Tested by 3

TESTFunction · 0.36
TEST_FFunction · 0.36