MCPcopy Create free account
hub / github.com/cinder/Cinder / parse

Method parse

src/jsoncpp/jsoncpp.cpp:253–259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

251}
252
253bool
254Reader::parse(const std::string& document, Value& root, bool collectComments) {
255 document_ = document;
256 const char* begin = document_.c_str();
257 const char* end = begin + document_.length();
258 return parse(begin, end, root, collectComments);
259}
260
261bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
262 // std::istream_iterator<char> begin(sin);

Callers 1

jsoncpp.cppFile · 0.45

Calls 11

readValueFunction · 0.85
setCommentMethod · 0.80
isArrayMethod · 0.80
isObjectMethod · 0.80
parseFunction · 0.50
c_strMethod · 0.45
lengthMethod · 0.45
clearMethod · 0.45
emptyMethod · 0.45
popMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected