Lines Matching refs:setComment
315 root.setComment(commentsBefore_, commentAfter); in parse()
345 currentValue().setComment(commentsBefore_, commentBefore); in readValue()
566 lastValue_->setComment(normalized, placement); in addComment()
1278 root.setComment(commentsBefore_, commentAfter); in parse()
1303 currentValue().setComment(commentsBefore_, commentBefore); in readValue()
1511 lastValue_->setComment(normalized, placement); in addComment()
2589 void Value::CommentInfo::setComment(const char* text, size_t len) { in setComment() function in Json::Value::CommentInfo
2817 comments_[comment].setComment( in Value()
3688 void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { in setComment() function in Json::Value
3695 comments_[placement].setComment(comment, len); in setComment()
3698 void Value::setComment(const char* comment, CommentPlacement placement) { in setComment() function in Json::Value
3699 setComment(comment, strlen(comment), placement); in setComment()
3702 void Value::setComment(const std::string& comment, CommentPlacement placement) { in setComment() function in Json::Value
3703 setComment(comment.c_str(), comment.length(), placement); in setComment()