MCPcopy Create free account
hub / github.com/SOUI2/soui / parse

Method parse

third-part/jsoncpp/src/lib_json/json_reader.cpp:104–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104bool
105Reader::parse(const std::string& document, Value& root, bool collectComments) {
106 document_.assign(document.begin(), document.end());
107 const char* begin = document_.c_str();
108 const char* end = begin + document_.length();
109 return parse(begin, end, root, collectComments);
110}
111
112bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
113 // std::istream_iterator<char> begin(sin);

Callers 4

parseMethod · 0.45
parseFromStreamFunction · 0.45
parseAndSaveValueTreeFunction · 0.45
JSONTEST_FIXTUREFunction · 0.45

Calls 13

setCommentMethod · 0.80
isObjectMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
c_strMethod · 0.45
lengthMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45
clearMethod · 0.45
emptyMethod · 0.45
popMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected