Home | History | Annotate | Download | only in lib_json

Lines Matching defs:setComment

144 void Value::CommentInfo::setComment(const char* text) {
150 "in Json::Value::setComment(): Comments must start with /");
370 comments_[comment].setComment(otherComment.comment_);
1184 void Value::setComment(const char* comment, CommentPlacement placement) {
1187 comments_[placement].setComment(comment);
1190 void Value::setComment(const std::string& comment, CommentPlacement placement) {
1191 setComment(comment.c_str(), placement);