MCPcopy Create free account
hub / github.com/Kitware/VTK / parse

Method parse

ThirdParty/jsoncpp/vtkjsoncpp/jsoncpp.cpp:330–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

328Reader::Reader(const Features& features) : features_(features) {}
329
330bool Reader::parse(const std::string& document, Value& root,
331 bool collectComments) {
332 document_.assign(document.begin(), document.end());
333 const char* begin = document_.c_str();
334 const char* end = begin + document_.length();
335 return parse(begin, end, root, collectComments);
336}
337
338bool Reader::parse(std::istream& is, Value& root, bool collectComments) {
339 // std::istream_iterator<char> begin(is);

Callers 8

CanParseStringMethod · 0.45
testStatesFunction · 0.45
testBlobsFunction · 0.45
webglRenderer.jsFile · 0.45
parseMethod · 0.45
parseFromStreamFunction · 0.45
fix_annotationsFunction · 0.45
server.jsFile · 0.45

Calls 15

popMethod · 0.80
setCommentMethod · 0.80
isArrayMethod · 0.80
isObjectMethod · 0.80
parseFunction · 0.50
assignMethod · 0.45
beginMethod · 0.45
endMethod · 0.45
c_strMethod · 0.45
lengthMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected