Searched refs:collectComments (Results 1 – 2 of 2) sorted by relevance
/external/jsoncpp/include/json/ |
D | reader.h | 73 parse(const std::string& document, Value& root, bool collectComments = true); 96 bool collectComments = true); 100 bool parse(std::istream& is, Value& root, bool collectComments = true);
|
/external/jsoncpp/src/lib_json/ |
D | json_reader.cpp | 90 Reader::parse(const std::string& document, Value& root, bool collectComments) { in parse() argument 94 return parse(begin, end, root, collectComments); in parse() 97 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) { in parse() argument 107 return parse(doc, root, collectComments); in parse() 113 bool collectComments) { in parse() argument 115 collectComments = false; in parse() 120 collectComments_ = collectComments; in parse()
|