Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:OpCall

997   StatementMatcher OpCall = operatorCallExpr();
1001 "Y y; bool c = !y;", OpCall));
1008 // "Y *y = new Y;", OpCall));
1011 "void a() {Y *y = new Y; delete y;}", OpCall));
1016 OpCall));
1018 EXPECT_TRUE(notMatches("bool x = true, y = true; bool t = x && y;", OpCall));
1019 EXPECT_TRUE(notMatches("int t = 5 << 2;", OpCall));