Lines Matching refs:Current
86 CommentList::const_iterator Current;
92 : Current(Comments.begin()), End(Comments.end()), PP(PP)
95 CommentVerifier(CommentVerifier &&C) : Current(C.Current), End(C.End), PP(C.PP) {
96 C.Current = C.End;
100 if (Current != End) {
101 EXPECT_TRUE(Current == End) << "Unexpected comment \""
102 << Current->Message << "\" at line " << Current->Line << ", column "
103 << Current->Col;
108 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
109 if (Current == End) return;
111 const Comment &C = *Current;
118 ++Current;