Home | History | Annotate | Download | only in Tooling

Lines Matching refs:Line

16   Comment(const std::string &Message, unsigned Line, unsigned Col)
17 : Message(Message), Line(Line), Col(Col) { }
20 unsigned Line, Col;
47 EXPECT_TRUE(!Invalid) << "Invalid line number on comment " << C;
103 << Current->Message << "\" at line " << Current->Line << ", column "
108 void Match(const char *Message, unsigned Line, unsigned Col) {
113 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
115 << "\" at line " << Line << ", column " << Col
117 << "\" at line " << C.Line << ", column " << C.Col;
212 "#warning Y // ignored_1\n" // #warning takes whole line as message
214 "#line 1 // visible_3\n"));