Home
last modified time | relevance | path

Searched refs:declRefExpr (Results 1 – 6 of 6) sorted by relevance

/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp435 hasArgument(0, declRefExpr(to(varDecl()))))))); in TEST()
438 hasArgument(0, declRefExpr(to(varDecl()))), in TEST()
443 hasArgument(0, declRefExpr(to(varDecl()))), in TEST()
449 hasArgument(0, declRefExpr(to(varDecl()))), in TEST()
883 has(declRefExpr(to(varDecl(hasName("i")))))); in TEST()
894 hasDescendant(declRefExpr(to(varDecl(hasName("i")))))); in TEST()
1322 declRefExpr(to( in TEST()
1389 cxxMemberCallExpr(on(declRefExpr(to(varDecl(hasName("y")))))); in TEST()
1461 callExpr(hasArgument(0, declRefExpr( in TEST()
1468 callExpr(hasArgument(0, declRefExpr( in TEST()
[all …]
/external/clang/docs/
DLibASTMatchersTutorial.rst360 hasUnaryOperand(declRefExpr())))
369 hasUnaryOperand(declRefExpr(to(varDecl(hasType(isInteger())))))))
378 hasUnaryOperand(declRefExpr(to(
404 hasLHS(declRefExpr(to(varDecl(hasType(isInteger()))))),
441 hasLHS(ignoringParenImpCasts(declRefExpr(
485 hasUnaryOperand(declRefExpr(
489 hasLHS(ignoringParenImpCasts(declRefExpr(
/external/clang/unittests/Tooling/
DRefactoringCallbacksTest.cpp86 declRefExpr(to(varDecl(hasName("a"))))))))), in TEST()
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp161 VariantValue(VariantMatcher::SingleMatcher(declRefExpr())) in TEST()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp159 REGISTER_MATCHER(declRefExpr); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1201 const internal::VariadicDynCastAllOfMatcher<Stmt, DeclRefExpr> declRefExpr; variable