MCPcopy Create free account
hub / github.com/Illumina/hap.py / parse

Method parse

external/jsoncpp/jsoncpp.cpp:266–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264}
265
266bool
267Reader::parse(const std::string &document, Value &root, bool collectComments) {
268 document_ = document;
269 const char *begin = document_.c_str();
270 const char *end = begin + document_.length();
271 return parse(begin, end, root, collectComments);
272}
273
274bool Reader::parse(std::istream &sin, Value &root, bool collectComments) {
275 // std::istream_iterator<char> begin(sin);

Callers 1

jsoncpp.cppFile · 0.80

Calls 6

c_strMethod · 0.80
clearMethod · 0.80
emptyMethod · 0.80
setCommentMethod · 0.80
isArrayMethod · 0.80
isObjectMethod · 0.80

Tested by

no test coverage detected