Searched defs:OpCall (Results 1 - 1 of 1) sorted by relevance

/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp1220 StatementMatcher OpCall = cxxOperatorCallExpr(); local
1224 "Y y; bool c = !y;", OpCall));
1231 // "Y *y = new Y;", OpCall));
1234 "void a() {Y *y = new Y; delete y;}", OpCall));
1239 OpCall));
1241 EXPECT_TRUE(notMatches("bool x = true, y = true; bool t = x && y;", OpCall));
1242 EXPECT_TRUE(notMatches("int t = 5 << 2;", OpCall));

Completed in 119 milliseconds