Searched refs:callExpr (Results 1 - 5 of 5) sorted by relevance

/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp48 EXPECT_TRUE(Finder.addDynamicMatcher(callExpr(), nullptr));
412 callExpr(allOf(callee(functionDecl(hasName("f"))),
415 callExpr(allOf(callee(functionDecl(hasName("f"))),
420 callExpr(allOf(callee(functionDecl(hasName("f"))),
426 callExpr(allOf(callee(functionDecl(hasName("f"))),
849 callExpr(callee(methodDecl(hasName("x")))).bind("x");
963 StatementMatcher MethodX = callExpr(hasDeclaration(methodDecl(hasName("x"))));
1273 callExpr(hasArgument(0, declRefExpr(
1280 callExpr(hasArgument(0, declRefExpr(
1312 StatementMatcher CallMethodX = callExpr(calle
[all...]
/external/chromium_org/tools/clang/rewrite_scoped_refptr/
H A DRewriteScopedRefptr.cpp378 callExpr(callee(is_logging_helper),
389 callExpr(callee(is_gtest_helper),
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp115 REGISTER_MATCHER(callExpr);
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h650 const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr; member in namespace:clang::ast_matchers
1791 /// Example matches y.x() (matcher = callExpr(on(hasType(recordDecl(hasName("Y"))))))
1813 /// callExpr(callee(expr()))
1832 /// Example matches y.x() (matcher = callExpr(callee(methodDecl(hasName("x")))))
1839 return callExpr(hasDeclaration(InnerMatcher)).matches(Node, Finder, Builder);
1904 /// callExpr(on(hasType(asString("class Y *"))))
1914 /// (matcher = callExpr(on(hasType(pointsTo(recordDecl(hasName("Y")))))))
2061 /// Example matches x (matcher = varDecl(hasInitializer(callExpr())))
2106 /// Example matches f(0, 0) (matcher = callExpr(argumentCountIs(2)))
2121 /// (matcher = callExpr(hasArgumen
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1215 Expr *callExpr = Res.getAs<Expr>(); local
1217 dyn_cast_or_null<CXXOperatorCallExpr>(callExpr))

Completed in 230 milliseconds