Lines Matching refs:comments_
331 comments_(0), start_(other.start_), limit_(other.limit_) { in Value()
365 if (other.comments_) { in Value()
366 comments_ = new CommentInfo[numberOfCommentPlacement]; in Value()
368 const CommentInfo& otherComment = other.comments_[comment]; in Value()
370 comments_[comment].setComment(otherComment.comment_); in Value()
404 if (comments_) in ~Value()
405 delete[] comments_; in ~Value()
902 comments_ = 0; in initBasic()
1185 if (!comments_) in setComment()
1186 comments_ = new CommentInfo[numberOfCommentPlacement]; in setComment()
1187 comments_[placement].setComment(comment); in setComment()
1195 return comments_ != 0 && comments_[placement].comment_ != 0; in hasComment()
1200 return comments_[placement].comment_; in getComment()