reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
  142       match(findAll(declRefExpr(to(equalsNode(Dec))).bind(NodeID<Expr>::value)),
  156                  findAll(
  287       match(findAll(stmt(anyOf(AsAssignmentLhs, AsIncDecOperand, AsNonConstThis,
  299       match(findAll(expr(anyOf(memberExpr(hasObjectExpression(equalsNode(Exp))),
  310       findAll(arraySubscriptExpr(hasBase(ignoringImpCasts(equalsNode(Exp))))
  319       match(findAll(castExpr(hasSourceExpression(equalsNode(Exp)),
  330       match(findAll(callExpr(callee(namedDecl(
  342       match(findAll(cxxForRangeStmt(
  355       match(findAll(cxxOperatorCallExpr(
  391       findAll(expr(anyOf(callExpr(NonConstRefParam, IsInstantiated, FuncDecl,
tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
   70   auto Matches = match(findAll(stmt(hasDescendant(varDecl(hasType(referenceType())).bind(MatchRef)))),
tools/clang/tools/extra/clang-reorder-fields/ReorderFieldsAction.cpp
  108       match(findAll(memberExpr(hasObjectExpression(cxxThisExpr())).bind("ME")),
tools/clang/tools/extra/clang-tidy/bugprone/BoolPointerImplicitConversionCheck.cpp
   21       ifStmt(hasCondition(findAll(implicitCastExpr(
   48   if (!match(findAll(
   52       !match(findAll(arraySubscriptExpr(hasBase(DeclRef))), *If,
   57       !match(findAll(callExpr(hasAnyArgument(ignoringParenImpCasts(DeclRef)))),
   60       !match(findAll(cxxDeleteExpr(has(ignoringParenImpCasts(expr(DeclRef))))),
tools/clang/tools/extra/clang-tidy/bugprone/UseAfterMoveCheck.cpp
  256     addDeclRefs(match(findAll(DeclRefMatcher), *S->getStmt(), *Context));
  258         findAll(cxxOperatorCallExpr(anyOf(hasOverloadedOperatorName("*"),
  337         match(findAll(ReinitMatcher), *S->getStmt(), *Context);
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp
   51       match(findAll(binaryOperator(
tools/clang/tools/extra/clang-tidy/misc/StaticAssertCheck.cpp
   60           unless(findAll(NonConstexprFunctionCall)))
tools/clang/tools/extra/clang-tidy/utils/DeclRefExprUtils.cpp
   54       findAll(expr(anyOf(cxxMemberCallExpr(ConstMethodCallee, on(DeclRefToVar)),
   65   Matches = match(findAll(callExpr(UsedAsConstRefOrValueArg)), Stmt, Context);
   68       match(findAll(cxxConstructExpr(UsedAsConstRefOrValueArg)), Stmt, Context);
  122       findAll(declRefExpr(to(varDecl(equalsNode(&VarDecl)))).bind("declRef")),
tools/clang/tools/extra/clang-tidy/utils/NamespaceAliaser.cpp
   60         !match(findAll(ConflictMatcher), *Function, Context).empty();
tools/clang/tools/extra/clang-tidy/utils/UsingInserter.cpp
   63       !match(findAll(ConflictingDecl), *Function, Context).empty();
   65       !match(findAll(declRefExpr(to(ConflictingDecl))), *Function, Context)
tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
 2080     recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
 2087     recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
 2095                findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
 2101     recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),