Home | History | Annotate | Download | only in Tooling

Lines Matching refs:Expected

23                      const std::string &Expected,
36 EXPECT_EQ(Expected, Context.getRewrittenText(ID));
41 std::string Expected = "void f() { ; }";
43 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
48 std::string Expected = "#define A void f() { ; }\nA";
50 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
55 std::string Expected = "#define A void f() { int i = 1; }";
57 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
62 std::string Expected = "void f() { int i = 2; }";
64 expectRewritten(Code, Expected, id("id", expr(integerLiteral())),
70 std::string Expected = "void f() { int i = i * 2; }";
72 expectRewritten(Code, Expected,
81 std::string Expected = "bool a; void f() { f(); }";
83 expectRewritten(Code, Expected,
92 std::string Expected = "void f() { }";
94 expectRewritten(Code, Expected,