Bug Summary

File:build/source/clang-tools-extra/clang-tidy/bugprone/StandaloneEmptyCheck.cpp
Warning:line 203, column 12
Called C++ object pointer is null

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name StandaloneEmptyCheck.cpp -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -mframe-pointer=none -relaxed-aliasing -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/build/source/build-llvm/tools/clang/stage2-bins -resource-dir /usr/lib/llvm-16/lib/clang/16 -I tools/clang/tools/extra/clang-tidy/bugprone -I /build/source/clang-tools-extra/clang-tidy/bugprone -I tools/clang/tools/extra/clang-tidy -I /build/source/clang/include -I tools/clang/include -I include -I /build/source/llvm/include -D CLANG_REPOSITORY_STRING="++20230124111854+2a539ee17d8a-1~exp1~20230124232010.1062" -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -D _FORTIFY_SOURCE=2 -D NDEBUG -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward -internal-isystem /usr/lib/llvm-16/lib/clang/16/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fmacro-prefix-map=/build/source/build-llvm/tools/clang/stage2-bins=build-llvm/tools/clang/stage2-bins -fmacro-prefix-map=/build/source/= -fcoverage-prefix-map=/build/source/build-llvm/tools/clang/stage2-bins=build-llvm/tools/clang/stage2-bins -fcoverage-prefix-map=/build/source/= -source-date-epoch 1674602410 -O2 -Wno-unused-command-line-argument -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wno-comment -Wno-misleading-indentation -std=c++17 -fdeprecated-macro -fdebug-compilation-dir=/build/source/build-llvm/tools/clang/stage2-bins -fdebug-prefix-map=/build/source/build-llvm/tools/clang/stage2-bins=build-llvm/tools/clang/stage2-bins -fdebug-prefix-map=/build/source/= -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 2 -fgnuc-version=4.2.1 -fcolor-diagnostics -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/scan-build-2023-01-25-024556-16494-1 -x c++ /build/source/clang-tools-extra/clang-tidy/bugprone/StandaloneEmptyCheck.cpp

/build/source/clang-tools-extra/clang-tidy/bugprone/StandaloneEmptyCheck.cpp

1//===--- StandaloneEmptyCheck.cpp - clang-tidy ----------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "StandaloneEmptyCheck.h"
10#include "clang/AST/ASTContext.h"
11#include "clang/AST/Decl.h"
12#include "clang/AST/DeclBase.h"
13#include "clang/AST/DeclCXX.h"
14#include "clang/AST/Expr.h"
15#include "clang/AST/ExprCXX.h"
16#include "clang/AST/Stmt.h"
17#include "clang/AST/Type.h"
18#include "clang/ASTMatchers/ASTMatchFinder.h"
19#include "clang/ASTMatchers/ASTMatchers.h"
20#include "clang/Basic/Diagnostic.h"
21#include "clang/Basic/SourceLocation.h"
22#include "clang/Lex/Lexer.h"
23#include "llvm/ADT/STLExtras.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/Support/Casting.h"
26
27namespace clang::tidy::bugprone {
28
29using ast_matchers::BoundNodes;
30using ast_matchers::callee;
31using ast_matchers::callExpr;
32using ast_matchers::cxxMemberCallExpr;
33using ast_matchers::cxxMethodDecl;
34using ast_matchers::expr;
35using ast_matchers::functionDecl;
36using ast_matchers::hasName;
37using ast_matchers::hasParent;
38using ast_matchers::ignoringImplicit;
39using ast_matchers::ignoringParenImpCasts;
40using ast_matchers::MatchFinder;
41using ast_matchers::optionally;
42using ast_matchers::returns;
43using ast_matchers::stmt;
44using ast_matchers::stmtExpr;
45using ast_matchers::unless;
46using ast_matchers::voidType;
47
48const Expr *getCondition(const BoundNodes &Nodes, const StringRef NodeId) {
49 const auto *If = Nodes.getNodeAs<IfStmt>(NodeId);
50 if (If != nullptr)
51 return If->getCond();
52
53 const auto *For = Nodes.getNodeAs<ForStmt>(NodeId);
54 if (For != nullptr)
55 return For->getCond();
56
57 const auto *While = Nodes.getNodeAs<WhileStmt>(NodeId);
58 if (While != nullptr)
59 return While->getCond();
60
61 const auto *Do = Nodes.getNodeAs<DoStmt>(NodeId);
62 if (Do != nullptr)
63 return Do->getCond();
64
65 const auto *Switch = Nodes.getNodeAs<SwitchStmt>(NodeId);
66 if (Switch != nullptr)
67 return Switch->getCond();
68
69 return nullptr;
70}
71
72void StandaloneEmptyCheck::registerMatchers(ast_matchers::MatchFinder *Finder) {
73 const auto NonMemberMatcher = expr(ignoringImplicit(ignoringParenImpCasts(
74 callExpr(
75 hasParent(stmt(optionally(hasParent(stmtExpr().bind("stexpr"))))
76 .bind("parent")),
77 callee(functionDecl(hasName("empty"), unless(returns(voidType())))))
78 .bind("empty"))));
79 const auto MemberMatcher =
80 expr(ignoringImplicit(ignoringParenImpCasts(cxxMemberCallExpr(
81 hasParent(stmt(optionally(hasParent(stmtExpr().bind("stexpr"))))
82 .bind("parent")),
83 callee(cxxMethodDecl(hasName("empty"),
84 unless(returns(voidType()))))))))
85 .bind("empty");
86
87 Finder->addMatcher(MemberMatcher, this);
88 Finder->addMatcher(NonMemberMatcher, this);
89}
90
91void StandaloneEmptyCheck::check(const MatchFinder::MatchResult &Result) {
92 // Skip if the parent node is Expr.
93 if (Result.Nodes.getNodeAs<Expr>("parent"))
1
Taking false branch
94 return;
95
96 const auto PParentStmtExpr = Result.Nodes.getNodeAs<Expr>("stexpr");
2
Calling 'BoundNodes::getNodeAs'
16
Returning from 'BoundNodes::getNodeAs'
97 const auto ParentCompStmt = Result.Nodes.getNodeAs<CompoundStmt>("parent");
98 const auto *ParentCond = getCondition(Result.Nodes, "parent");
99 const auto *ParentReturnStmt = Result.Nodes.getNodeAs<ReturnStmt>("parent");
17
Calling 'BoundNodes::getNodeAs'
23
Returning from 'BoundNodes::getNodeAs'
100
101 if (const auto *MemberCall
30.1
'MemberCall' is null
30.1
'MemberCall' is null
30.1
'MemberCall' is null
30.1
'MemberCall' is null
=
31
Taking false branch
102 Result.Nodes.getNodeAs<CXXMemberCallExpr>("empty")) {
24
Calling 'BoundNodes::getNodeAs'
30
Returning from 'BoundNodes::getNodeAs'
103 // Skip if it's a condition of the parent statement.
104 if (ParentCond == MemberCall->getExprStmt())
105 return;
106 // Skip if it's the last statement in the GNU extension
107 // statement expression.
108 if (PParentStmtExpr && ParentCompStmt &&
109 ParentCompStmt->body_back() == MemberCall->getExprStmt())
110 return;
111 // Skip if it's a return statement
112 if (ParentReturnStmt)
113 return;
114
115 SourceLocation MemberLoc = MemberCall->getBeginLoc();
116 SourceLocation ReplacementLoc = MemberCall->getExprLoc();
117 SourceRange ReplacementRange = SourceRange(ReplacementLoc, ReplacementLoc);
118
119 ASTContext &Context = MemberCall->getRecordDecl()->getASTContext();
120 DeclarationName Name =
121 Context.DeclarationNames.getIdentifier(&Context.Idents.get("clear"));
122
123 auto Candidates = MemberCall->getRecordDecl()->lookupDependentName(
124 Name, [](const NamedDecl *ND) {
125 return isa<CXXMethodDecl>(ND) &&
126 llvm::cast<CXXMethodDecl>(ND)->getMinRequiredArguments() ==
127 0 &&
128 !llvm::cast<CXXMethodDecl>(ND)->isConst();
129 });
130
131 bool HasClear = !Candidates.empty();
132 if (HasClear) {
133 const CXXMethodDecl *Clear = llvm::cast<CXXMethodDecl>(Candidates.at(0));
134 QualType RangeType = MemberCall->getImplicitObjectArgument()->getType();
135 bool QualifierIncompatible =
136 (!Clear->isVolatile() && RangeType.isVolatileQualified()) ||
137 RangeType.isConstQualified();
138 if (!QualifierIncompatible) {
139 diag(MemberLoc,
140 "ignoring the result of 'empty()'; did you mean 'clear()'? ")
141 << FixItHint::CreateReplacement(ReplacementRange, "clear");
142 return;
143 }
144 }
145
146 diag(MemberLoc, "ignoring the result of 'empty()'");
147
148 } else if (const auto *NonMemberCall
46.1
'NonMemberCall' is non-null
46.1
'NonMemberCall' is non-null
46.1
'NonMemberCall' is non-null
46.1
'NonMemberCall' is non-null
=
47
Taking true branch
149 Result.Nodes.getNodeAs<CallExpr>("empty")) {
32
Calling 'BoundNodes::getNodeAs'
46
Returning from 'BoundNodes::getNodeAs'
150 if (ParentCond == NonMemberCall->getExprStmt())
48
Assuming the condition is false
151 return;
152 if (PParentStmtExpr
48.1
'PParentStmtExpr' is null
48.1
'PParentStmtExpr' is null
48.1
'PParentStmtExpr' is null
48.1
'PParentStmtExpr' is null
&& ParentCompStmt &&
153 ParentCompStmt->body_back() == NonMemberCall->getExprStmt())
154 return;
155 if (ParentReturnStmt
48.2
'ParentReturnStmt' is null
48.2
'ParentReturnStmt' is null
48.2
'ParentReturnStmt' is null
48.2
'ParentReturnStmt' is null
)
49
Taking false branch
156 return;
157
158 SourceLocation NonMemberLoc = NonMemberCall->getExprLoc();
159 SourceLocation NonMemberEndLoc = NonMemberCall->getEndLoc();
160
161 const Expr *Arg = NonMemberCall->getArg(0);
162 CXXRecordDecl *ArgRecordDecl = Arg->getType()->getAsCXXRecordDecl();
163 if (ArgRecordDecl == nullptr)
50
Assuming the condition is false
51
Taking false branch
164 return;
165
166 ASTContext &Context = ArgRecordDecl->getASTContext();
167 DeclarationName Name =
168 Context.DeclarationNames.getIdentifier(&Context.Idents.get("clear"));
169
170 auto Candidates =
171 ArgRecordDecl->lookupDependentName(Name, [](const NamedDecl *ND) {
172 return isa<CXXMethodDecl>(ND) &&
173 llvm::cast<CXXMethodDecl>(ND)->getMinRequiredArguments() ==
174 0 &&
175 !llvm::cast<CXXMethodDecl>(ND)->isConst();
176 });
177
178 bool HasClear = !Candidates.empty();
52
Assuming the condition is false
179
180 if (HasClear
52.1
'HasClear' is false
52.1
'HasClear' is false
52.1
'HasClear' is false
52.1
'HasClear' is false
) {
53
Taking false branch
181 const CXXMethodDecl *Clear = llvm::cast<CXXMethodDecl>(Candidates.at(0));
182 bool QualifierIncompatible =
183 (!Clear->isVolatile() && Arg->getType().isVolatileQualified()) ||
184 Arg->getType().isConstQualified();
185 if (!QualifierIncompatible) {
186 std::string ReplacementText =
187 std::string(Lexer::getSourceText(
188 CharSourceRange::getTokenRange(Arg->getSourceRange()),
189 *Result.SourceManager, getLangOpts())) +
190 ".clear()";
191 SourceRange ReplacementRange =
192 SourceRange(NonMemberLoc, NonMemberEndLoc);
193 diag(NonMemberLoc,
194 "ignoring the result of '%0'; did you mean 'clear()'?")
195 << llvm::dyn_cast<NamedDecl>(NonMemberCall->getCalleeDecl())
196 ->getQualifiedNameAsString()
197 << FixItHint::CreateReplacement(ReplacementRange, ReplacementText);
198 return;
199 }
200 }
201
202 diag(NonMemberLoc, "ignoring the result of '%0'")
203 << llvm::dyn_cast<NamedDecl>(NonMemberCall->getCalleeDecl())
54
Assuming the object is not a 'CastReturnType'
55
Called C++ object pointer is null
204 ->getQualifiedNameAsString();
205 }
206}
207
208} // namespace clang::tidy::bugprone

/build/source/clang/include/clang/ASTMatchers/ASTMatchers.h

1//===- ASTMatchers.h - Structural query framework ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements matchers to be used together with the MatchFinder to
10// match AST nodes.
11//
12// Matchers are created by generator functions, which can be combined in
13// a functional in-language DSL to express queries over the C++ AST.
14//
15// For example, to match a class with a certain name, one would call:
16// cxxRecordDecl(hasName("MyClass"))
17// which returns a matcher that can be used to find all AST nodes that declare
18// a class named 'MyClass'.
19//
20// For more complicated match expressions we're often interested in accessing
21// multiple parts of the matched AST nodes once a match is found. In that case,
22// call `.bind("name")` on match expressions that match the nodes you want to
23// access.
24//
25// For example, when we're interested in child classes of a certain class, we
26// would write:
27// cxxRecordDecl(hasName("MyClass"), has(recordDecl().bind("child")))
28// When the match is found via the MatchFinder, a user provided callback will
29// be called with a BoundNodes instance that contains a mapping from the
30// strings that we provided for the `.bind()` calls to the nodes that were
31// matched.
32// In the given example, each time our matcher finds a match we get a callback
33// where "child" is bound to the RecordDecl node of the matching child
34// class declaration.
35//
36// See ASTMatchersInternal.h for a more in-depth explanation of the
37// implementation details of the matcher framework.
38//
39// See ASTMatchFinder.h for how to use the generated matchers to run over
40// an AST.
41//
42//===----------------------------------------------------------------------===//
43
44#ifndef LLVM_CLANG_ASTMATCHERS_ASTMATCHERS_H
45#define LLVM_CLANG_ASTMATCHERS_ASTMATCHERS_H
46
47#include "clang/AST/ASTContext.h"
48#include "clang/AST/ASTTypeTraits.h"
49#include "clang/AST/Attr.h"
50#include "clang/AST/CXXInheritance.h"
51#include "clang/AST/Decl.h"
52#include "clang/AST/DeclCXX.h"
53#include "clang/AST/DeclFriend.h"
54#include "clang/AST/DeclObjC.h"
55#include "clang/AST/DeclTemplate.h"
56#include "clang/AST/Expr.h"
57#include "clang/AST/ExprCXX.h"
58#include "clang/AST/ExprObjC.h"
59#include "clang/AST/LambdaCapture.h"
60#include "clang/AST/NestedNameSpecifier.h"
61#include "clang/AST/OpenMPClause.h"
62#include "clang/AST/OperationKinds.h"
63#include "clang/AST/ParentMapContext.h"
64#include "clang/AST/Stmt.h"
65#include "clang/AST/StmtCXX.h"
66#include "clang/AST/StmtObjC.h"
67#include "clang/AST/StmtOpenMP.h"
68#include "clang/AST/TemplateBase.h"
69#include "clang/AST/TemplateName.h"
70#include "clang/AST/Type.h"
71#include "clang/AST/TypeLoc.h"
72#include "clang/ASTMatchers/ASTMatchersInternal.h"
73#include "clang/ASTMatchers/ASTMatchersMacros.h"
74#include "clang/Basic/AttrKinds.h"
75#include "clang/Basic/ExceptionSpecificationType.h"
76#include "clang/Basic/FileManager.h"
77#include "clang/Basic/IdentifierTable.h"
78#include "clang/Basic/LLVM.h"
79#include "clang/Basic/SourceManager.h"
80#include "clang/Basic/Specifiers.h"
81#include "clang/Basic/TypeTraits.h"
82#include "llvm/ADT/ArrayRef.h"
83#include "llvm/ADT/SmallVector.h"
84#include "llvm/ADT/StringRef.h"
85#include "llvm/Support/Casting.h"
86#include "llvm/Support/Compiler.h"
87#include "llvm/Support/ErrorHandling.h"
88#include "llvm/Support/Regex.h"
89#include <cassert>
90#include <cstddef>
91#include <iterator>
92#include <limits>
93#include <optional>
94#include <string>
95#include <utility>
96#include <vector>
97
98namespace clang {
99namespace ast_matchers {
100
101/// Maps string IDs to AST nodes matched by parts of a matcher.
102///
103/// The bound nodes are generated by calling \c bind("id") on the node matchers
104/// of the nodes we want to access later.
105///
106/// The instances of BoundNodes are created by \c MatchFinder when the user's
107/// callbacks are executed every time a match is found.
108class BoundNodes {
109public:
110 /// Returns the AST node bound to \c ID.
111 ///
112 /// Returns NULL if there was no node bound to \c ID or if there is a node but
113 /// it cannot be converted to the specified type.
114 template <typename T>
115 const T *getNodeAs(StringRef ID) const {
116 return MyBoundNodes.getNodeAs<T>(ID);
3
Calling 'BoundNodesMap::getNodeAs'
14
Returning from 'BoundNodesMap::getNodeAs'
15
Returning null pointer, which participates in a condition later
18
Calling 'BoundNodesMap::getNodeAs'
21
Returning from 'BoundNodesMap::getNodeAs'
22
Returning null pointer, which participates in a condition later
25
Calling 'BoundNodesMap::getNodeAs'
28
Returning from 'BoundNodesMap::getNodeAs'
29
Returning null pointer, which participates in a condition later
33
Calling 'BoundNodesMap::getNodeAs'
44
Returning from 'BoundNodesMap::getNodeAs'
45
Returning pointer, which participates in a condition later
117 }
118
119 /// Type of mapping from binding identifiers to bound nodes. This type
120 /// is an associative container with a key type of \c std::string and a value
121 /// type of \c clang::DynTypedNode
122 using IDToNodeMap = internal::BoundNodesMap::IDToNodeMap;
123
124 /// Retrieve mapping from binding identifiers to bound nodes.
125 const IDToNodeMap &getMap() const {
126 return MyBoundNodes.getMap();
127 }
128
129private:
130 friend class internal::BoundNodesTreeBuilder;
131
132 /// Create BoundNodes from a pre-filled map of bindings.
133 BoundNodes(internal::BoundNodesMap &MyBoundNodes)
134 : MyBoundNodes(MyBoundNodes) {}
135
136 internal::BoundNodesMap MyBoundNodes;
137};
138
139/// Types of matchers for the top-level classes in the AST class
140/// hierarchy.
141/// @{
142using DeclarationMatcher = internal::Matcher<Decl>;
143using StatementMatcher = internal::Matcher<Stmt>;
144using TypeMatcher = internal::Matcher<QualType>;
145using TypeLocMatcher = internal::Matcher<TypeLoc>;
146using NestedNameSpecifierMatcher = internal::Matcher<NestedNameSpecifier>;
147using NestedNameSpecifierLocMatcher = internal::Matcher<NestedNameSpecifierLoc>;
148using CXXBaseSpecifierMatcher = internal::Matcher<CXXBaseSpecifier>;
149using CXXCtorInitializerMatcher = internal::Matcher<CXXCtorInitializer>;
150using TemplateArgumentMatcher = internal::Matcher<TemplateArgument>;
151using TemplateArgumentLocMatcher = internal::Matcher<TemplateArgumentLoc>;
152using LambdaCaptureMatcher = internal::Matcher<LambdaCapture>;
153using AttrMatcher = internal::Matcher<Attr>;
154/// @}
155
156/// Matches any node.
157///
158/// Useful when another matcher requires a child matcher, but there's no
159/// additional constraint. This will often be used with an explicit conversion
160/// to an \c internal::Matcher<> type such as \c TypeMatcher.
161///
162/// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
163/// \code
164/// "int* p" and "void f()" in
165/// int* p;
166/// void f();
167/// \endcode
168///
169/// Usable as: Any Matcher
170inline internal::TrueMatcher anything() { return internal::TrueMatcher(); }
171
172/// Matches the top declaration context.
173///
174/// Given
175/// \code
176/// int X;
177/// namespace NS {
178/// int Y;
179/// } // namespace NS
180/// \endcode
181/// decl(hasDeclContext(translationUnitDecl()))
182/// matches "int X", but not "int Y".
183extern const internal::VariadicDynCastAllOfMatcher<Decl, TranslationUnitDecl>
184 translationUnitDecl;
185
186/// Matches typedef declarations.
187///
188/// Given
189/// \code
190/// typedef int X;
191/// using Y = int;
192/// \endcode
193/// typedefDecl()
194/// matches "typedef int X", but not "using Y = int"
195extern const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl>
196 typedefDecl;
197
198/// Matches typedef name declarations.
199///
200/// Given
201/// \code
202/// typedef int X;
203/// using Y = int;
204/// \endcode
205/// typedefNameDecl()
206/// matches "typedef int X" and "using Y = int"
207extern const internal::VariadicDynCastAllOfMatcher<Decl, TypedefNameDecl>
208 typedefNameDecl;
209
210/// Matches type alias declarations.
211///
212/// Given
213/// \code
214/// typedef int X;
215/// using Y = int;
216/// \endcode
217/// typeAliasDecl()
218/// matches "using Y = int", but not "typedef int X"
219extern const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl>
220 typeAliasDecl;
221
222/// Matches type alias template declarations.
223///
224/// typeAliasTemplateDecl() matches
225/// \code
226/// template <typename T>
227/// using Y = X<T>;
228/// \endcode
229extern const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasTemplateDecl>
230 typeAliasTemplateDecl;
231
232/// Matches AST nodes that were expanded within the main-file.
233///
234/// Example matches X but not Y
235/// (matcher = cxxRecordDecl(isExpansionInMainFile())
236/// \code
237/// #include <Y.h>
238/// class X {};
239/// \endcode
240/// Y.h:
241/// \code
242/// class Y {};
243/// \endcode
244///
245/// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
246AST_POLYMORPHIC_MATCHER(isExpansionInMainFile,namespace internal { template <typename NodeType> class
matcher_isExpansionInMainFileMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExpansionInMainFileMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)> isExpansionInMainFile() { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInMainFileMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)>(); } template <typename NodeType> bool
internal::matcher_isExpansionInMainFileMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
247 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc))namespace internal { template <typename NodeType> class
matcher_isExpansionInMainFileMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExpansionInMainFileMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)> isExpansionInMainFile() { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInMainFileMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)>(); } template <typename NodeType> bool
internal::matcher_isExpansionInMainFileMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
248 auto &SourceManager = Finder->getASTContext().getSourceManager();
249 return SourceManager.isInMainFile(
250 SourceManager.getExpansionLoc(Node.getBeginLoc()));
251}
252
253/// Matches AST nodes that were expanded within system-header-files.
254///
255/// Example matches Y but not X
256/// (matcher = cxxRecordDecl(isExpansionInSystemHeader())
257/// \code
258/// #include <SystemHeader.h>
259/// class X {};
260/// \endcode
261/// SystemHeader.h:
262/// \code
263/// class Y {};
264/// \endcode
265///
266/// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
267AST_POLYMORPHIC_MATCHER(isExpansionInSystemHeader,namespace internal { template <typename NodeType> class
matcher_isExpansionInSystemHeaderMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExpansionInSystemHeaderMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)> isExpansionInSystemHeader() { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInSystemHeaderMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)>(); } template <typename NodeType> bool
internal::matcher_isExpansionInSystemHeaderMatcher<NodeType
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
268 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc))namespace internal { template <typename NodeType> class
matcher_isExpansionInSystemHeaderMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExpansionInSystemHeaderMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)> isExpansionInSystemHeader() { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInSystemHeaderMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>)>(); } template <typename NodeType> bool
internal::matcher_isExpansionInSystemHeaderMatcher<NodeType
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
269 auto &SourceManager = Finder->getASTContext().getSourceManager();
270 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc());
271 if (ExpansionLoc.isInvalid()) {
272 return false;
273 }
274 return SourceManager.isInSystemHeader(ExpansionLoc);
275}
276
277/// Matches AST nodes that were expanded within files whose name is
278/// partially matching a given regex.
279///
280/// Example matches Y but not X
281/// (matcher = cxxRecordDecl(isExpansionInFileMatching("AST.*"))
282/// \code
283/// #include "ASTMatcher.h"
284/// class X {};
285/// \endcode
286/// ASTMatcher.h:
287/// \code
288/// class Y {};
289/// \endcode
290///
291/// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
292AST_POLYMORPHIC_MATCHER_REGEX(isExpansionInFileMatching,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpansionInFileMatching0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: explicit matcher_isExpansionInFileMatching0Matcher
( std::shared_ptr<llvm::Regex> RE) : RegExp(std::move(RE
)) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: std
::shared_ptr<llvm::Regex> RegExp; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp, llvm::Regex::RegexFlags RegexFlags) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isExpansionInFileMatching0Matcher, void(::
clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>>( ::clang::ast_matchers
::internal::createAndVerifyRegex( RegExp, RegexFlags, "isExpansionInFileMatching"
)); } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpansionInFileMatching0Matcher, void
(::clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp) { return isExpansionInFileMatching(RegExp
, llvm::Regex::NoFlags); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> ( &
isExpansionInFileMatching_Type0Flags)( llvm::StringRef RegExp
, llvm::Regex::RegexFlags RegexFlags); typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> (&
isExpansionInFileMatching_Type0)( llvm::StringRef RegExp); template
<typename NodeType, typename ParamT> bool internal:: matcher_isExpansionInFileMatching0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
293 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpansionInFileMatching0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: explicit matcher_isExpansionInFileMatching0Matcher
( std::shared_ptr<llvm::Regex> RE) : RegExp(std::move(RE
)) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: std
::shared_ptr<llvm::Regex> RegExp; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp, llvm::Regex::RegexFlags RegexFlags) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isExpansionInFileMatching0Matcher, void(::
clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>>( ::clang::ast_matchers
::internal::createAndVerifyRegex( RegExp, RegexFlags, "isExpansionInFileMatching"
)); } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpansionInFileMatching0Matcher, void
(::clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp) { return isExpansionInFileMatching(RegExp
, llvm::Regex::NoFlags); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> ( &
isExpansionInFileMatching_Type0Flags)( llvm::StringRef RegExp
, llvm::Regex::RegexFlags RegexFlags); typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> (&
isExpansionInFileMatching_Type0)( llvm::StringRef RegExp); template
<typename NodeType, typename ParamT> bool internal:: matcher_isExpansionInFileMatching0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
294 TypeLoc),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpansionInFileMatching0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: explicit matcher_isExpansionInFileMatching0Matcher
( std::shared_ptr<llvm::Regex> RE) : RegExp(std::move(RE
)) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: std
::shared_ptr<llvm::Regex> RegExp; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp, llvm::Regex::RegexFlags RegexFlags) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isExpansionInFileMatching0Matcher, void(::
clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>>( ::clang::ast_matchers
::internal::createAndVerifyRegex( RegExp, RegexFlags, "isExpansionInFileMatching"
)); } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpansionInFileMatching0Matcher, void
(::clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp) { return isExpansionInFileMatching(RegExp
, llvm::Regex::NoFlags); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> ( &
isExpansionInFileMatching_Type0Flags)( llvm::StringRef RegExp
, llvm::Regex::RegexFlags RegexFlags); typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> (&
isExpansionInFileMatching_Type0)( llvm::StringRef RegExp); template
<typename NodeType, typename ParamT> bool internal:: matcher_isExpansionInFileMatching0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
295 RegExp)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpansionInFileMatching0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: explicit matcher_isExpansionInFileMatching0Matcher
( std::shared_ptr<llvm::Regex> RE) : RegExp(std::move(RE
)) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: std
::shared_ptr<llvm::Regex> RegExp; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp, llvm::Regex::RegexFlags RegexFlags) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isExpansionInFileMatching0Matcher, void(::
clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>>( ::clang::ast_matchers
::internal::createAndVerifyRegex( RegExp, RegexFlags, "isExpansionInFileMatching"
)); } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpansionInFileMatching0Matcher, void
(::clang::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc
>), std::shared_ptr<llvm::Regex>> isExpansionInFileMatching
(llvm::StringRef RegExp) { return isExpansionInFileMatching(RegExp
, llvm::Regex::NoFlags); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> ( &
isExpansionInFileMatching_Type0Flags)( llvm::StringRef RegExp
, llvm::Regex::RegexFlags RegexFlags); typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpansionInFileMatching0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::shared_ptr<llvm::Regex>> (&
isExpansionInFileMatching_Type0)( llvm::StringRef RegExp); template
<typename NodeType, typename ParamT> bool internal:: matcher_isExpansionInFileMatching0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
296 auto &SourceManager = Finder->getASTContext().getSourceManager();
297 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc());
298 if (ExpansionLoc.isInvalid()) {
299 return false;
300 }
301 auto FileEntry =
302 SourceManager.getFileEntryForID(SourceManager.getFileID(ExpansionLoc));
303 if (!FileEntry) {
304 return false;
305 }
306
307 auto Filename = FileEntry->getName();
308 return RegExp->match(Filename);
309}
310
311/// Matches statements that are (transitively) expanded from the named macro.
312/// Does not match if only part of the statement is expanded from that macro or
313/// if different parts of the statement are expanded from different
314/// appearances of the macro.
315AST_POLYMORPHIC_MATCHER_P(isExpandedFromMacro,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpandedFromMacro0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isExpandedFromMacro0Matcher( std
::string const &AMacroName) : MacroName(AMacroName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string MacroName; };
} inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string> isExpandedFromMacro(std::string const &
MacroName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string>(MacroName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpandedFromMacro0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::string> (&isExpandedFromMacro_Type0
)(std::string const &MacroName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isExpandedFromMacro0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
316 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpandedFromMacro0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isExpandedFromMacro0Matcher( std
::string const &AMacroName) : MacroName(AMacroName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string MacroName; };
} inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string> isExpandedFromMacro(std::string const &
MacroName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string>(MacroName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpandedFromMacro0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::string> (&isExpandedFromMacro_Type0
)(std::string const &MacroName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isExpandedFromMacro0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
317 std::string, MacroName)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isExpandedFromMacro0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isExpandedFromMacro0Matcher( std
::string const &AMacroName) : MacroName(AMacroName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string MacroName; };
} inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string> isExpandedFromMacro(std::string const &
MacroName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExpandedFromMacro0Matcher, void(::clang
::ast_matchers::internal::TypeList<Decl, Stmt, TypeLoc>
), std::string>(MacroName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExpandedFromMacro0Matcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Stmt
, TypeLoc>), std::string> (&isExpandedFromMacro_Type0
)(std::string const &MacroName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isExpandedFromMacro0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
318 // Verifies that the statement' beginning and ending are both expanded from
319 // the same instance of the given macro.
320 auto& Context = Finder->getASTContext();
321 std::optional<SourceLocation> B =
322 internal::getExpansionLocOfMacro(MacroName, Node.getBeginLoc(), Context);
323 if (!B) return false;
324 std::optional<SourceLocation> E =
325 internal::getExpansionLocOfMacro(MacroName, Node.getEndLoc(), Context);
326 if (!E) return false;
327 return *B == *E;
328}
329
330/// Matches declarations.
331///
332/// Examples matches \c X, \c C, and the friend declaration inside \c C;
333/// \code
334/// void X();
335/// class C {
336/// friend X;
337/// };
338/// \endcode
339extern const internal::VariadicAllOfMatcher<Decl> decl;
340
341/// Matches decomposition-declarations.
342///
343/// Examples matches the declaration node with \c foo and \c bar, but not
344/// \c number.
345/// (matcher = declStmt(has(decompositionDecl())))
346///
347/// \code
348/// int number = 42;
349/// auto [foo, bar] = std::make_pair{42, 42};
350/// \endcode
351extern const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl>
352 decompositionDecl;
353
354/// Matches binding declarations
355/// Example matches \c foo and \c bar
356/// (matcher = bindingDecl()
357///
358/// \code
359/// auto [foo, bar] = std::make_pair{42, 42};
360/// \endcode
361extern const internal::VariadicDynCastAllOfMatcher<Decl, BindingDecl>
362 bindingDecl;
363
364/// Matches a declaration of a linkage specification.
365///
366/// Given
367/// \code
368/// extern "C" {}
369/// \endcode
370/// linkageSpecDecl()
371/// matches "extern "C" {}"
372extern const internal::VariadicDynCastAllOfMatcher<Decl, LinkageSpecDecl>
373 linkageSpecDecl;
374
375/// Matches a declaration of anything that could have a name.
376///
377/// Example matches \c X, \c S, the anonymous union type, \c i, and \c U;
378/// \code
379/// typedef int X;
380/// struct S {
381/// union {
382/// int i;
383/// } U;
384/// };
385/// \endcode
386extern const internal::VariadicDynCastAllOfMatcher<Decl, NamedDecl> namedDecl;
387
388/// Matches a declaration of label.
389///
390/// Given
391/// \code
392/// goto FOO;
393/// FOO: bar();
394/// \endcode
395/// labelDecl()
396/// matches 'FOO:'
397extern const internal::VariadicDynCastAllOfMatcher<Decl, LabelDecl> labelDecl;
398
399/// Matches a declaration of a namespace.
400///
401/// Given
402/// \code
403/// namespace {}
404/// namespace test {}
405/// \endcode
406/// namespaceDecl()
407/// matches "namespace {}" and "namespace test {}"
408extern const internal::VariadicDynCastAllOfMatcher<Decl, NamespaceDecl>
409 namespaceDecl;
410
411/// Matches a declaration of a namespace alias.
412///
413/// Given
414/// \code
415/// namespace test {}
416/// namespace alias = ::test;
417/// \endcode
418/// namespaceAliasDecl()
419/// matches "namespace alias" but not "namespace test"
420extern const internal::VariadicDynCastAllOfMatcher<Decl, NamespaceAliasDecl>
421 namespaceAliasDecl;
422
423/// Matches class, struct, and union declarations.
424///
425/// Example matches \c X, \c Z, \c U, and \c S
426/// \code
427/// class X;
428/// template<class T> class Z {};
429/// struct S {};
430/// union U {};
431/// \endcode
432extern const internal::VariadicDynCastAllOfMatcher<Decl, RecordDecl> recordDecl;
433
434/// Matches C++ class declarations.
435///
436/// Example matches \c X, \c Z
437/// \code
438/// class X;
439/// template<class T> class Z {};
440/// \endcode
441extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXRecordDecl>
442 cxxRecordDecl;
443
444/// Matches C++ class template declarations.
445///
446/// Example matches \c Z
447/// \code
448/// template<class T> class Z {};
449/// \endcode
450extern const internal::VariadicDynCastAllOfMatcher<Decl, ClassTemplateDecl>
451 classTemplateDecl;
452
453/// Matches C++ class template specializations.
454///
455/// Given
456/// \code
457/// template<typename T> class A {};
458/// template<> class A<double> {};
459/// A<int> a;
460/// \endcode
461/// classTemplateSpecializationDecl()
462/// matches the specializations \c A<int> and \c A<double>
463extern const internal::VariadicDynCastAllOfMatcher<
464 Decl, ClassTemplateSpecializationDecl>
465 classTemplateSpecializationDecl;
466
467/// Matches C++ class template partial specializations.
468///
469/// Given
470/// \code
471/// template<class T1, class T2, int I>
472/// class A {};
473///
474/// template<class T, int I>
475/// class A<T, T*, I> {};
476///
477/// template<>
478/// class A<int, int, 1> {};
479/// \endcode
480/// classTemplatePartialSpecializationDecl()
481/// matches the specialization \c A<T,T*,I> but not \c A<int,int,1>
482extern const internal::VariadicDynCastAllOfMatcher<
483 Decl, ClassTemplatePartialSpecializationDecl>
484 classTemplatePartialSpecializationDecl;
485
486/// Matches declarator declarations (field, variable, function
487/// and non-type template parameter declarations).
488///
489/// Given
490/// \code
491/// class X { int y; };
492/// \endcode
493/// declaratorDecl()
494/// matches \c int y.
495extern const internal::VariadicDynCastAllOfMatcher<Decl, DeclaratorDecl>
496 declaratorDecl;
497
498/// Matches parameter variable declarations.
499///
500/// Given
501/// \code
502/// void f(int x);
503/// \endcode
504/// parmVarDecl()
505/// matches \c int x.
506extern const internal::VariadicDynCastAllOfMatcher<Decl, ParmVarDecl>
507 parmVarDecl;
508
509/// Matches C++ access specifier declarations.
510///
511/// Given
512/// \code
513/// class C {
514/// public:
515/// int a;
516/// };
517/// \endcode
518/// accessSpecDecl()
519/// matches 'public:'
520extern const internal::VariadicDynCastAllOfMatcher<Decl, AccessSpecDecl>
521 accessSpecDecl;
522
523/// Matches class bases.
524///
525/// Examples matches \c public virtual B.
526/// \code
527/// class B {};
528/// class C : public virtual B {};
529/// \endcode
530extern const internal::VariadicAllOfMatcher<CXXBaseSpecifier> cxxBaseSpecifier;
531
532/// Matches constructor initializers.
533///
534/// Examples matches \c i(42).
535/// \code
536/// class C {
537/// C() : i(42) {}
538/// int i;
539/// };
540/// \endcode
541extern const internal::VariadicAllOfMatcher<CXXCtorInitializer>
542 cxxCtorInitializer;
543
544/// Matches template arguments.
545///
546/// Given
547/// \code
548/// template <typename T> struct C {};
549/// C<int> c;
550/// \endcode
551/// templateArgument()
552/// matches 'int' in C<int>.
553extern const internal::VariadicAllOfMatcher<TemplateArgument> templateArgument;
554
555/// Matches template arguments (with location info).
556///
557/// Given
558/// \code
559/// template <typename T> struct C {};
560/// C<int> c;
561/// \endcode
562/// templateArgumentLoc()
563/// matches 'int' in C<int>.
564extern const internal::VariadicAllOfMatcher<TemplateArgumentLoc>
565 templateArgumentLoc;
566
567/// Matches template name.
568///
569/// Given
570/// \code
571/// template <typename T> class X { };
572/// X<int> xi;
573/// \endcode
574/// templateName()
575/// matches 'X' in X<int>.
576extern const internal::VariadicAllOfMatcher<TemplateName> templateName;
577
578/// Matches non-type template parameter declarations.
579///
580/// Given
581/// \code
582/// template <typename T, int N> struct C {};
583/// \endcode
584/// nonTypeTemplateParmDecl()
585/// matches 'N', but not 'T'.
586extern const internal::VariadicDynCastAllOfMatcher<Decl,
587 NonTypeTemplateParmDecl>
588 nonTypeTemplateParmDecl;
589
590/// Matches template type parameter declarations.
591///
592/// Given
593/// \code
594/// template <typename T, int N> struct C {};
595/// \endcode
596/// templateTypeParmDecl()
597/// matches 'T', but not 'N'.
598extern const internal::VariadicDynCastAllOfMatcher<Decl, TemplateTypeParmDecl>
599 templateTypeParmDecl;
600
601/// Matches template template parameter declarations.
602///
603/// Given
604/// \code
605/// template <template <typename> class Z, int N> struct C {};
606/// \endcode
607/// templateTypeParmDecl()
608/// matches 'Z', but not 'N'.
609extern const internal::VariadicDynCastAllOfMatcher<Decl,
610 TemplateTemplateParmDecl>
611 templateTemplateParmDecl;
612
613/// Matches public C++ declarations and C++ base specifers that specify public
614/// inheritance.
615///
616/// Examples:
617/// \code
618/// class C {
619/// public: int a; // fieldDecl(isPublic()) matches 'a'
620/// protected: int b;
621/// private: int c;
622/// };
623/// \endcode
624///
625/// \code
626/// class Base {};
627/// class Derived1 : public Base {}; // matches 'Base'
628/// struct Derived2 : Base {}; // matches 'Base'
629/// \endcode
630AST_POLYMORPHIC_MATCHER(isPublic,namespace internal { template <typename NodeType> class
matcher_isPublicMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPublicMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPublic() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPublicMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPublicMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
631 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl,namespace internal { template <typename NodeType> class
matcher_isPublicMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPublicMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPublic() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPublicMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPublicMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
632 CXXBaseSpecifier))namespace internal { template <typename NodeType> class
matcher_isPublicMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPublicMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPublic() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPublicMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPublicMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
633 return getAccessSpecifier(Node) == AS_public;
634}
635
636/// Matches protected C++ declarations and C++ base specifers that specify
637/// protected inheritance.
638///
639/// Examples:
640/// \code
641/// class C {
642/// public: int a;
643/// protected: int b; // fieldDecl(isProtected()) matches 'b'
644/// private: int c;
645/// };
646/// \endcode
647///
648/// \code
649/// class Base {};
650/// class Derived : protected Base {}; // matches 'Base'
651/// \endcode
652AST_POLYMORPHIC_MATCHER(isProtected,namespace internal { template <typename NodeType> class
matcher_isProtectedMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isProtected() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isProtectedMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
653 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl,namespace internal { template <typename NodeType> class
matcher_isProtectedMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isProtected() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isProtectedMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
654 CXXBaseSpecifier))namespace internal { template <typename NodeType> class
matcher_isProtectedMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isProtected() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isProtectedMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isProtectedMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
655 return getAccessSpecifier(Node) == AS_protected;
656}
657
658/// Matches private C++ declarations and C++ base specifers that specify private
659/// inheritance.
660///
661/// Examples:
662/// \code
663/// class C {
664/// public: int a;
665/// protected: int b;
666/// private: int c; // fieldDecl(isPrivate()) matches 'c'
667/// };
668/// \endcode
669///
670/// \code
671/// struct Base {};
672/// struct Derived1 : private Base {}; // matches 'Base'
673/// class Derived2 : Base {}; // matches 'Base'
674/// \endcode
675AST_POLYMORPHIC_MATCHER(isPrivate,namespace internal { template <typename NodeType> class
matcher_isPrivateMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPrivateMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPrivate() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPrivateMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPrivateMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
676 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl,namespace internal { template <typename NodeType> class
matcher_isPrivateMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPrivateMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPrivate() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPrivateMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPrivateMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
677 CXXBaseSpecifier))namespace internal { template <typename NodeType> class
matcher_isPrivateMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isPrivateMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)> isPrivate() { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_isPrivateMatcher, void
(::clang::ast_matchers::internal::TypeList<Decl, CXXBaseSpecifier
>)>(); } template <typename NodeType> bool internal
::matcher_isPrivateMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
678 return getAccessSpecifier(Node) == AS_private;
679}
680
681/// Matches non-static data members that are bit-fields.
682///
683/// Given
684/// \code
685/// class C {
686/// int a : 2;
687/// int b;
688/// };
689/// \endcode
690/// fieldDecl(isBitField())
691/// matches 'int a;' but not 'int b;'.
692AST_MATCHER(FieldDecl, isBitField)namespace internal { class matcher_isBitFieldMatcher : public
::clang::ast_matchers::internal::MatcherInterface<FieldDecl
> { public: explicit matcher_isBitFieldMatcher() = default
; bool matches(const FieldDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<FieldDecl> isBitField
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isBitFieldMatcher()); } inline bool internal
::matcher_isBitFieldMatcher::matches( const FieldDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
693 return Node.isBitField();
694}
695
696/// Matches non-static data members that are bit-fields of the specified
697/// bit width.
698///
699/// Given
700/// \code
701/// class C {
702/// int a : 2;
703/// int b : 4;
704/// int c : 2;
705/// };
706/// \endcode
707/// fieldDecl(hasBitWidth(2))
708/// matches 'int a;' and 'int c;' but not 'int b;'.
709AST_MATCHER_P(FieldDecl, hasBitWidth, unsigned, Width)namespace internal { class matcher_hasBitWidth0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<FieldDecl
> { public: explicit matcher_hasBitWidth0Matcher( unsigned
const &AWidth) : Width(AWidth) {} bool matches(const FieldDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned Width; }; } inline
::clang::ast_matchers::internal::Matcher<FieldDecl> hasBitWidth
( unsigned const &Width) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasBitWidth0Matcher
(Width)); } typedef ::clang::ast_matchers::internal::Matcher<
FieldDecl> ( &hasBitWidth_Type0)(unsigned const &Width
); inline bool internal::matcher_hasBitWidth0Matcher::matches
( const FieldDecl &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
710 return Node.isBitField() &&
711 Node.getBitWidthValue(Finder->getASTContext()) == Width;
712}
713
714/// Matches non-static data members that have an in-class initializer.
715///
716/// Given
717/// \code
718/// class C {
719/// int a = 2;
720/// int b = 3;
721/// int c;
722/// };
723/// \endcode
724/// fieldDecl(hasInClassInitializer(integerLiteral(equals(2))))
725/// matches 'int a;' but not 'int b;'.
726/// fieldDecl(hasInClassInitializer(anything()))
727/// matches 'int a;' and 'int b;' but not 'int c;'.
728AST_MATCHER_P(FieldDecl, hasInClassInitializer, internal::Matcher<Expr>,namespace internal { class matcher_hasInClassInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
FieldDecl> { public: explicit matcher_hasInClassInitializer0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const FieldDecl &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FieldDecl
> hasInClassInitializer( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasInClassInitializer0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FieldDecl> ( &hasInClassInitializer_Type0)(internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasInClassInitializer0Matcher::matches( const FieldDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
729 InnerMatcher)namespace internal { class matcher_hasInClassInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
FieldDecl> { public: explicit matcher_hasInClassInitializer0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const FieldDecl &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FieldDecl
> hasInClassInitializer( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasInClassInitializer0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FieldDecl> ( &hasInClassInitializer_Type0)(internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasInClassInitializer0Matcher::matches( const FieldDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
730 const Expr *Initializer = Node.getInClassInitializer();
731 return (Initializer != nullptr &&
732 InnerMatcher.matches(*Initializer, Finder, Builder));
733}
734
735/// Determines whether the function is "main", which is the entry point
736/// into an executable program.
737AST_MATCHER(FunctionDecl, isMain)namespace internal { class matcher_isMainMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<FunctionDecl>
{ public: explicit matcher_isMainMatcher() = default; bool matches
(const FunctionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<FunctionDecl> isMain() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isMainMatcher
()); } inline bool internal::matcher_isMainMatcher::matches( const
FunctionDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
738 return Node.isMain();
739}
740
741/// Matches the specialized template of a specialization declaration.
742///
743/// Given
744/// \code
745/// template<typename T> class A {}; #1
746/// template<> class A<int> {}; #2
747/// \endcode
748/// classTemplateSpecializationDecl(hasSpecializedTemplate(classTemplateDecl()))
749/// matches '#2' with classTemplateDecl() matching the class template
750/// declaration of 'A' at #1.
751AST_MATCHER_P(ClassTemplateSpecializationDecl, hasSpecializedTemplate,namespace internal { class matcher_hasSpecializedTemplate0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ClassTemplateSpecializationDecl> { public: explicit matcher_hasSpecializedTemplate0Matcher
( internal::Matcher<ClassTemplateDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const ClassTemplateSpecializationDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<ClassTemplateDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ClassTemplateSpecializationDecl> hasSpecializedTemplate
( internal::Matcher<ClassTemplateDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasSpecializedTemplate0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<ClassTemplateSpecializationDecl
> ( &hasSpecializedTemplate_Type0)(internal::Matcher<
ClassTemplateDecl> const &InnerMatcher); inline bool internal
::matcher_hasSpecializedTemplate0Matcher::matches( const ClassTemplateSpecializationDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
752 internal::Matcher<ClassTemplateDecl>, InnerMatcher)namespace internal { class matcher_hasSpecializedTemplate0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ClassTemplateSpecializationDecl> { public: explicit matcher_hasSpecializedTemplate0Matcher
( internal::Matcher<ClassTemplateDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const ClassTemplateSpecializationDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<ClassTemplateDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ClassTemplateSpecializationDecl> hasSpecializedTemplate
( internal::Matcher<ClassTemplateDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasSpecializedTemplate0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<ClassTemplateSpecializationDecl
> ( &hasSpecializedTemplate_Type0)(internal::Matcher<
ClassTemplateDecl> const &InnerMatcher); inline bool internal
::matcher_hasSpecializedTemplate0Matcher::matches( const ClassTemplateSpecializationDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
753 const ClassTemplateDecl* Decl = Node.getSpecializedTemplate();
754 return (Decl != nullptr &&
755 InnerMatcher.matches(*Decl, Finder, Builder));
756}
757
758/// Matches an entity that has been implicitly added by the compiler (e.g.
759/// implicit default/copy constructors).
760AST_POLYMORPHIC_MATCHER(isImplicit,namespace internal { template <typename NodeType> class
matcher_isImplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)> isImplicit() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)>(); } template <typename NodeType>
bool internal::matcher_isImplicitMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
761 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Attr,namespace internal { template <typename NodeType> class
matcher_isImplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)> isImplicit() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)>(); } template <typename NodeType>
bool internal::matcher_isImplicitMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
762 LambdaCapture))namespace internal { template <typename NodeType> class
matcher_isImplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)> isImplicit() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isImplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<Decl, Attr
, LambdaCapture>)>(); } template <typename NodeType>
bool internal::matcher_isImplicitMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
763 return Node.isImplicit();
764}
765
766/// Matches classTemplateSpecializations, templateSpecializationType and
767/// functionDecl that have at least one TemplateArgument matching the given
768/// InnerMatcher.
769///
770/// Given
771/// \code
772/// template<typename T> class A {};
773/// template<> class A<double> {};
774/// A<int> a;
775///
776/// template<typename T> f() {};
777/// void func() { f<int>(); };
778/// \endcode
779///
780/// \endcode
781/// classTemplateSpecializationDecl(hasAnyTemplateArgument(
782/// refersToType(asString("int"))))
783/// matches the specialization \c A<int>
784///
785/// functionDecl(hasAnyTemplateArgument(refersToType(asString("int"))))
786/// matches the specialization \c f<int>
787AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
788 hasAnyTemplateArgument,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
789 AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
790 TemplateSpecializationType,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
791 FunctionDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
792 internal::Matcher<TemplateArgument>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnyTemplateArgument0Matcher
( internal::Matcher<TemplateArgument> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgument
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > hasAnyTemplateArgument(internal
::Matcher<TemplateArgument> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), internal::Matcher<TemplateArgument>
>(InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasAnyTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), internal::Matcher
<TemplateArgument> > (&hasAnyTemplateArgument_Type0
)(internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasAnyTemplateArgument0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
793 ArrayRef<TemplateArgument> List =
794 internal::getTemplateSpecializationArgs(Node);
795 return matchesFirstInRange(InnerMatcher, List.begin(), List.end(), Finder,
796 Builder) != List.end();
797}
798
799/// Causes all nested matchers to be matched with the specified traversal kind.
800///
801/// Given
802/// \code
803/// void foo()
804/// {
805/// int i = 3.0;
806/// }
807/// \endcode
808/// The matcher
809/// \code
810/// traverse(TK_IgnoreUnlessSpelledInSource,
811/// varDecl(hasInitializer(floatLiteral().bind("init")))
812/// )
813/// \endcode
814/// matches the variable declaration with "init" bound to the "3.0".
815template <typename T>
816internal::Matcher<T> traverse(TraversalKind TK,
817 const internal::Matcher<T> &InnerMatcher) {
818 return internal::DynTypedMatcher::constructRestrictedWrapper(
819 new internal::TraversalMatcher<T>(TK, InnerMatcher),
820 InnerMatcher.getID().first)
821 .template unconditionalConvertTo<T>();
822}
823
824template <typename T>
825internal::BindableMatcher<T>
826traverse(TraversalKind TK, const internal::BindableMatcher<T> &InnerMatcher) {
827 return internal::BindableMatcher<T>(
828 internal::DynTypedMatcher::constructRestrictedWrapper(
829 new internal::TraversalMatcher<T>(TK, InnerMatcher),
830 InnerMatcher.getID().first)
831 .template unconditionalConvertTo<T>());
832}
833
834template <typename... T>
835internal::TraversalWrapper<internal::VariadicOperatorMatcher<T...>>
836traverse(TraversalKind TK,
837 const internal::VariadicOperatorMatcher<T...> &InnerMatcher) {
838 return internal::TraversalWrapper<internal::VariadicOperatorMatcher<T...>>(
839 TK, InnerMatcher);
840}
841
842template <template <typename ToArg, typename FromArg> class ArgumentAdapterT,
843 typename T, typename ToTypes>
844internal::TraversalWrapper<
845 internal::ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT, T, ToTypes>>
846traverse(TraversalKind TK, const internal::ArgumentAdaptingMatcherFuncAdaptor<
847 ArgumentAdapterT, T, ToTypes> &InnerMatcher) {
848 return internal::TraversalWrapper<
849 internal::ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT, T,
850 ToTypes>>(TK, InnerMatcher);
851}
852
853template <template <typename T, typename... P> class MatcherT, typename... P,
854 typename ReturnTypesF>
855internal::TraversalWrapper<
856 internal::PolymorphicMatcher<MatcherT, ReturnTypesF, P...>>
857traverse(TraversalKind TK,
858 const internal::PolymorphicMatcher<MatcherT, ReturnTypesF, P...>
859 &InnerMatcher) {
860 return internal::TraversalWrapper<
861 internal::PolymorphicMatcher<MatcherT, ReturnTypesF, P...>>(TK,
862 InnerMatcher);
863}
864
865template <typename... T>
866internal::Matcher<typename internal::GetClade<T...>::Type>
867traverse(TraversalKind TK, const internal::MapAnyOfHelper<T...> &InnerMatcher) {
868 return traverse(TK, InnerMatcher.with());
869}
870
871/// Matches expressions that match InnerMatcher after any implicit AST
872/// nodes are stripped off.
873///
874/// Parentheses and explicit casts are not discarded.
875/// Given
876/// \code
877/// class C {};
878/// C a = C();
879/// C b;
880/// C c = b;
881/// \endcode
882/// The matchers
883/// \code
884/// varDecl(hasInitializer(ignoringImplicit(cxxConstructExpr())))
885/// \endcode
886/// would match the declarations for a, b, and c.
887/// While
888/// \code
889/// varDecl(hasInitializer(cxxConstructExpr()))
890/// \endcode
891/// only match the declarations for b and c.
892AST_MATCHER_P(Expr, ignoringImplicit, internal::Matcher<Expr>,namespace internal { class matcher_ignoringImplicit0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringImplicit0Matcher(
internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringImplicit
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringImplicit0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<Expr> ( &ignoringImplicit_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringImplicit0Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
893 InnerMatcher)namespace internal { class matcher_ignoringImplicit0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringImplicit0Matcher(
internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringImplicit
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringImplicit0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<Expr> ( &ignoringImplicit_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringImplicit0Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
894 return InnerMatcher.matches(*Node.IgnoreImplicit(), Finder, Builder);
895}
896
897/// Matches expressions that match InnerMatcher after any implicit casts
898/// are stripped off.
899///
900/// Parentheses and explicit casts are not discarded.
901/// Given
902/// \code
903/// int arr[5];
904/// int a = 0;
905/// char b = 0;
906/// const int c = a;
907/// int *d = arr;
908/// long e = (long) 0l;
909/// \endcode
910/// The matchers
911/// \code
912/// varDecl(hasInitializer(ignoringImpCasts(integerLiteral())))
913/// varDecl(hasInitializer(ignoringImpCasts(declRefExpr())))
914/// \endcode
915/// would match the declarations for a, b, c, and d, but not e.
916/// While
917/// \code
918/// varDecl(hasInitializer(integerLiteral()))
919/// varDecl(hasInitializer(declRefExpr()))
920/// \endcode
921/// only match the declarations for a.
922AST_MATCHER_P(Expr, ignoringImpCasts,namespace internal { class matcher_ignoringImpCasts0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringImpCasts0Matcher(
internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringImpCasts
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringImpCasts0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<Expr> ( &ignoringImpCasts_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringImpCasts0Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
923 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_ignoringImpCasts0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringImpCasts0Matcher(
internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringImpCasts
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringImpCasts0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<Expr> ( &ignoringImpCasts_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringImpCasts0Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
924 return InnerMatcher.matches(*Node.IgnoreImpCasts(), Finder, Builder);
925}
926
927/// Matches expressions that match InnerMatcher after parentheses and
928/// casts are stripped off.
929///
930/// Implicit and non-C Style casts are also discarded.
931/// Given
932/// \code
933/// int a = 0;
934/// char b = (0);
935/// void* c = reinterpret_cast<char*>(0);
936/// char d = char(0);
937/// \endcode
938/// The matcher
939/// varDecl(hasInitializer(ignoringParenCasts(integerLiteral())))
940/// would match the declarations for a, b, c, and d.
941/// while
942/// varDecl(hasInitializer(integerLiteral()))
943/// only match the declaration for a.
944AST_MATCHER_P(Expr, ignoringParenCasts, internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_ignoringParenCasts0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringParenCasts0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringParenCasts
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringParenCasts0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<Expr> ( &ignoringParenCasts_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringParenCasts0Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
945 return InnerMatcher.matches(*Node.IgnoreParenCasts(), Finder, Builder);
946}
947
948/// Matches expressions that match InnerMatcher after implicit casts and
949/// parentheses are stripped off.
950///
951/// Explicit casts are not discarded.
952/// Given
953/// \code
954/// int arr[5];
955/// int a = 0;
956/// char b = (0);
957/// const int c = a;
958/// int *d = (arr);
959/// long e = ((long) 0l);
960/// \endcode
961/// The matchers
962/// varDecl(hasInitializer(ignoringParenImpCasts(integerLiteral())))
963/// varDecl(hasInitializer(ignoringParenImpCasts(declRefExpr())))
964/// would match the declarations for a, b, c, and d, but not e.
965/// while
966/// varDecl(hasInitializer(integerLiteral()))
967/// varDecl(hasInitializer(declRefExpr()))
968/// would only match the declaration for a.
969AST_MATCHER_P(Expr, ignoringParenImpCasts,namespace internal { class matcher_ignoringParenImpCasts0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringParenImpCasts0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringParenImpCasts
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringParenImpCasts0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<Expr> ( &
ignoringParenImpCasts_Type0)(internal::Matcher<Expr> const
&InnerMatcher); inline bool internal::matcher_ignoringParenImpCasts0Matcher
::matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
970 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_ignoringParenImpCasts0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringParenImpCasts0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Expr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringParenImpCasts
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringParenImpCasts0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<Expr> ( &
ignoringParenImpCasts_Type0)(internal::Matcher<Expr> const
&InnerMatcher); inline bool internal::matcher_ignoringParenImpCasts0Matcher
::matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
971 return InnerMatcher.matches(*Node.IgnoreParenImpCasts(), Finder, Builder);
972}
973
974/// Matches types that match InnerMatcher after any parens are stripped.
975///
976/// Given
977/// \code
978/// void (*fp)(void);
979/// \endcode
980/// The matcher
981/// \code
982/// varDecl(hasType(pointerType(pointee(ignoringParens(functionType())))))
983/// \endcode
984/// would match the declaration for fp.
985AST_MATCHER_P_OVERLOAD(QualType, ignoringParens, internal::Matcher<QualType>,namespace internal { class matcher_ignoringParens0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_ignoringParens0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> ignoringParens
( internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_ignoringParens0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<QualType> ( &
ignoringParens_Type0)(internal::Matcher<QualType> const
&InnerMatcher); inline bool internal::matcher_ignoringParens0Matcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
986 InnerMatcher, 0)namespace internal { class matcher_ignoringParens0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_ignoringParens0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> ignoringParens
( internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_ignoringParens0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<QualType> ( &
ignoringParens_Type0)(internal::Matcher<QualType> const
&InnerMatcher); inline bool internal::matcher_ignoringParens0Matcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
987 return InnerMatcher.matches(Node.IgnoreParens(), Finder, Builder);
988}
989
990/// Overload \c ignoringParens for \c Expr.
991///
992/// Given
993/// \code
994/// const char* str = ("my-string");
995/// \endcode
996/// The matcher
997/// \code
998/// implicitCastExpr(hasSourceExpression(ignoringParens(stringLiteral())))
999/// \endcode
1000/// would match the implicit cast resulting from the assignment.
1001AST_MATCHER_P_OVERLOAD(Expr, ignoringParens, internal::Matcher<Expr>,namespace internal { class matcher_ignoringParens1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Expr>
{ public: explicit matcher_ignoringParens1Matcher( internal::
Matcher<Expr> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const Expr &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringParens(
internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringParens1Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<Expr> ( &ignoringParens_Type1
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringParens1Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
1002 InnerMatcher, 1)namespace internal { class matcher_ignoringParens1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Expr>
{ public: explicit matcher_ignoringParens1Matcher( internal::
Matcher<Expr> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const Expr &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Expr> ignoringParens(
internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringParens1Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<Expr> ( &ignoringParens_Type1
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringParens1Matcher::matches( const
Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1003 const Expr *E = Node.IgnoreParens();
1004 return InnerMatcher.matches(*E, Finder, Builder);
1005}
1006
1007/// Matches expressions that are instantiation-dependent even if it is
1008/// neither type- nor value-dependent.
1009///
1010/// In the following example, the expression sizeof(sizeof(T() + T()))
1011/// is instantiation-dependent (since it involves a template parameter T),
1012/// but is neither type- nor value-dependent, since the type of the inner
1013/// sizeof is known (std::size_t) and therefore the size of the outer
1014/// sizeof is known.
1015/// \code
1016/// template<typename T>
1017/// void f(T x, T y) { sizeof(sizeof(T() + T()); }
1018/// \endcode
1019/// expr(isInstantiationDependent()) matches sizeof(sizeof(T() + T())
1020AST_MATCHER(Expr, isInstantiationDependent)namespace internal { class matcher_isInstantiationDependentMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_isInstantiationDependentMatcher
() = default; bool matches(const Expr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<Expr> isInstantiationDependent
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isInstantiationDependentMatcher()); } inline
bool internal::matcher_isInstantiationDependentMatcher::matches
( const Expr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1021 return Node.isInstantiationDependent();
1022}
1023
1024/// Matches expressions that are type-dependent because the template type
1025/// is not yet instantiated.
1026///
1027/// For example, the expressions "x" and "x + y" are type-dependent in
1028/// the following code, but "y" is not type-dependent:
1029/// \code
1030/// template<typename T>
1031/// void add(T x, int y) {
1032/// x + y;
1033/// }
1034/// \endcode
1035/// expr(isTypeDependent()) matches x + y
1036AST_MATCHER(Expr, isTypeDependent)namespace internal { class matcher_isTypeDependentMatcher : public
::clang::ast_matchers::internal::MatcherInterface<Expr>
{ public: explicit matcher_isTypeDependentMatcher() = default
; bool matches(const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<Expr> isTypeDependent() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isTypeDependentMatcher
()); } inline bool internal::matcher_isTypeDependentMatcher::
matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.isTypeDependent(); }
1037
1038/// Matches expression that are value-dependent because they contain a
1039/// non-type template parameter.
1040///
1041/// For example, the array bound of "Chars" in the following example is
1042/// value-dependent.
1043/// \code
1044/// template<int Size> int f() { return Size; }
1045/// \endcode
1046/// expr(isValueDependent()) matches return Size
1047AST_MATCHER(Expr, isValueDependent)namespace internal { class matcher_isValueDependentMatcher : public
::clang::ast_matchers::internal::MatcherInterface<Expr>
{ public: explicit matcher_isValueDependentMatcher() = default
; bool matches(const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<Expr> isValueDependent() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isValueDependentMatcher
()); } inline bool internal::matcher_isValueDependentMatcher::
matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.isValueDependent(); }
1048
1049/// Matches classTemplateSpecializations, templateSpecializationType and
1050/// functionDecl where the n'th TemplateArgument matches the given InnerMatcher.
1051///
1052/// Given
1053/// \code
1054/// template<typename T, typename U> class A {};
1055/// A<bool, int> b;
1056/// A<int, bool> c;
1057///
1058/// template<typename T> void f() {}
1059/// void func() { f<int>(); };
1060/// \endcode
1061/// classTemplateSpecializationDecl(hasTemplateArgument(
1062/// 1, refersToType(asString("int"))))
1063/// matches the specialization \c A<bool, int>
1064///
1065/// functionDecl(hasTemplateArgument(0, refersToType(asString("int"))))
1066/// matches the specialization \c f<int>
1067AST_POLYMORPHIC_MATCHER_P2(namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
1068 hasTemplateArgument,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
1069 AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
1070 TemplateSpecializationType,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
1071 FunctionDecl),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
1072 unsigned, N, internal::Matcher<TemplateArgument>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgument0Matcher(unsigned
const &AN, internal::Matcher<TemplateArgument> const
&AInnerMatcher) : N(AN), InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<TemplateArgument> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> > hasTemplateArgument(unsigned
const &N, internal::Matcher<TemplateArgument> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasTemplateArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), unsigned, internal
::Matcher<TemplateArgument> >(N, InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), unsigned, internal::Matcher<TemplateArgument
> > (&hasTemplateArgument_Type0)( unsigned const &
N, internal::Matcher<TemplateArgument> const &InnerMatcher
); template <typename NodeType, typename ParamT1, typename
ParamT2> bool internal::matcher_hasTemplateArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
1073 ArrayRef<TemplateArgument> List =
1074 internal::getTemplateSpecializationArgs(Node);
1075 if (List.size() <= N)
1076 return false;
1077 return InnerMatcher.matches(List[N], Finder, Builder);
1078}
1079
1080/// Matches if the number of template arguments equals \p N.
1081///
1082/// Given
1083/// \code
1084/// template<typename T> struct C {};
1085/// C<int> c;
1086/// \endcode
1087/// classTemplateSpecializationDecl(templateArgumentCountIs(1))
1088/// matches C<int>.
1089AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_templateArgumentCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_templateArgumentCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> templateArgumentCountIs(unsigned const &
N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_templateArgumentCountIs0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType>), unsigned>(N); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> (&templateArgumentCountIs_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_templateArgumentCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
1090 templateArgumentCountIs,namespace internal { template <typename NodeType, typename
ParamT> class matcher_templateArgumentCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_templateArgumentCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> templateArgumentCountIs(unsigned const &
N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_templateArgumentCountIs0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType>), unsigned>(N); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> (&templateArgumentCountIs_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_templateArgumentCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
1091 AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_templateArgumentCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_templateArgumentCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> templateArgumentCountIs(unsigned const &
N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_templateArgumentCountIs0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType>), unsigned>(N); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> (&templateArgumentCountIs_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_templateArgumentCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
1092 TemplateSpecializationType),namespace internal { template <typename NodeType, typename
ParamT> class matcher_templateArgumentCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_templateArgumentCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> templateArgumentCountIs(unsigned const &
N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_templateArgumentCountIs0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType>), unsigned>(N); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> (&templateArgumentCountIs_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_templateArgumentCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
1093 unsigned, N)namespace internal { template <typename NodeType, typename
ParamT> class matcher_templateArgumentCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_templateArgumentCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> templateArgumentCountIs(unsigned const &
N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_templateArgumentCountIs0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType>), unsigned>(N); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_templateArgumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
>), unsigned> (&templateArgumentCountIs_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_templateArgumentCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
1094 return internal::getTemplateSpecializationArgs(Node).size() == N;
1095}
1096
1097/// Matches a TemplateArgument that refers to a certain type.
1098///
1099/// Given
1100/// \code
1101/// struct X {};
1102/// template<typename T> struct A {};
1103/// A<X> a;
1104/// \endcode
1105/// classTemplateSpecializationDecl(hasAnyTemplateArgument(refersToType(
1106/// recordType(hasDeclaration(recordDecl(hasName("X")))))))
1107/// matches the specialization of \c struct A generated by \c A<X>.
1108AST_MATCHER_P(TemplateArgument, refersToType,namespace internal { class matcher_refersToType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<TemplateArgument
> { public: explicit matcher_refersToType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const TemplateArgument &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<TemplateArgument
> refersToType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_refersToType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<TemplateArgument
> ( &refersToType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_refersToType0Matcher
::matches( const TemplateArgument &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
1109 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_refersToType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<TemplateArgument
> { public: explicit matcher_refersToType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const TemplateArgument &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<TemplateArgument
> refersToType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_refersToType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<TemplateArgument
> ( &refersToType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_refersToType0Matcher
::matches( const TemplateArgument &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
1110 if (Node.getKind() != TemplateArgument::Type)
1111 return false;
1112 return InnerMatcher.matches(Node.getAsType(), Finder, Builder);
1113}
1114
1115/// Matches a TemplateArgument that refers to a certain template.
1116///
1117/// Given
1118/// \code
1119/// template<template <typename> class S> class X {};
1120/// template<typename T> class Y {};
1121/// X<Y> xi;
1122/// \endcode
1123/// classTemplateSpecializationDecl(hasAnyTemplateArgument(
1124/// refersToTemplate(templateName())))
1125/// matches the specialization \c X<Y>
1126AST_MATCHER_P(TemplateArgument, refersToTemplate,namespace internal { class matcher_refersToTemplate0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToTemplate0Matcher
( internal::Matcher<TemplateName> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateName
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateArgument> refersToTemplate( internal::
Matcher<TemplateName> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_refersToTemplate0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<TemplateArgument>
( &refersToTemplate_Type0)(internal::Matcher<TemplateName
> const &InnerMatcher); inline bool internal::matcher_refersToTemplate0Matcher
::matches( const TemplateArgument &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
1127 internal::Matcher<TemplateName>, InnerMatcher)namespace internal { class matcher_refersToTemplate0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToTemplate0Matcher
( internal::Matcher<TemplateName> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateName
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateArgument> refersToTemplate( internal::
Matcher<TemplateName> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_refersToTemplate0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<TemplateArgument>
( &refersToTemplate_Type0)(internal::Matcher<TemplateName
> const &InnerMatcher); inline bool internal::matcher_refersToTemplate0Matcher
::matches( const TemplateArgument &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
1128 if (Node.getKind() != TemplateArgument::Template)
1129 return false;
1130 return InnerMatcher.matches(Node.getAsTemplate(), Finder, Builder);
1131}
1132
1133/// Matches a canonical TemplateArgument that refers to a certain
1134/// declaration.
1135///
1136/// Given
1137/// \code
1138/// struct B { int next; };
1139/// template<int(B::*next_ptr)> struct A {};
1140/// A<&B::next> a;
1141/// \endcode
1142/// classTemplateSpecializationDecl(hasAnyTemplateArgument(
1143/// refersToDeclaration(fieldDecl(hasName("next")))))
1144/// matches the specialization \c A<&B::next> with \c fieldDecl(...) matching
1145/// \c B::next
1146AST_MATCHER_P(TemplateArgument, refersToDeclaration,namespace internal { class matcher_refersToDeclaration0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToDeclaration0Matcher
( internal::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const TemplateArgument &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<TemplateArgument
> refersToDeclaration( internal::Matcher<Decl> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_refersToDeclaration0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<TemplateArgument> ( &refersToDeclaration_Type0)(internal
::Matcher<Decl> const &InnerMatcher); inline bool internal
::matcher_refersToDeclaration0Matcher::matches( const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
1147 internal::Matcher<Decl>, InnerMatcher)namespace internal { class matcher_refersToDeclaration0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToDeclaration0Matcher
( internal::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const TemplateArgument &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<TemplateArgument
> refersToDeclaration( internal::Matcher<Decl> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_refersToDeclaration0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<TemplateArgument> ( &refersToDeclaration_Type0)(internal
::Matcher<Decl> const &InnerMatcher); inline bool internal
::matcher_refersToDeclaration0Matcher::matches( const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1148 if (Node.getKind() == TemplateArgument::Declaration)
1149 return InnerMatcher.matches(*Node.getAsDecl(), Finder, Builder);
1150 return false;
1151}
1152
1153/// Matches a sugar TemplateArgument that refers to a certain expression.
1154///
1155/// Given
1156/// \code
1157/// struct B { int next; };
1158/// template<int(B::*next_ptr)> struct A {};
1159/// A<&B::next> a;
1160/// \endcode
1161/// templateSpecializationType(hasAnyTemplateArgument(
1162/// isExpr(hasDescendant(declRefExpr(to(fieldDecl(hasName("next"))))))))
1163/// matches the specialization \c A<&B::next> with \c fieldDecl(...) matching
1164/// \c B::next
1165AST_MATCHER_P(TemplateArgument, isExpr, internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_isExpr0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<TemplateArgument
> { public: explicit matcher_isExpr0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const TemplateArgument &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<TemplateArgument> isExpr
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isExpr0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<TemplateArgument> ( &isExpr_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_isExpr0Matcher::matches( const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1166 if (Node.getKind() == TemplateArgument::Expression)
1167 return InnerMatcher.matches(*Node.getAsExpr(), Finder, Builder);
1168 return false;
1169}
1170
1171/// Matches a TemplateArgument that is an integral value.
1172///
1173/// Given
1174/// \code
1175/// template<int T> struct C {};
1176/// C<42> c;
1177/// \endcode
1178/// classTemplateSpecializationDecl(
1179/// hasAnyTemplateArgument(isIntegral()))
1180/// matches the implicit instantiation of C in C<42>
1181/// with isIntegral() matching 42.
1182AST_MATCHER(TemplateArgument, isIntegral)namespace internal { class matcher_isIntegralMatcher : public
::clang::ast_matchers::internal::MatcherInterface<TemplateArgument
> { public: explicit matcher_isIntegralMatcher() = default
; bool matches(const TemplateArgument &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<TemplateArgument
> isIntegral() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isIntegralMatcher()); } inline bool internal
::matcher_isIntegralMatcher::matches( const TemplateArgument &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
1183 return Node.getKind() == TemplateArgument::Integral;
1184}
1185
1186/// Matches a TemplateArgument that refers to an integral type.
1187///
1188/// Given
1189/// \code
1190/// template<int T> struct C {};
1191/// C<42> c;
1192/// \endcode
1193/// classTemplateSpecializationDecl(
1194/// hasAnyTemplateArgument(refersToIntegralType(asString("int"))))
1195/// matches the implicit instantiation of C in C<42>.
1196AST_MATCHER_P(TemplateArgument, refersToIntegralType,namespace internal { class matcher_refersToIntegralType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToIntegralType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateArgument> refersToIntegralType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_refersToIntegralType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<TemplateArgument> ( &refersToIntegralType_Type0)(internal
::Matcher<QualType> const &InnerMatcher); inline bool
internal::matcher_refersToIntegralType0Matcher::matches( const
TemplateArgument &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
1197 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_refersToIntegralType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_refersToIntegralType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const TemplateArgument
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateArgument> refersToIntegralType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_refersToIntegralType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<TemplateArgument> ( &refersToIntegralType_Type0)(internal
::Matcher<QualType> const &InnerMatcher); inline bool
internal::matcher_refersToIntegralType0Matcher::matches( const
TemplateArgument &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1198 if (Node.getKind() != TemplateArgument::Integral)
1199 return false;
1200 return InnerMatcher.matches(Node.getIntegralType(), Finder, Builder);
1201}
1202
1203/// Matches a TemplateArgument of integral type with a given value.
1204///
1205/// Note that 'Value' is a string as the template argument's value is
1206/// an arbitrary precision integer. 'Value' must be euqal to the canonical
1207/// representation of that integral value in base 10.
1208///
1209/// Given
1210/// \code
1211/// template<int T> struct C {};
1212/// C<42> c;
1213/// \endcode
1214/// classTemplateSpecializationDecl(
1215/// hasAnyTemplateArgument(equalsIntegralValue("42")))
1216/// matches the implicit instantiation of C in C<42>.
1217AST_MATCHER_P(TemplateArgument, equalsIntegralValue,namespace internal { class matcher_equalsIntegralValue0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_equalsIntegralValue0Matcher
( std::string const &AValue) : Value(AValue) {} bool matches
(const TemplateArgument &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Value; }; } inline
::clang::ast_matchers::internal::Matcher<TemplateArgument
> equalsIntegralValue( std::string const &Value) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_equalsIntegralValue0Matcher(Value)); } typedef ::clang
::ast_matchers::internal::Matcher<TemplateArgument> ( &
equalsIntegralValue_Type0)(std::string const &Value); inline
bool internal::matcher_equalsIntegralValue0Matcher::matches(
const TemplateArgument &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
1218 std::string, Value)namespace internal { class matcher_equalsIntegralValue0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateArgument> { public: explicit matcher_equalsIntegralValue0Matcher
( std::string const &AValue) : Value(AValue) {} bool matches
(const TemplateArgument &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Value; }; } inline
::clang::ast_matchers::internal::Matcher<TemplateArgument
> equalsIntegralValue( std::string const &Value) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_equalsIntegralValue0Matcher(Value)); } typedef ::clang
::ast_matchers::internal::Matcher<TemplateArgument> ( &
equalsIntegralValue_Type0)(std::string const &Value); inline
bool internal::matcher_equalsIntegralValue0Matcher::matches(
const TemplateArgument &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
1219 if (Node.getKind() != TemplateArgument::Integral)
1220 return false;
1221 return toString(Node.getAsIntegral(), 10) == Value;
1222}
1223
1224/// Matches an Objective-C autorelease pool statement.
1225///
1226/// Given
1227/// \code
1228/// @autoreleasepool {
1229/// int x = 0;
1230/// }
1231/// \endcode
1232/// autoreleasePoolStmt(stmt()) matches the declaration of "x"
1233/// inside the autorelease pool.
1234extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1235 ObjCAutoreleasePoolStmt> autoreleasePoolStmt;
1236
1237/// Matches any value declaration.
1238///
1239/// Example matches A, B, C and F
1240/// \code
1241/// enum X { A, B, C };
1242/// void F();
1243/// \endcode
1244extern const internal::VariadicDynCastAllOfMatcher<Decl, ValueDecl> valueDecl;
1245
1246/// Matches C++ constructor declarations.
1247///
1248/// Example matches Foo::Foo() and Foo::Foo(int)
1249/// \code
1250/// class Foo {
1251/// public:
1252/// Foo();
1253/// Foo(int);
1254/// int DoSomething();
1255/// };
1256/// \endcode
1257extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXConstructorDecl>
1258 cxxConstructorDecl;
1259
1260/// Matches explicit C++ destructor declarations.
1261///
1262/// Example matches Foo::~Foo()
1263/// \code
1264/// class Foo {
1265/// public:
1266/// virtual ~Foo();
1267/// };
1268/// \endcode
1269extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXDestructorDecl>
1270 cxxDestructorDecl;
1271
1272/// Matches enum declarations.
1273///
1274/// Example matches X
1275/// \code
1276/// enum X {
1277/// A, B, C
1278/// };
1279/// \endcode
1280extern const internal::VariadicDynCastAllOfMatcher<Decl, EnumDecl> enumDecl;
1281
1282/// Matches enum constants.
1283///
1284/// Example matches A, B, C
1285/// \code
1286/// enum X {
1287/// A, B, C
1288/// };
1289/// \endcode
1290extern const internal::VariadicDynCastAllOfMatcher<Decl, EnumConstantDecl>
1291 enumConstantDecl;
1292
1293/// Matches tag declarations.
1294///
1295/// Example matches X, Z, U, S, E
1296/// \code
1297/// class X;
1298/// template<class T> class Z {};
1299/// struct S {};
1300/// union U {};
1301/// enum E {
1302/// A, B, C
1303/// };
1304/// \endcode
1305extern const internal::VariadicDynCastAllOfMatcher<Decl, TagDecl> tagDecl;
1306
1307/// Matches method declarations.
1308///
1309/// Example matches y
1310/// \code
1311/// class X { void y(); };
1312/// \endcode
1313extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXMethodDecl>
1314 cxxMethodDecl;
1315
1316/// Matches conversion operator declarations.
1317///
1318/// Example matches the operator.
1319/// \code
1320/// class X { operator int() const; };
1321/// \endcode
1322extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXConversionDecl>
1323 cxxConversionDecl;
1324
1325/// Matches user-defined and implicitly generated deduction guide.
1326///
1327/// Example matches the deduction guide.
1328/// \code
1329/// template<typename T>
1330/// class X { X(int) };
1331/// X(int) -> X<int>;
1332/// \endcode
1333extern const internal::VariadicDynCastAllOfMatcher<Decl, CXXDeductionGuideDecl>
1334 cxxDeductionGuideDecl;
1335
1336/// Matches variable declarations.
1337///
1338/// Note: this does not match declarations of member variables, which are
1339/// "field" declarations in Clang parlance.
1340///
1341/// Example matches a
1342/// \code
1343/// int a;
1344/// \endcode
1345extern const internal::VariadicDynCastAllOfMatcher<Decl, VarDecl> varDecl;
1346
1347/// Matches field declarations.
1348///
1349/// Given
1350/// \code
1351/// class X { int m; };
1352/// \endcode
1353/// fieldDecl()
1354/// matches 'm'.
1355extern const internal::VariadicDynCastAllOfMatcher<Decl, FieldDecl> fieldDecl;
1356
1357/// Matches indirect field declarations.
1358///
1359/// Given
1360/// \code
1361/// struct X { struct { int a; }; };
1362/// \endcode
1363/// indirectFieldDecl()
1364/// matches 'a'.
1365extern const internal::VariadicDynCastAllOfMatcher<Decl, IndirectFieldDecl>
1366 indirectFieldDecl;
1367
1368/// Matches function declarations.
1369///
1370/// Example matches f
1371/// \code
1372/// void f();
1373/// \endcode
1374extern const internal::VariadicDynCastAllOfMatcher<Decl, FunctionDecl>
1375 functionDecl;
1376
1377/// Matches C++ function template declarations.
1378///
1379/// Example matches f
1380/// \code
1381/// template<class T> void f(T t) {}
1382/// \endcode
1383extern const internal::VariadicDynCastAllOfMatcher<Decl, FunctionTemplateDecl>
1384 functionTemplateDecl;
1385
1386/// Matches friend declarations.
1387///
1388/// Given
1389/// \code
1390/// class X { friend void foo(); };
1391/// \endcode
1392/// friendDecl()
1393/// matches 'friend void foo()'.
1394extern const internal::VariadicDynCastAllOfMatcher<Decl, FriendDecl> friendDecl;
1395
1396/// Matches statements.
1397///
1398/// Given
1399/// \code
1400/// { ++a; }
1401/// \endcode
1402/// stmt()
1403/// matches both the compound statement '{ ++a; }' and '++a'.
1404extern const internal::VariadicAllOfMatcher<Stmt> stmt;
1405
1406/// Matches declaration statements.
1407///
1408/// Given
1409/// \code
1410/// int a;
1411/// \endcode
1412/// declStmt()
1413/// matches 'int a'.
1414extern const internal::VariadicDynCastAllOfMatcher<Stmt, DeclStmt> declStmt;
1415
1416/// Matches member expressions.
1417///
1418/// Given
1419/// \code
1420/// class Y {
1421/// void x() { this->x(); x(); Y y; y.x(); a; this->b; Y::b; }
1422/// int a; static int b;
1423/// };
1424/// \endcode
1425/// memberExpr()
1426/// matches this->x, x, y.x, a, this->b
1427extern const internal::VariadicDynCastAllOfMatcher<Stmt, MemberExpr> memberExpr;
1428
1429/// Matches unresolved member expressions.
1430///
1431/// Given
1432/// \code
1433/// struct X {
1434/// template <class T> void f();
1435/// void g();
1436/// };
1437/// template <class T> void h() { X x; x.f<T>(); x.g(); }
1438/// \endcode
1439/// unresolvedMemberExpr()
1440/// matches x.f<T>
1441extern const internal::VariadicDynCastAllOfMatcher<Stmt, UnresolvedMemberExpr>
1442 unresolvedMemberExpr;
1443
1444/// Matches member expressions where the actual member referenced could not be
1445/// resolved because the base expression or the member name was dependent.
1446///
1447/// Given
1448/// \code
1449/// template <class T> void f() { T t; t.g(); }
1450/// \endcode
1451/// cxxDependentScopeMemberExpr()
1452/// matches t.g
1453extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1454 CXXDependentScopeMemberExpr>
1455 cxxDependentScopeMemberExpr;
1456
1457/// Matches call expressions.
1458///
1459/// Example matches x.y() and y()
1460/// \code
1461/// X x;
1462/// x.y();
1463/// y();
1464/// \endcode
1465extern const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr;
1466
1467/// Matches call expressions which were resolved using ADL.
1468///
1469/// Example matches y(x) but not y(42) or NS::y(x).
1470/// \code
1471/// namespace NS {
1472/// struct X {};
1473/// void y(X);
1474/// }
1475///
1476/// void y(...);
1477///
1478/// void test() {
1479/// NS::X x;
1480/// y(x); // Matches
1481/// NS::y(x); // Doesn't match
1482/// y(42); // Doesn't match
1483/// using NS::y;
1484/// y(x); // Found by both unqualified lookup and ADL, doesn't match
1485// }
1486/// \endcode
1487AST_MATCHER(CallExpr, usesADL)namespace internal { class matcher_usesADLMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<CallExpr>
{ public: explicit matcher_usesADLMatcher() = default; bool matches
(const CallExpr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<CallExpr> usesADL() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_usesADLMatcher
()); } inline bool internal::matcher_usesADLMatcher::matches(
const CallExpr &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.usesADL(); }
1488
1489/// Matches lambda expressions.
1490///
1491/// Example matches [&](){return 5;}
1492/// \code
1493/// [&](){return 5;}
1494/// \endcode
1495extern const internal::VariadicDynCastAllOfMatcher<Stmt, LambdaExpr> lambdaExpr;
1496
1497/// Matches member call expressions.
1498///
1499/// Example matches x.y()
1500/// \code
1501/// X x;
1502/// x.y();
1503/// \endcode
1504extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXMemberCallExpr>
1505 cxxMemberCallExpr;
1506
1507/// Matches ObjectiveC Message invocation expressions.
1508///
1509/// The innermost message send invokes the "alloc" class method on the
1510/// NSString class, while the outermost message send invokes the
1511/// "initWithString" instance method on the object returned from
1512/// NSString's "alloc". This matcher should match both message sends.
1513/// \code
1514/// [[NSString alloc] initWithString:@"Hello"]
1515/// \endcode
1516extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCMessageExpr>
1517 objcMessageExpr;
1518
1519/// Matches ObjectiveC String literal expressions.
1520///
1521/// Example matches @"abcd"
1522/// \code
1523/// NSString *s = @"abcd";
1524/// \endcode
1525extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCStringLiteral>
1526 objcStringLiteral;
1527
1528/// Matches Objective-C interface declarations.
1529///
1530/// Example matches Foo
1531/// \code
1532/// @interface Foo
1533/// @end
1534/// \endcode
1535extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCInterfaceDecl>
1536 objcInterfaceDecl;
1537
1538/// Matches Objective-C implementation declarations.
1539///
1540/// Example matches Foo
1541/// \code
1542/// @implementation Foo
1543/// @end
1544/// \endcode
1545extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCImplementationDecl>
1546 objcImplementationDecl;
1547
1548/// Matches Objective-C protocol declarations.
1549///
1550/// Example matches FooDelegate
1551/// \code
1552/// @protocol FooDelegate
1553/// @end
1554/// \endcode
1555extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCProtocolDecl>
1556 objcProtocolDecl;
1557
1558/// Matches Objective-C category declarations.
1559///
1560/// Example matches Foo (Additions)
1561/// \code
1562/// @interface Foo (Additions)
1563/// @end
1564/// \endcode
1565extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCCategoryDecl>
1566 objcCategoryDecl;
1567
1568/// Matches Objective-C category definitions.
1569///
1570/// Example matches Foo (Additions)
1571/// \code
1572/// @implementation Foo (Additions)
1573/// @end
1574/// \endcode
1575extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCCategoryImplDecl>
1576 objcCategoryImplDecl;
1577
1578/// Matches Objective-C method declarations.
1579///
1580/// Example matches both declaration and definition of -[Foo method]
1581/// \code
1582/// @interface Foo
1583/// - (void)method;
1584/// @end
1585///
1586/// @implementation Foo
1587/// - (void)method {}
1588/// @end
1589/// \endcode
1590extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCMethodDecl>
1591 objcMethodDecl;
1592
1593/// Matches block declarations.
1594///
1595/// Example matches the declaration of the nameless block printing an input
1596/// integer.
1597///
1598/// \code
1599/// myFunc(^(int p) {
1600/// printf("%d", p);
1601/// })
1602/// \endcode
1603extern const internal::VariadicDynCastAllOfMatcher<Decl, BlockDecl>
1604 blockDecl;
1605
1606/// Matches Objective-C instance variable declarations.
1607///
1608/// Example matches _enabled
1609/// \code
1610/// @implementation Foo {
1611/// BOOL _enabled;
1612/// }
1613/// @end
1614/// \endcode
1615extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCIvarDecl>
1616 objcIvarDecl;
1617
1618/// Matches Objective-C property declarations.
1619///
1620/// Example matches enabled
1621/// \code
1622/// @interface Foo
1623/// @property BOOL enabled;
1624/// @end
1625/// \endcode
1626extern const internal::VariadicDynCastAllOfMatcher<Decl, ObjCPropertyDecl>
1627 objcPropertyDecl;
1628
1629/// Matches Objective-C \@throw statements.
1630///
1631/// Example matches \@throw
1632/// \code
1633/// @throw obj;
1634/// \endcode
1635extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
1636 objcThrowStmt;
1637
1638/// Matches Objective-C @try statements.
1639///
1640/// Example matches @try
1641/// \code
1642/// @try {}
1643/// @catch (...) {}
1644/// \endcode
1645extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtTryStmt>
1646 objcTryStmt;
1647
1648/// Matches Objective-C @catch statements.
1649///
1650/// Example matches @catch
1651/// \code
1652/// @try {}
1653/// @catch (...) {}
1654/// \endcode
1655extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
1656 objcCatchStmt;
1657
1658/// Matches Objective-C @finally statements.
1659///
1660/// Example matches @finally
1661/// \code
1662/// @try {}
1663/// @finally {}
1664/// \endcode
1665extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtFinallyStmt>
1666 objcFinallyStmt;
1667
1668/// Matches expressions that introduce cleanups to be run at the end
1669/// of the sub-expression's evaluation.
1670///
1671/// Example matches std::string()
1672/// \code
1673/// const std::string str = std::string();
1674/// \endcode
1675extern const internal::VariadicDynCastAllOfMatcher<Stmt, ExprWithCleanups>
1676 exprWithCleanups;
1677
1678/// Matches init list expressions.
1679///
1680/// Given
1681/// \code
1682/// int a[] = { 1, 2 };
1683/// struct B { int x, y; };
1684/// B b = { 5, 6 };
1685/// \endcode
1686/// initListExpr()
1687/// matches "{ 1, 2 }" and "{ 5, 6 }"
1688extern const internal::VariadicDynCastAllOfMatcher<Stmt, InitListExpr>
1689 initListExpr;
1690
1691/// Matches the syntactic form of init list expressions
1692/// (if expression have it).
1693AST_MATCHER_P(InitListExpr, hasSyntacticForm,namespace internal { class matcher_hasSyntacticForm0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
InitListExpr> { public: explicit matcher_hasSyntacticForm0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const InitListExpr &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<InitListExpr
> hasSyntacticForm( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasSyntacticForm0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<InitListExpr
> ( &hasSyntacticForm_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasSyntacticForm0Matcher
::matches( const InitListExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
1694 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasSyntacticForm0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
InitListExpr> { public: explicit matcher_hasSyntacticForm0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const InitListExpr &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<InitListExpr
> hasSyntacticForm( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasSyntacticForm0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<InitListExpr
> ( &hasSyntacticForm_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasSyntacticForm0Matcher
::matches( const InitListExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
1695 const Expr *SyntForm = Node.getSyntacticForm();
1696 return (SyntForm != nullptr &&
1697 InnerMatcher.matches(*SyntForm, Finder, Builder));
1698}
1699
1700/// Matches C++ initializer list expressions.
1701///
1702/// Given
1703/// \code
1704/// std::vector<int> a({ 1, 2, 3 });
1705/// std::vector<int> b = { 4, 5 };
1706/// int c[] = { 6, 7 };
1707/// std::pair<int, int> d = { 8, 9 };
1708/// \endcode
1709/// cxxStdInitializerListExpr()
1710/// matches "{ 1, 2, 3 }" and "{ 4, 5 }"
1711extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1712 CXXStdInitializerListExpr>
1713 cxxStdInitializerListExpr;
1714
1715/// Matches implicit initializers of init list expressions.
1716///
1717/// Given
1718/// \code
1719/// point ptarray[10] = { [2].y = 1.0, [2].x = 2.0, [0].x = 1.0 };
1720/// \endcode
1721/// implicitValueInitExpr()
1722/// matches "[0].y" (implicitly)
1723extern const internal::VariadicDynCastAllOfMatcher<Stmt, ImplicitValueInitExpr>
1724 implicitValueInitExpr;
1725
1726/// Matches paren list expressions.
1727/// ParenListExprs don't have a predefined type and are used for late parsing.
1728/// In the final AST, they can be met in template declarations.
1729///
1730/// Given
1731/// \code
1732/// template<typename T> class X {
1733/// void f() {
1734/// X x(*this);
1735/// int a = 0, b = 1; int i = (a, b);
1736/// }
1737/// };
1738/// \endcode
1739/// parenListExpr() matches "*this" but NOT matches (a, b) because (a, b)
1740/// has a predefined type and is a ParenExpr, not a ParenListExpr.
1741extern const internal::VariadicDynCastAllOfMatcher<Stmt, ParenListExpr>
1742 parenListExpr;
1743
1744/// Matches substitutions of non-type template parameters.
1745///
1746/// Given
1747/// \code
1748/// template <int N>
1749/// struct A { static const int n = N; };
1750/// struct B : public A<42> {};
1751/// \endcode
1752/// substNonTypeTemplateParmExpr()
1753/// matches "N" in the right-hand side of "static const int n = N;"
1754extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1755 SubstNonTypeTemplateParmExpr>
1756 substNonTypeTemplateParmExpr;
1757
1758/// Matches using declarations.
1759///
1760/// Given
1761/// \code
1762/// namespace X { int x; }
1763/// using X::x;
1764/// \endcode
1765/// usingDecl()
1766/// matches \code using X::x \endcode
1767extern const internal::VariadicDynCastAllOfMatcher<Decl, UsingDecl> usingDecl;
1768
1769/// Matches using-enum declarations.
1770///
1771/// Given
1772/// \code
1773/// namespace X { enum x {...}; }
1774/// using enum X::x;
1775/// \endcode
1776/// usingEnumDecl()
1777/// matches \code using enum X::x \endcode
1778extern const internal::VariadicDynCastAllOfMatcher<Decl, UsingEnumDecl>
1779 usingEnumDecl;
1780
1781/// Matches using namespace declarations.
1782///
1783/// Given
1784/// \code
1785/// namespace X { int x; }
1786/// using namespace X;
1787/// \endcode
1788/// usingDirectiveDecl()
1789/// matches \code using namespace X \endcode
1790extern const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
1791 usingDirectiveDecl;
1792
1793/// Matches reference to a name that can be looked up during parsing
1794/// but could not be resolved to a specific declaration.
1795///
1796/// Given
1797/// \code
1798/// template<typename T>
1799/// T foo() { T a; return a; }
1800/// template<typename T>
1801/// void bar() {
1802/// foo<T>();
1803/// }
1804/// \endcode
1805/// unresolvedLookupExpr()
1806/// matches \code foo<T>() \endcode
1807extern const internal::VariadicDynCastAllOfMatcher<Stmt, UnresolvedLookupExpr>
1808 unresolvedLookupExpr;
1809
1810/// Matches unresolved using value declarations.
1811///
1812/// Given
1813/// \code
1814/// template<typename X>
1815/// class C : private X {
1816/// using X::x;
1817/// };
1818/// \endcode
1819/// unresolvedUsingValueDecl()
1820/// matches \code using X::x \endcode
1821extern const internal::VariadicDynCastAllOfMatcher<Decl,
1822 UnresolvedUsingValueDecl>
1823 unresolvedUsingValueDecl;
1824
1825/// Matches unresolved using value declarations that involve the
1826/// typename.
1827///
1828/// Given
1829/// \code
1830/// template <typename T>
1831/// struct Base { typedef T Foo; };
1832///
1833/// template<typename T>
1834/// struct S : private Base<T> {
1835/// using typename Base<T>::Foo;
1836/// };
1837/// \endcode
1838/// unresolvedUsingTypenameDecl()
1839/// matches \code using Base<T>::Foo \endcode
1840extern const internal::VariadicDynCastAllOfMatcher<Decl,
1841 UnresolvedUsingTypenameDecl>
1842 unresolvedUsingTypenameDecl;
1843
1844/// Matches a constant expression wrapper.
1845///
1846/// Example matches the constant in the case statement:
1847/// (matcher = constantExpr())
1848/// \code
1849/// switch (a) {
1850/// case 37: break;
1851/// }
1852/// \endcode
1853extern const internal::VariadicDynCastAllOfMatcher<Stmt, ConstantExpr>
1854 constantExpr;
1855
1856/// Matches parentheses used in expressions.
1857///
1858/// Example matches (foo() + 1)
1859/// \code
1860/// int foo() { return 1; }
1861/// int a = (foo() + 1);
1862/// \endcode
1863extern const internal::VariadicDynCastAllOfMatcher<Stmt, ParenExpr> parenExpr;
1864
1865/// Matches constructor call expressions (including implicit ones).
1866///
1867/// Example matches string(ptr, n) and ptr within arguments of f
1868/// (matcher = cxxConstructExpr())
1869/// \code
1870/// void f(const string &a, const string &b);
1871/// char *ptr;
1872/// int n;
1873/// f(string(ptr, n), ptr);
1874/// \endcode
1875extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstructExpr>
1876 cxxConstructExpr;
1877
1878/// Matches unresolved constructor call expressions.
1879///
1880/// Example matches T(t) in return statement of f
1881/// (matcher = cxxUnresolvedConstructExpr())
1882/// \code
1883/// template <typename T>
1884/// void f(const T& t) { return T(t); }
1885/// \endcode
1886extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1887 CXXUnresolvedConstructExpr>
1888 cxxUnresolvedConstructExpr;
1889
1890/// Matches implicit and explicit this expressions.
1891///
1892/// Example matches the implicit this expression in "return i".
1893/// (matcher = cxxThisExpr())
1894/// \code
1895/// struct foo {
1896/// int i;
1897/// int f() { return i; }
1898/// };
1899/// \endcode
1900extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThisExpr>
1901 cxxThisExpr;
1902
1903/// Matches nodes where temporaries are created.
1904///
1905/// Example matches FunctionTakesString(GetStringByValue())
1906/// (matcher = cxxBindTemporaryExpr())
1907/// \code
1908/// FunctionTakesString(GetStringByValue());
1909/// FunctionTakesStringByPointer(GetStringPointer());
1910/// \endcode
1911extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXBindTemporaryExpr>
1912 cxxBindTemporaryExpr;
1913
1914/// Matches nodes where temporaries are materialized.
1915///
1916/// Example: Given
1917/// \code
1918/// struct T {void func();};
1919/// T f();
1920/// void g(T);
1921/// \endcode
1922/// materializeTemporaryExpr() matches 'f()' in these statements
1923/// \code
1924/// T u(f());
1925/// g(f());
1926/// f().func();
1927/// \endcode
1928/// but does not match
1929/// \code
1930/// f();
1931/// \endcode
1932extern const internal::VariadicDynCastAllOfMatcher<Stmt,
1933 MaterializeTemporaryExpr>
1934 materializeTemporaryExpr;
1935
1936/// Matches new expressions.
1937///
1938/// Given
1939/// \code
1940/// new X;
1941/// \endcode
1942/// cxxNewExpr()
1943/// matches 'new X'.
1944extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXNewExpr> cxxNewExpr;
1945
1946/// Matches delete expressions.
1947///
1948/// Given
1949/// \code
1950/// delete X;
1951/// \endcode
1952/// cxxDeleteExpr()
1953/// matches 'delete X'.
1954extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXDeleteExpr>
1955 cxxDeleteExpr;
1956
1957/// Matches noexcept expressions.
1958///
1959/// Given
1960/// \code
1961/// bool a() noexcept;
1962/// bool b() noexcept(true);
1963/// bool c() noexcept(false);
1964/// bool d() noexcept(noexcept(a()));
1965/// bool e = noexcept(b()) || noexcept(c());
1966/// \endcode
1967/// cxxNoexceptExpr()
1968/// matches `noexcept(a())`, `noexcept(b())` and `noexcept(c())`.
1969/// doesn't match the noexcept specifier in the declarations a, b, c or d.
1970extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXNoexceptExpr>
1971 cxxNoexceptExpr;
1972
1973/// Matches array subscript expressions.
1974///
1975/// Given
1976/// \code
1977/// int i = a[1];
1978/// \endcode
1979/// arraySubscriptExpr()
1980/// matches "a[1]"
1981extern const internal::VariadicDynCastAllOfMatcher<Stmt, ArraySubscriptExpr>
1982 arraySubscriptExpr;
1983
1984/// Matches the value of a default argument at the call site.
1985///
1986/// Example matches the CXXDefaultArgExpr placeholder inserted for the
1987/// default value of the second parameter in the call expression f(42)
1988/// (matcher = cxxDefaultArgExpr())
1989/// \code
1990/// void f(int x, int y = 0);
1991/// f(42);
1992/// \endcode
1993extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXDefaultArgExpr>
1994 cxxDefaultArgExpr;
1995
1996/// Matches overloaded operator calls.
1997///
1998/// Note that if an operator isn't overloaded, it won't match. Instead, use
1999/// binaryOperator matcher.
2000/// Currently it does not match operators such as new delete.
2001/// FIXME: figure out why these do not match?
2002///
2003/// Example matches both operator<<((o << b), c) and operator<<(o, b)
2004/// (matcher = cxxOperatorCallExpr())
2005/// \code
2006/// ostream &operator<< (ostream &out, int i) { };
2007/// ostream &o; int b = 1, c = 1;
2008/// o << b << c;
2009/// \endcode
2010/// See also the binaryOperation() matcher for more-general matching of binary
2011/// uses of this AST node.
2012extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXOperatorCallExpr>
2013 cxxOperatorCallExpr;
2014
2015/// Matches rewritten binary operators
2016///
2017/// Example matches use of "<":
2018/// \code
2019/// #include <compare>
2020/// struct HasSpaceshipMem {
2021/// int a;
2022/// constexpr auto operator<=>(const HasSpaceshipMem&) const = default;
2023/// };
2024/// void compare() {
2025/// HasSpaceshipMem hs1, hs2;
2026/// if (hs1 < hs2)
2027/// return;
2028/// }
2029/// \endcode
2030/// See also the binaryOperation() matcher for more-general matching
2031/// of this AST node.
2032extern const internal::VariadicDynCastAllOfMatcher<Stmt,
2033 CXXRewrittenBinaryOperator>
2034 cxxRewrittenBinaryOperator;
2035
2036/// Matches expressions.
2037///
2038/// Example matches x()
2039/// \code
2040/// void f() { x(); }
2041/// \endcode
2042extern const internal::VariadicDynCastAllOfMatcher<Stmt, Expr> expr;
2043
2044/// Matches expressions that refer to declarations.
2045///
2046/// Example matches x in if (x)
2047/// \code
2048/// bool x;
2049/// if (x) {}
2050/// \endcode
2051extern const internal::VariadicDynCastAllOfMatcher<Stmt, DeclRefExpr>
2052 declRefExpr;
2053
2054/// Matches a reference to an ObjCIvar.
2055///
2056/// Example: matches "a" in "init" method:
2057/// \code
2058/// @implementation A {
2059/// NSString *a;
2060/// }
2061/// - (void) init {
2062/// a = @"hello";
2063/// }
2064/// \endcode
2065extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCIvarRefExpr>
2066 objcIvarRefExpr;
2067
2068/// Matches a reference to a block.
2069///
2070/// Example: matches "^{}":
2071/// \code
2072/// void f() { ^{}(); }
2073/// \endcode
2074extern const internal::VariadicDynCastAllOfMatcher<Stmt, BlockExpr> blockExpr;
2075
2076/// Matches if statements.
2077///
2078/// Example matches 'if (x) {}'
2079/// \code
2080/// if (x) {}
2081/// \endcode
2082extern const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;
2083
2084/// Matches for statements.
2085///
2086/// Example matches 'for (;;) {}'
2087/// \code
2088/// for (;;) {}
2089/// int i[] = {1, 2, 3}; for (auto a : i);
2090/// \endcode
2091extern const internal::VariadicDynCastAllOfMatcher<Stmt, ForStmt> forStmt;
2092
2093/// Matches the increment statement of a for loop.
2094///
2095/// Example:
2096/// forStmt(hasIncrement(unaryOperator(hasOperatorName("++"))))
2097/// matches '++x' in
2098/// \code
2099/// for (x; x < N; ++x) { }
2100/// \endcode
2101AST_MATCHER_P(ForStmt, hasIncrement, internal::Matcher<Stmt>,namespace internal { class matcher_hasIncrement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ForStmt
> { public: explicit matcher_hasIncrement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ForStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ForStmt> hasIncrement
( internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasIncrement0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ForStmt> ( &hasIncrement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); inline
bool internal::matcher_hasIncrement0Matcher::matches( const ForStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
2102 InnerMatcher)namespace internal { class matcher_hasIncrement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ForStmt
> { public: explicit matcher_hasIncrement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ForStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ForStmt> hasIncrement
( internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasIncrement0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ForStmt> ( &hasIncrement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); inline
bool internal::matcher_hasIncrement0Matcher::matches( const ForStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
2103 const Stmt *const Increment = Node.getInc();
2104 return (Increment != nullptr &&
2105 InnerMatcher.matches(*Increment, Finder, Builder));
2106}
2107
2108/// Matches the initialization statement of a for loop.
2109///
2110/// Example:
2111/// forStmt(hasLoopInit(declStmt()))
2112/// matches 'int x = 0' in
2113/// \code
2114/// for (int x = 0; x < N; ++x) { }
2115/// \endcode
2116AST_MATCHER_P(ForStmt, hasLoopInit, internal::Matcher<Stmt>,namespace internal { class matcher_hasLoopInit0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ForStmt
> { public: explicit matcher_hasLoopInit0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ForStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ForStmt> hasLoopInit(
internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasLoopInit0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ForStmt> ( &hasLoopInit_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); inline
bool internal::matcher_hasLoopInit0Matcher::matches( const ForStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
2117 InnerMatcher)namespace internal { class matcher_hasLoopInit0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ForStmt
> { public: explicit matcher_hasLoopInit0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ForStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ForStmt> hasLoopInit(
internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasLoopInit0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ForStmt> ( &hasLoopInit_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); inline
bool internal::matcher_hasLoopInit0Matcher::matches( const ForStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
2118 const Stmt *const Init = Node.getInit();
2119 return (Init != nullptr && InnerMatcher.matches(*Init, Finder, Builder));
2120}
2121
2122/// Matches range-based for statements.
2123///
2124/// cxxForRangeStmt() matches 'for (auto a : i)'
2125/// \code
2126/// int i[] = {1, 2, 3}; for (auto a : i);
2127/// for(int j = 0; j < 5; ++j);
2128/// \endcode
2129extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXForRangeStmt>
2130 cxxForRangeStmt;
2131
2132/// Matches the initialization statement of a for loop.
2133///
2134/// Example:
2135/// forStmt(hasLoopVariable(anything()))
2136/// matches 'int x' in
2137/// \code
2138/// for (int x : a) { }
2139/// \endcode
2140AST_MATCHER_P(CXXForRangeStmt, hasLoopVariable, internal::Matcher<VarDecl>,namespace internal { class matcher_hasLoopVariable0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXForRangeStmt
> { public: explicit matcher_hasLoopVariable0Matcher( internal
::Matcher<VarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXForRangeStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<VarDecl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> hasLoopVariable( internal::Matcher<VarDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasLoopVariable0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> ( &hasLoopVariable_Type0)(internal::Matcher<VarDecl
> const &InnerMatcher); inline bool internal::matcher_hasLoopVariable0Matcher
::matches( const CXXForRangeStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
2141 InnerMatcher)namespace internal { class matcher_hasLoopVariable0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXForRangeStmt
> { public: explicit matcher_hasLoopVariable0Matcher( internal
::Matcher<VarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXForRangeStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<VarDecl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> hasLoopVariable( internal::Matcher<VarDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasLoopVariable0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> ( &hasLoopVariable_Type0)(internal::Matcher<VarDecl
> const &InnerMatcher); inline bool internal::matcher_hasLoopVariable0Matcher
::matches( const CXXForRangeStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
2142 const VarDecl *const Var = Node.getLoopVariable();
2143 return (Var != nullptr && InnerMatcher.matches(*Var, Finder, Builder));
2144}
2145
2146/// Matches the range initialization statement of a for loop.
2147///
2148/// Example:
2149/// forStmt(hasRangeInit(anything()))
2150/// matches 'a' in
2151/// \code
2152/// for (int x : a) { }
2153/// \endcode
2154AST_MATCHER_P(CXXForRangeStmt, hasRangeInit, internal::Matcher<Expr>,namespace internal { class matcher_hasRangeInit0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXForRangeStmt
> { public: explicit matcher_hasRangeInit0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXForRangeStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> hasRangeInit( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasRangeInit0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<CXXForRangeStmt> ( &
hasRangeInit_Type0)(internal::Matcher<Expr> const &
InnerMatcher); inline bool internal::matcher_hasRangeInit0Matcher
::matches( const CXXForRangeStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
2155 InnerMatcher)namespace internal { class matcher_hasRangeInit0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXForRangeStmt
> { public: explicit matcher_hasRangeInit0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXForRangeStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXForRangeStmt
> hasRangeInit( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasRangeInit0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<CXXForRangeStmt> ( &
hasRangeInit_Type0)(internal::Matcher<Expr> const &
InnerMatcher); inline bool internal::matcher_hasRangeInit0Matcher
::matches( const CXXForRangeStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
2156 const Expr *const Init = Node.getRangeInit();
2157 return (Init != nullptr && InnerMatcher.matches(*Init, Finder, Builder));
2158}
2159
2160/// Matches while statements.
2161///
2162/// Given
2163/// \code
2164/// while (true) {}
2165/// \endcode
2166/// whileStmt()
2167/// matches 'while (true) {}'.
2168extern const internal::VariadicDynCastAllOfMatcher<Stmt, WhileStmt> whileStmt;
2169
2170/// Matches do statements.
2171///
2172/// Given
2173/// \code
2174/// do {} while (true);
2175/// \endcode
2176/// doStmt()
2177/// matches 'do {} while(true)'
2178extern const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
2179
2180/// Matches break statements.
2181///
2182/// Given
2183/// \code
2184/// while (true) { break; }
2185/// \endcode
2186/// breakStmt()
2187/// matches 'break'
2188extern const internal::VariadicDynCastAllOfMatcher<Stmt, BreakStmt> breakStmt;
2189
2190/// Matches continue statements.
2191///
2192/// Given
2193/// \code
2194/// while (true) { continue; }
2195/// \endcode
2196/// continueStmt()
2197/// matches 'continue'
2198extern const internal::VariadicDynCastAllOfMatcher<Stmt, ContinueStmt>
2199 continueStmt;
2200
2201/// Matches co_return statements.
2202///
2203/// Given
2204/// \code
2205/// while (true) { co_return; }
2206/// \endcode
2207/// coreturnStmt()
2208/// matches 'co_return'
2209extern const internal::VariadicDynCastAllOfMatcher<Stmt, CoreturnStmt>
2210 coreturnStmt;
2211
2212/// Matches return statements.
2213///
2214/// Given
2215/// \code
2216/// return 1;
2217/// \endcode
2218/// returnStmt()
2219/// matches 'return 1'
2220extern const internal::VariadicDynCastAllOfMatcher<Stmt, ReturnStmt> returnStmt;
2221
2222/// Matches goto statements.
2223///
2224/// Given
2225/// \code
2226/// goto FOO;
2227/// FOO: bar();
2228/// \endcode
2229/// gotoStmt()
2230/// matches 'goto FOO'
2231extern const internal::VariadicDynCastAllOfMatcher<Stmt, GotoStmt> gotoStmt;
2232
2233/// Matches label statements.
2234///
2235/// Given
2236/// \code
2237/// goto FOO;
2238/// FOO: bar();
2239/// \endcode
2240/// labelStmt()
2241/// matches 'FOO:'
2242extern const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;
2243
2244/// Matches address of label statements (GNU extension).
2245///
2246/// Given
2247/// \code
2248/// FOO: bar();
2249/// void *ptr = &&FOO;
2250/// goto *bar;
2251/// \endcode
2252/// addrLabelExpr()
2253/// matches '&&FOO'
2254extern const internal::VariadicDynCastAllOfMatcher<Stmt, AddrLabelExpr>
2255 addrLabelExpr;
2256
2257/// Matches switch statements.
2258///
2259/// Given
2260/// \code
2261/// switch(a) { case 42: break; default: break; }
2262/// \endcode
2263/// switchStmt()
2264/// matches 'switch(a)'.
2265extern const internal::VariadicDynCastAllOfMatcher<Stmt, SwitchStmt> switchStmt;
2266
2267/// Matches case and default statements inside switch statements.
2268///
2269/// Given
2270/// \code
2271/// switch(a) { case 42: break; default: break; }
2272/// \endcode
2273/// switchCase()
2274/// matches 'case 42:' and 'default:'.
2275extern const internal::VariadicDynCastAllOfMatcher<Stmt, SwitchCase> switchCase;
2276
2277/// Matches case statements inside switch statements.
2278///
2279/// Given
2280/// \code
2281/// switch(a) { case 42: break; default: break; }
2282/// \endcode
2283/// caseStmt()
2284/// matches 'case 42:'.
2285extern const internal::VariadicDynCastAllOfMatcher<Stmt, CaseStmt> caseStmt;
2286
2287/// Matches default statements inside switch statements.
2288///
2289/// Given
2290/// \code
2291/// switch(a) { case 42: break; default: break; }
2292/// \endcode
2293/// defaultStmt()
2294/// matches 'default:'.
2295extern const internal::VariadicDynCastAllOfMatcher<Stmt, DefaultStmt>
2296 defaultStmt;
2297
2298/// Matches compound statements.
2299///
2300/// Example matches '{}' and '{{}}' in 'for (;;) {{}}'
2301/// \code
2302/// for (;;) {{}}
2303/// \endcode
2304extern const internal::VariadicDynCastAllOfMatcher<Stmt, CompoundStmt>
2305 compoundStmt;
2306
2307/// Matches catch statements.
2308///
2309/// \code
2310/// try {} catch(int i) {}
2311/// \endcode
2312/// cxxCatchStmt()
2313/// matches 'catch(int i)'
2314extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXCatchStmt>
2315 cxxCatchStmt;
2316
2317/// Matches try statements.
2318///
2319/// \code
2320/// try {} catch(int i) {}
2321/// \endcode
2322/// cxxTryStmt()
2323/// matches 'try {}'
2324extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXTryStmt> cxxTryStmt;
2325
2326/// Matches throw expressions.
2327///
2328/// \code
2329/// try { throw 5; } catch(int i) {}
2330/// \endcode
2331/// cxxThrowExpr()
2332/// matches 'throw 5'
2333extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr>
2334 cxxThrowExpr;
2335
2336/// Matches null statements.
2337///
2338/// \code
2339/// foo();;
2340/// \endcode
2341/// nullStmt()
2342/// matches the second ';'
2343extern const internal::VariadicDynCastAllOfMatcher<Stmt, NullStmt> nullStmt;
2344
2345/// Matches asm statements.
2346///
2347/// \code
2348/// int i = 100;
2349/// __asm("mov al, 2");
2350/// \endcode
2351/// asmStmt()
2352/// matches '__asm("mov al, 2")'
2353extern const internal::VariadicDynCastAllOfMatcher<Stmt, AsmStmt> asmStmt;
2354
2355/// Matches bool literals.
2356///
2357/// Example matches true
2358/// \code
2359/// true
2360/// \endcode
2361extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXBoolLiteralExpr>
2362 cxxBoolLiteral;
2363
2364/// Matches string literals (also matches wide string literals).
2365///
2366/// Example matches "abcd", L"abcd"
2367/// \code
2368/// char *s = "abcd";
2369/// wchar_t *ws = L"abcd";
2370/// \endcode
2371extern const internal::VariadicDynCastAllOfMatcher<Stmt, StringLiteral>
2372 stringLiteral;
2373
2374/// Matches character literals (also matches wchar_t).
2375///
2376/// Not matching Hex-encoded chars (e.g. 0x1234, which is a IntegerLiteral),
2377/// though.
2378///
2379/// Example matches 'a', L'a'
2380/// \code
2381/// char ch = 'a';
2382/// wchar_t chw = L'a';
2383/// \endcode
2384extern const internal::VariadicDynCastAllOfMatcher<Stmt, CharacterLiteral>
2385 characterLiteral;
2386
2387/// Matches integer literals of all sizes / encodings, e.g.
2388/// 1, 1L, 0x1 and 1U.
2389///
2390/// Does not match character-encoded integers such as L'a'.
2391extern const internal::VariadicDynCastAllOfMatcher<Stmt, IntegerLiteral>
2392 integerLiteral;
2393
2394/// Matches float literals of all sizes / encodings, e.g.
2395/// 1.0, 1.0f, 1.0L and 1e10.
2396///
2397/// Does not match implicit conversions such as
2398/// \code
2399/// float a = 10;
2400/// \endcode
2401extern const internal::VariadicDynCastAllOfMatcher<Stmt, FloatingLiteral>
2402 floatLiteral;
2403
2404/// Matches imaginary literals, which are based on integer and floating
2405/// point literals e.g.: 1i, 1.0i
2406extern const internal::VariadicDynCastAllOfMatcher<Stmt, ImaginaryLiteral>
2407 imaginaryLiteral;
2408
2409/// Matches fixed point literals
2410extern const internal::VariadicDynCastAllOfMatcher<Stmt, FixedPointLiteral>
2411 fixedPointLiteral;
2412
2413/// Matches user defined literal operator call.
2414///
2415/// Example match: "foo"_suffix
2416extern const internal::VariadicDynCastAllOfMatcher<Stmt, UserDefinedLiteral>
2417 userDefinedLiteral;
2418
2419/// Matches compound (i.e. non-scalar) literals
2420///
2421/// Example match: {1}, (1, 2)
2422/// \code
2423/// int array[4] = {1};
2424/// vector int myvec = (vector int)(1, 2);
2425/// \endcode
2426extern const internal::VariadicDynCastAllOfMatcher<Stmt, CompoundLiteralExpr>
2427 compoundLiteralExpr;
2428
2429/// Matches co_await expressions.
2430///
2431/// Given
2432/// \code
2433/// co_await 1;
2434/// \endcode
2435/// coawaitExpr()
2436/// matches 'co_await 1'
2437extern const internal::VariadicDynCastAllOfMatcher<Stmt, CoawaitExpr>
2438 coawaitExpr;
2439/// Matches co_await expressions where the type of the promise is dependent
2440extern const internal::VariadicDynCastAllOfMatcher<Stmt, DependentCoawaitExpr>
2441 dependentCoawaitExpr;
2442/// Matches co_yield expressions.
2443///
2444/// Given
2445/// \code
2446/// co_yield 1;
2447/// \endcode
2448/// coyieldExpr()
2449/// matches 'co_yield 1'
2450extern const internal::VariadicDynCastAllOfMatcher<Stmt, CoyieldExpr>
2451 coyieldExpr;
2452
2453/// Matches nullptr literal.
2454extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXNullPtrLiteralExpr>
2455 cxxNullPtrLiteralExpr;
2456
2457/// Matches GNU __builtin_choose_expr.
2458extern const internal::VariadicDynCastAllOfMatcher<Stmt, ChooseExpr>
2459 chooseExpr;
2460
2461/// Matches GNU __null expression.
2462extern const internal::VariadicDynCastAllOfMatcher<Stmt, GNUNullExpr>
2463 gnuNullExpr;
2464
2465/// Matches C11 _Generic expression.
2466extern const internal::VariadicDynCastAllOfMatcher<Stmt, GenericSelectionExpr>
2467 genericSelectionExpr;
2468
2469/// Matches atomic builtins.
2470/// Example matches __atomic_load_n(ptr, 1)
2471/// \code
2472/// void foo() { int *ptr; __atomic_load_n(ptr, 1); }
2473/// \endcode
2474extern const internal::VariadicDynCastAllOfMatcher<Stmt, AtomicExpr> atomicExpr;
2475
2476/// Matches statement expression (GNU extension).
2477///
2478/// Example match: ({ int X = 4; X; })
2479/// \code
2480/// int C = ({ int X = 4; X; });
2481/// \endcode
2482extern const internal::VariadicDynCastAllOfMatcher<Stmt, StmtExpr> stmtExpr;
2483
2484/// Matches binary operator expressions.
2485///
2486/// Example matches a || b
2487/// \code
2488/// !(a || b)
2489/// \endcode
2490/// See also the binaryOperation() matcher for more-general matching.
2491extern const internal::VariadicDynCastAllOfMatcher<Stmt, BinaryOperator>
2492 binaryOperator;
2493
2494/// Matches unary operator expressions.
2495///
2496/// Example matches !a
2497/// \code
2498/// !a || b
2499/// \endcode
2500extern const internal::VariadicDynCastAllOfMatcher<Stmt, UnaryOperator>
2501 unaryOperator;
2502
2503/// Matches conditional operator expressions.
2504///
2505/// Example matches a ? b : c
2506/// \code
2507/// (a ? b : c) + 42
2508/// \endcode
2509extern const internal::VariadicDynCastAllOfMatcher<Stmt, ConditionalOperator>
2510 conditionalOperator;
2511
2512/// Matches binary conditional operator expressions (GNU extension).
2513///
2514/// Example matches a ?: b
2515/// \code
2516/// (a ?: b) + 42;
2517/// \endcode
2518extern const internal::VariadicDynCastAllOfMatcher<Stmt,
2519 BinaryConditionalOperator>
2520 binaryConditionalOperator;
2521
2522/// Matches opaque value expressions. They are used as helpers
2523/// to reference another expressions and can be met
2524/// in BinaryConditionalOperators, for example.
2525///
2526/// Example matches 'a'
2527/// \code
2528/// (a ?: c) + 42;
2529/// \endcode
2530extern const internal::VariadicDynCastAllOfMatcher<Stmt, OpaqueValueExpr>
2531 opaqueValueExpr;
2532
2533/// Matches a C++ static_assert declaration.
2534///
2535/// Example:
2536/// staticAssertDecl()
2537/// matches
2538/// static_assert(sizeof(S) == sizeof(int))
2539/// in
2540/// \code
2541/// struct S {
2542/// int x;
2543/// };
2544/// static_assert(sizeof(S) == sizeof(int));
2545/// \endcode
2546extern const internal::VariadicDynCastAllOfMatcher<Decl, StaticAssertDecl>
2547 staticAssertDecl;
2548
2549/// Matches a reinterpret_cast expression.
2550///
2551/// Either the source expression or the destination type can be matched
2552/// using has(), but hasDestinationType() is more specific and can be
2553/// more readable.
2554///
2555/// Example matches reinterpret_cast<char*>(&p) in
2556/// \code
2557/// void* p = reinterpret_cast<char*>(&p);
2558/// \endcode
2559extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
2560 cxxReinterpretCastExpr;
2561
2562/// Matches a C++ static_cast expression.
2563///
2564/// \see hasDestinationType
2565/// \see reinterpretCast
2566///
2567/// Example:
2568/// cxxStaticCastExpr()
2569/// matches
2570/// static_cast<long>(8)
2571/// in
2572/// \code
2573/// long eight(static_cast<long>(8));
2574/// \endcode
2575extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXStaticCastExpr>
2576 cxxStaticCastExpr;
2577
2578/// Matches a dynamic_cast expression.
2579///
2580/// Example:
2581/// cxxDynamicCastExpr()
2582/// matches
2583/// dynamic_cast<D*>(&b);
2584/// in
2585/// \code
2586/// struct B { virtual ~B() {} }; struct D : B {};
2587/// B b;
2588/// D* p = dynamic_cast<D*>(&b);
2589/// \endcode
2590extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXDynamicCastExpr>
2591 cxxDynamicCastExpr;
2592
2593/// Matches a const_cast expression.
2594///
2595/// Example: Matches const_cast<int*>(&r) in
2596/// \code
2597/// int n = 42;
2598/// const int &r(n);
2599/// int* p = const_cast<int*>(&r);
2600/// \endcode
2601extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
2602 cxxConstCastExpr;
2603
2604/// Matches a C-style cast expression.
2605///
2606/// Example: Matches (int) 2.2f in
2607/// \code
2608/// int i = (int) 2.2f;
2609/// \endcode
2610extern const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
2611 cStyleCastExpr;
2612
2613/// Matches explicit cast expressions.
2614///
2615/// Matches any cast expression written in user code, whether it be a
2616/// C-style cast, a functional-style cast, or a keyword cast.
2617///
2618/// Does not match implicit conversions.
2619///
2620/// Note: the name "explicitCast" is chosen to match Clang's terminology, as
2621/// Clang uses the term "cast" to apply to implicit conversions as well as to
2622/// actual cast expressions.
2623///
2624/// \see hasDestinationType.
2625///
2626/// Example: matches all five of the casts in
2627/// \code
2628/// int((int)(reinterpret_cast<int>(static_cast<int>(const_cast<int>(42)))))
2629/// \endcode
2630/// but does not match the implicit conversion in
2631/// \code
2632/// long ell = 42;
2633/// \endcode
2634extern const internal::VariadicDynCastAllOfMatcher<Stmt, ExplicitCastExpr>
2635 explicitCastExpr;
2636
2637/// Matches the implicit cast nodes of Clang's AST.
2638///
2639/// This matches many different places, including function call return value
2640/// eliding, as well as any type conversions.
2641extern const internal::VariadicDynCastAllOfMatcher<Stmt, ImplicitCastExpr>
2642 implicitCastExpr;
2643
2644/// Matches any cast nodes of Clang's AST.
2645///
2646/// Example: castExpr() matches each of the following:
2647/// \code
2648/// (int) 3;
2649/// const_cast<Expr *>(SubExpr);
2650/// char c = 0;
2651/// \endcode
2652/// but does not match
2653/// \code
2654/// int i = (0);
2655/// int k = 0;
2656/// \endcode
2657extern const internal::VariadicDynCastAllOfMatcher<Stmt, CastExpr> castExpr;
2658
2659/// Matches functional cast expressions
2660///
2661/// Example: Matches Foo(bar);
2662/// \code
2663/// Foo f = bar;
2664/// Foo g = (Foo) bar;
2665/// Foo h = Foo(bar);
2666/// \endcode
2667extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXFunctionalCastExpr>
2668 cxxFunctionalCastExpr;
2669
2670/// Matches functional cast expressions having N != 1 arguments
2671///
2672/// Example: Matches Foo(bar, bar)
2673/// \code
2674/// Foo h = Foo(bar, bar);
2675/// \endcode
2676extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXTemporaryObjectExpr>
2677 cxxTemporaryObjectExpr;
2678
2679/// Matches predefined identifier expressions [C99 6.4.2.2].
2680///
2681/// Example: Matches __func__
2682/// \code
2683/// printf("%s", __func__);
2684/// \endcode
2685extern const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
2686 predefinedExpr;
2687
2688/// Matches C99 designated initializer expressions [C99 6.7.8].
2689///
2690/// Example: Matches { [2].y = 1.0, [0].x = 1.0 }
2691/// \code
2692/// point ptarray[10] = { [2].y = 1.0, [0].x = 1.0 };
2693/// \endcode
2694extern const internal::VariadicDynCastAllOfMatcher<Stmt, DesignatedInitExpr>
2695 designatedInitExpr;
2696
2697/// Matches designated initializer expressions that contain
2698/// a specific number of designators.
2699///
2700/// Example: Given
2701/// \code
2702/// point ptarray[10] = { [2].y = 1.0, [0].x = 1.0 };
2703/// point ptarray2[10] = { [2].y = 1.0, [2].x = 0.0, [0].x = 1.0 };
2704/// \endcode
2705/// designatorCountIs(2)
2706/// matches '{ [2].y = 1.0, [0].x = 1.0 }',
2707/// but not '{ [2].y = 1.0, [2].x = 0.0, [0].x = 1.0 }'.
2708AST_MATCHER_P(DesignatedInitExpr, designatorCountIs, unsigned, N)namespace internal { class matcher_designatorCountIs0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
DesignatedInitExpr> { public: explicit matcher_designatorCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const DesignatedInitExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::Matcher<DesignatedInitExpr>
designatorCountIs( unsigned const &N) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_designatorCountIs0Matcher
(N)); } typedef ::clang::ast_matchers::internal::Matcher<DesignatedInitExpr
> ( &designatorCountIs_Type0)(unsigned const &N); inline
bool internal::matcher_designatorCountIs0Matcher::matches( const
DesignatedInitExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
2709 return Node.size() == N;
2710}
2711
2712/// Matches \c QualTypes in the clang AST.
2713extern const internal::VariadicAllOfMatcher<QualType> qualType;
2714
2715/// Matches \c Types in the clang AST.
2716extern const internal::VariadicAllOfMatcher<Type> type;
2717
2718/// Matches \c TypeLocs in the clang AST.
2719extern const internal::VariadicAllOfMatcher<TypeLoc> typeLoc;
2720
2721/// Matches if any of the given matchers matches.
2722///
2723/// Unlike \c anyOf, \c eachOf will generate a match result for each
2724/// matching submatcher.
2725///
2726/// For example, in:
2727/// \code
2728/// class A { int a; int b; };
2729/// \endcode
2730/// The matcher:
2731/// \code
2732/// cxxRecordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
2733/// has(fieldDecl(hasName("b")).bind("v"))))
2734/// \endcode
2735/// will generate two results binding "v", the first of which binds
2736/// the field declaration of \c a, the second the field declaration of
2737/// \c b.
2738///
2739/// Usable as: Any Matcher
2740extern const internal::VariadicOperatorMatcherFunc<
2741 2, std::numeric_limits<unsigned>::max()>
2742 eachOf;
2743
2744/// Matches if any of the given matchers matches.
2745///
2746/// Usable as: Any Matcher
2747extern const internal::VariadicOperatorMatcherFunc<
2748 2, std::numeric_limits<unsigned>::max()>
2749 anyOf;
2750
2751/// Matches if all given matchers match.
2752///
2753/// Usable as: Any Matcher
2754extern const internal::VariadicOperatorMatcherFunc<
2755 2, std::numeric_limits<unsigned>::max()>
2756 allOf;
2757
2758/// Matches any node regardless of the submatcher.
2759///
2760/// However, \c optionally will retain any bindings generated by the submatcher.
2761/// Useful when additional information which may or may not present about a main
2762/// matching node is desired.
2763///
2764/// For example, in:
2765/// \code
2766/// class Foo {
2767/// int bar;
2768/// }
2769/// \endcode
2770/// The matcher:
2771/// \code
2772/// cxxRecordDecl(
2773/// optionally(has(
2774/// fieldDecl(hasName("bar")).bind("var")
2775/// ))).bind("record")
2776/// \endcode
2777/// will produce a result binding for both "record" and "var".
2778/// The matcher will produce a "record" binding for even if there is no data
2779/// member named "bar" in that class.
2780///
2781/// Usable as: Any Matcher
2782extern const internal::VariadicOperatorMatcherFunc<1, 1> optionally;
2783
2784/// Matches sizeof (C99), alignof (C++11) and vec_step (OpenCL)
2785///
2786/// Given
2787/// \code
2788/// Foo x = bar;
2789/// int y = sizeof(x) + alignof(x);
2790/// \endcode
2791/// unaryExprOrTypeTraitExpr()
2792/// matches \c sizeof(x) and \c alignof(x)
2793extern const internal::VariadicDynCastAllOfMatcher<Stmt,
2794 UnaryExprOrTypeTraitExpr>
2795 unaryExprOrTypeTraitExpr;
2796
2797/// Matches any of the \p NodeMatchers with InnerMatchers nested within
2798///
2799/// Given
2800/// \code
2801/// if (true);
2802/// for (; true; );
2803/// \endcode
2804/// with the matcher
2805/// \code
2806/// mapAnyOf(ifStmt, forStmt).with(
2807/// hasCondition(cxxBoolLiteralExpr(equals(true)))
2808/// ).bind("trueCond")
2809/// \endcode
2810/// matches the \c if and the \c for. It is equivalent to:
2811/// \code
2812/// auto trueCond = hasCondition(cxxBoolLiteralExpr(equals(true)));
2813/// anyOf(
2814/// ifStmt(trueCond).bind("trueCond"),
2815/// forStmt(trueCond).bind("trueCond")
2816/// );
2817/// \endcode
2818///
2819/// The with() chain-call accepts zero or more matchers which are combined
2820/// as-if with allOf() in each of the node matchers.
2821/// Usable as: Any Matcher
2822template <typename T, typename... U>
2823auto mapAnyOf(internal::VariadicDynCastAllOfMatcher<T, U> const &...) {
2824 return internal::MapAnyOfHelper<U...>();
2825}
2826
2827/// Matches nodes which can be used with binary operators.
2828///
2829/// The code
2830/// \code
2831/// var1 != var2;
2832/// \endcode
2833/// might be represented in the clang AST as a binaryOperator, a
2834/// cxxOperatorCallExpr or a cxxRewrittenBinaryOperator, depending on
2835///
2836/// * whether the types of var1 and var2 are fundamental (binaryOperator) or at
2837/// least one is a class type (cxxOperatorCallExpr)
2838/// * whether the code appears in a template declaration, if at least one of the
2839/// vars is a dependent-type (binaryOperator)
2840/// * whether the code relies on a rewritten binary operator, such as a
2841/// spaceship operator or an inverted equality operator
2842/// (cxxRewrittenBinaryOperator)
2843///
2844/// This matcher elides details in places where the matchers for the nodes are
2845/// compatible.
2846///
2847/// Given
2848/// \code
2849/// binaryOperation(
2850/// hasOperatorName("!="),
2851/// hasLHS(expr().bind("lhs")),
2852/// hasRHS(expr().bind("rhs"))
2853/// )
2854/// \endcode
2855/// matches each use of "!=" in:
2856/// \code
2857/// struct S{
2858/// bool operator!=(const S&) const;
2859/// };
2860///
2861/// void foo()
2862/// {
2863/// 1 != 2;
2864/// S() != S();
2865/// }
2866///
2867/// template<typename T>
2868/// void templ()
2869/// {
2870/// 1 != 2;
2871/// T() != S();
2872/// }
2873/// struct HasOpEq
2874/// {
2875/// bool operator==(const HasOpEq &) const;
2876/// };
2877///
2878/// void inverse()
2879/// {
2880/// HasOpEq s1;
2881/// HasOpEq s2;
2882/// if (s1 != s2)
2883/// return;
2884/// }
2885///
2886/// struct HasSpaceship
2887/// {
2888/// bool operator<=>(const HasOpEq &) const;
2889/// };
2890///
2891/// void use_spaceship()
2892/// {
2893/// HasSpaceship s1;
2894/// HasSpaceship s2;
2895/// if (s1 != s2)
2896/// return;
2897/// }
2898/// \endcode
2899extern const internal::MapAnyOfMatcher<BinaryOperator, CXXOperatorCallExpr,
2900 CXXRewrittenBinaryOperator>
2901 binaryOperation;
2902
2903/// Matches function calls and constructor calls
2904///
2905/// Because CallExpr and CXXConstructExpr do not share a common
2906/// base class with API accessing arguments etc, AST Matchers for code
2907/// which should match both are typically duplicated. This matcher
2908/// removes the need for duplication.
2909///
2910/// Given code
2911/// \code
2912/// struct ConstructorTakesInt
2913/// {
2914/// ConstructorTakesInt(int i) {}
2915/// };
2916///
2917/// void callTakesInt(int i)
2918/// {
2919/// }
2920///
2921/// void doCall()
2922/// {
2923/// callTakesInt(42);
2924/// }
2925///
2926/// void doConstruct()
2927/// {
2928/// ConstructorTakesInt cti(42);
2929/// }
2930/// \endcode
2931///
2932/// The matcher
2933/// \code
2934/// invocation(hasArgument(0, integerLiteral(equals(42))))
2935/// \endcode
2936/// matches the expression in both doCall and doConstruct
2937extern const internal::MapAnyOfMatcher<CallExpr, CXXConstructExpr> invocation;
2938
2939/// Matches unary expressions that have a specific type of argument.
2940///
2941/// Given
2942/// \code
2943/// int a, c; float b; int s = sizeof(a) + sizeof(b) + alignof(c);
2944/// \endcode
2945/// unaryExprOrTypeTraitExpr(hasArgumentOfType(asString("int"))
2946/// matches \c sizeof(a) and \c alignof(c)
2947AST_MATCHER_P(UnaryExprOrTypeTraitExpr, hasArgumentOfType,namespace internal { class matcher_hasArgumentOfType0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
UnaryExprOrTypeTraitExpr> { public: explicit matcher_hasArgumentOfType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const UnaryExprOrTypeTraitExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<UnaryExprOrTypeTraitExpr> hasArgumentOfType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasArgumentOfType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<UnaryExprOrTypeTraitExpr> ( &hasArgumentOfType_Type0
)(internal::Matcher<QualType> const &InnerMatcher);
inline bool internal::matcher_hasArgumentOfType0Matcher::matches
( const UnaryExprOrTypeTraitExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
2948 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_hasArgumentOfType0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
UnaryExprOrTypeTraitExpr> { public: explicit matcher_hasArgumentOfType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const UnaryExprOrTypeTraitExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<UnaryExprOrTypeTraitExpr> hasArgumentOfType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasArgumentOfType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<UnaryExprOrTypeTraitExpr> ( &hasArgumentOfType_Type0
)(internal::Matcher<QualType> const &InnerMatcher);
inline bool internal::matcher_hasArgumentOfType0Matcher::matches
( const UnaryExprOrTypeTraitExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
2949 const QualType ArgumentType = Node.getTypeOfArgument();
2950 return InnerMatcher.matches(ArgumentType, Finder, Builder);
2951}
2952
2953/// Matches unary expressions of a certain kind.
2954///
2955/// Given
2956/// \code
2957/// int x;
2958/// int s = sizeof(x) + alignof(x)
2959/// \endcode
2960/// unaryExprOrTypeTraitExpr(ofKind(UETT_SizeOf))
2961/// matches \c sizeof(x)
2962///
2963/// If the matcher is use from clang-query, UnaryExprOrTypeTrait parameter
2964/// should be passed as a quoted string. e.g., ofKind("UETT_SizeOf").
2965AST_MATCHER_P(UnaryExprOrTypeTraitExpr, ofKind, UnaryExprOrTypeTrait, Kind)namespace internal { class matcher_ofKind0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<UnaryExprOrTypeTraitExpr
> { public: explicit matcher_ofKind0Matcher( UnaryExprOrTypeTrait
const &AKind) : Kind(AKind) {} bool matches(const UnaryExprOrTypeTraitExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: UnaryExprOrTypeTrait Kind
; }; } inline ::clang::ast_matchers::internal::Matcher<UnaryExprOrTypeTraitExpr
> ofKind( UnaryExprOrTypeTrait const &Kind) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_ofKind0Matcher
(Kind)); } typedef ::clang::ast_matchers::internal::Matcher<
UnaryExprOrTypeTraitExpr> ( &ofKind_Type0)(UnaryExprOrTypeTrait
const &Kind); inline bool internal::matcher_ofKind0Matcher
::matches( const UnaryExprOrTypeTraitExpr &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
2966 return Node.getKind() == Kind;
2967}
2968
2969/// Same as unaryExprOrTypeTraitExpr, but only matching
2970/// alignof.
2971inline internal::BindableMatcher<Stmt> alignOfExpr(
2972 const internal::Matcher<UnaryExprOrTypeTraitExpr> &InnerMatcher) {
2973 return stmt(unaryExprOrTypeTraitExpr(
2974 allOf(anyOf(ofKind(UETT_AlignOf), ofKind(UETT_PreferredAlignOf)),
2975 InnerMatcher)));
2976}
2977
2978/// Same as unaryExprOrTypeTraitExpr, but only matching
2979/// sizeof.
2980inline internal::BindableMatcher<Stmt> sizeOfExpr(
2981 const internal::Matcher<UnaryExprOrTypeTraitExpr> &InnerMatcher) {
2982 return stmt(unaryExprOrTypeTraitExpr(
2983 allOf(ofKind(UETT_SizeOf), InnerMatcher)));
2984}
2985
2986/// Matches NamedDecl nodes that have the specified name.
2987///
2988/// Supports specifying enclosing namespaces or classes by prefixing the name
2989/// with '<enclosing>::'.
2990/// Does not match typedefs of an underlying type with the given name.
2991///
2992/// Example matches X (Name == "X")
2993/// \code
2994/// class X;
2995/// \endcode
2996///
2997/// Example matches X (Name is one of "::a::b::X", "a::b::X", "b::X", "X")
2998/// \code
2999/// namespace a { namespace b { class X; } }
3000/// \endcode
3001inline internal::Matcher<NamedDecl> hasName(StringRef Name) {
3002 return internal::Matcher<NamedDecl>(
3003 new internal::HasNameMatcher({std::string(Name)}));
3004}
3005
3006/// Matches NamedDecl nodes that have any of the specified names.
3007///
3008/// This matcher is only provided as a performance optimization of hasName.
3009/// \code
3010/// hasAnyName(a, b, c)
3011/// \endcode
3012/// is equivalent to, but faster than
3013/// \code
3014/// anyOf(hasName(a), hasName(b), hasName(c))
3015/// \endcode
3016extern const internal::VariadicFunction<internal::Matcher<NamedDecl>, StringRef,
3017 internal::hasAnyNameFunc>
3018 hasAnyName;
3019
3020/// Matches NamedDecl nodes whose fully qualified names contain
3021/// a substring matched by the given RegExp.
3022///
3023/// Supports specifying enclosing namespaces or classes by
3024/// prefixing the name with '<enclosing>::'. Does not match typedefs
3025/// of an underlying type with the given name.
3026///
3027/// Example matches X (regexp == "::X")
3028/// \code
3029/// class X;
3030/// \endcode
3031///
3032/// Example matches X (regexp is one of "::X", "^foo::.*X", among others)
3033/// \code
3034/// namespace foo { namespace bar { class X; } }
3035/// \endcode
3036AST_MATCHER_REGEX(NamedDecl, matchesName, RegExp)namespace internal { class matcher_matchesName0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NamedDecl
> { public: explicit matcher_matchesName0Matcher( std::shared_ptr
<llvm::Regex> RE) : RegExp(std::move(RE)) {} bool matches
(const NamedDecl &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::shared_ptr<llvm::
Regex> RegExp; }; } inline ::clang::ast_matchers::internal
::Matcher<NamedDecl> matchesName( llvm::StringRef RegExp
, llvm::Regex::RegexFlags RegexFlags) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_matchesName0Matcher
( ::clang::ast_matchers::internal::createAndVerifyRegex( RegExp
, RegexFlags, "matchesName"))); } inline ::clang::ast_matchers
::internal::Matcher<NamedDecl> matchesName( llvm::StringRef
RegExp) { return matchesName(RegExp, llvm::Regex::NoFlags); }
typedef ::clang::ast_matchers::internal::Matcher<NamedDecl
> ( &matchesName_Type0Flags)(llvm::StringRef, llvm::Regex
::RegexFlags); typedef ::clang::ast_matchers::internal::Matcher
<NamedDecl> ( &matchesName_Type0)(llvm::StringRef);
inline bool internal::matcher_matchesName0Matcher::matches( const
NamedDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3037 std::string FullNameString = "::" + Node.getQualifiedNameAsString();
3038 return RegExp->match(FullNameString);
3039}
3040
3041/// Matches overloaded operator names.
3042///
3043/// Matches overloaded operator names specified in strings without the
3044/// "operator" prefix: e.g. "<<".
3045///
3046/// Given:
3047/// \code
3048/// class A { int operator*(); };
3049/// const A &operator<<(const A &a, const A &b);
3050/// A a;
3051/// a << a; // <-- This matches
3052/// \endcode
3053///
3054/// \c cxxOperatorCallExpr(hasOverloadedOperatorName("<<"))) matches the
3055/// specified line and
3056/// \c cxxRecordDecl(hasMethod(hasOverloadedOperatorName("*")))
3057/// matches the declaration of \c A.
3058///
3059/// Usable as: Matcher<CXXOperatorCallExpr>, Matcher<FunctionDecl>
3060inline internal::PolymorphicMatcher<
3061 internal::HasOverloadedOperatorNameMatcher,
3062 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXOperatorCallExpr, FunctionDecl)void(::clang::ast_matchers::internal::TypeList<CXXOperatorCallExpr
, FunctionDecl>)
,
3063 std::vector<std::string>>
3064hasOverloadedOperatorName(StringRef Name) {
3065 return internal::PolymorphicMatcher<
3066 internal::HasOverloadedOperatorNameMatcher,
3067 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXOperatorCallExpr, FunctionDecl)void(::clang::ast_matchers::internal::TypeList<CXXOperatorCallExpr
, FunctionDecl>)
,
3068 std::vector<std::string>>({std::string(Name)});
3069}
3070
3071/// Matches overloaded operator names.
3072///
3073/// Matches overloaded operator names specified in strings without the
3074/// "operator" prefix: e.g. "<<".
3075///
3076/// hasAnyOverloadedOperatorName("+", "-")
3077/// Is equivalent to
3078/// anyOf(hasOverloadedOperatorName("+"), hasOverloadedOperatorName("-"))
3079extern const internal::VariadicFunction<
3080 internal::PolymorphicMatcher<internal::HasOverloadedOperatorNameMatcher,
3081 AST_POLYMORPHIC_SUPPORTED_TYPES(void(::clang::ast_matchers::internal::TypeList<CXXOperatorCallExpr
, FunctionDecl>)
3082 CXXOperatorCallExpr, FunctionDecl)void(::clang::ast_matchers::internal::TypeList<CXXOperatorCallExpr
, FunctionDecl>)
,
3083 std::vector<std::string>>,
3084 StringRef, internal::hasAnyOverloadedOperatorNameFunc>
3085 hasAnyOverloadedOperatorName;
3086
3087/// Matches template-dependent, but known, member names.
3088///
3089/// In template declarations, dependent members are not resolved and so can
3090/// not be matched to particular named declarations.
3091///
3092/// This matcher allows to match on the known name of members.
3093///
3094/// Given
3095/// \code
3096/// template <typename T>
3097/// struct S {
3098/// void mem();
3099/// };
3100/// template <typename T>
3101/// void x() {
3102/// S<T> s;
3103/// s.mem();
3104/// }
3105/// \endcode
3106/// \c cxxDependentScopeMemberExpr(hasMemberName("mem")) matches `s.mem()`
3107AST_MATCHER_P(CXXDependentScopeMemberExpr, hasMemberName, std::string, N)namespace internal { class matcher_hasMemberName0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXDependentScopeMemberExpr
> { public: explicit matcher_hasMemberName0Matcher( std::string
const &AN) : N(AN) {} bool matches(const CXXDependentScopeMemberExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string N; }; } inline
::clang::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> hasMemberName( std::string const &N) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_hasMemberName0Matcher
(N)); } typedef ::clang::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> ( &hasMemberName_Type0)(std::string const &N); inline
bool internal::matcher_hasMemberName0Matcher::matches( const
CXXDependentScopeMemberExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3108 return Node.getMember().getAsString() == N;
3109}
3110
3111/// Matches template-dependent, but known, member names against an already-bound
3112/// node
3113///
3114/// In template declarations, dependent members are not resolved and so can
3115/// not be matched to particular named declarations.
3116///
3117/// This matcher allows to match on the name of already-bound VarDecl, FieldDecl
3118/// and CXXMethodDecl nodes.
3119///
3120/// Given
3121/// \code
3122/// template <typename T>
3123/// struct S {
3124/// void mem();
3125/// };
3126/// template <typename T>
3127/// void x() {
3128/// S<T> s;
3129/// s.mem();
3130/// }
3131/// \endcode
3132/// The matcher
3133/// @code
3134/// \c cxxDependentScopeMemberExpr(
3135/// hasObjectExpression(declRefExpr(hasType(templateSpecializationType(
3136/// hasDeclaration(classTemplateDecl(has(cxxRecordDecl(has(
3137/// cxxMethodDecl(hasName("mem")).bind("templMem")
3138/// )))))
3139/// )))),
3140/// memberHasSameNameAsBoundNode("templMem")
3141/// )
3142/// @endcode
3143/// first matches and binds the @c mem member of the @c S template, then
3144/// compares its name to the usage in @c s.mem() in the @c x function template
3145AST_MATCHER_P(CXXDependentScopeMemberExpr, memberHasSameNameAsBoundNode,namespace internal { class matcher_memberHasSameNameAsBoundNode0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXDependentScopeMemberExpr> { public: explicit matcher_memberHasSameNameAsBoundNode0Matcher
( std::string const &ABindingID) : BindingID(ABindingID) {
} bool matches(const CXXDependentScopeMemberExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: std::string BindingID; }; } inline ::clang
::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> memberHasSameNameAsBoundNode( std::string const &BindingID
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_memberHasSameNameAsBoundNode0Matcher(BindingID)); }
typedef ::clang::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> ( &memberHasSameNameAsBoundNode_Type0)(std::string const
&BindingID); inline bool internal::matcher_memberHasSameNameAsBoundNode0Matcher
::matches( const CXXDependentScopeMemberExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
3146 std::string, BindingID)namespace internal { class matcher_memberHasSameNameAsBoundNode0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXDependentScopeMemberExpr> { public: explicit matcher_memberHasSameNameAsBoundNode0Matcher
( std::string const &ABindingID) : BindingID(ABindingID) {
} bool matches(const CXXDependentScopeMemberExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: std::string BindingID; }; } inline ::clang
::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> memberHasSameNameAsBoundNode( std::string const &BindingID
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_memberHasSameNameAsBoundNode0Matcher(BindingID)); }
typedef ::clang::ast_matchers::internal::Matcher<CXXDependentScopeMemberExpr
> ( &memberHasSameNameAsBoundNode_Type0)(std::string const
&BindingID); inline bool internal::matcher_memberHasSameNameAsBoundNode0Matcher
::matches( const CXXDependentScopeMemberExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
3147 auto MemberName = Node.getMember().getAsString();
3148
3149 return Builder->removeBindings(
3150 [this, MemberName](const BoundNodesMap &Nodes) {
3151 const auto &BN = Nodes.getNode(this->BindingID);
3152 if (const auto *ND = BN.get<NamedDecl>()) {
3153 if (!isa<FieldDecl, CXXMethodDecl, VarDecl>(ND))
3154 return true;
3155 return ND->getName() != MemberName;
3156 }
3157 return true;
3158 });
3159}
3160
3161/// Matches C++ classes that are directly or indirectly derived from a class
3162/// matching \c Base, or Objective-C classes that directly or indirectly
3163/// subclass a class matching \c Base.
3164///
3165/// Note that a class is not considered to be derived from itself.
3166///
3167/// Example matches Y, Z, C (Base == hasName("X"))
3168/// \code
3169/// class X;
3170/// class Y : public X {}; // directly derived
3171/// class Z : public Y {}; // indirectly derived
3172/// typedef X A;
3173/// typedef A B;
3174/// class C : public B {}; // derived from a typedef of X
3175/// \endcode
3176///
3177/// In the following example, Bar matches isDerivedFrom(hasName("X")):
3178/// \code
3179/// class Foo;
3180/// typedef Foo X;
3181/// class Bar : public Foo {}; // derived from a type that X is a typedef of
3182/// \endcode
3183///
3184/// In the following example, Bar matches isDerivedFrom(hasName("NSObject"))
3185/// \code
3186/// @interface NSObject @end
3187/// @interface Bar : NSObject @end
3188/// \endcode
3189///
3190/// Usable as: Matcher<CXXRecordDecl>, Matcher<ObjCInterfaceDecl>
3191AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom0Matcher( internal::Matcher<
NamedDecl> const &ABase) : Base(ABase) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> Base; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > isDerivedFrom(internal
::Matcher<NamedDecl> const &Base) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
(Base); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3192 isDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom0Matcher( internal::Matcher<
NamedDecl> const &ABase) : Base(ABase) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> Base; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > isDerivedFrom(internal
::Matcher<NamedDecl> const &Base) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
(Base); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3193 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom0Matcher( internal::Matcher<
NamedDecl> const &ABase) : Base(ABase) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> Base; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > isDerivedFrom(internal
::Matcher<NamedDecl> const &Base) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
(Base); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3194 internal::Matcher<NamedDecl>, Base)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom0Matcher( internal::Matcher<
NamedDecl> const &ABase) : Base(ABase) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> Base; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > isDerivedFrom(internal
::Matcher<NamedDecl> const &Base) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
(Base); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3195 // Check if the node is a C++ struct/union/class.
3196 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3197 return Finder->classIsDerivedFrom(RD, Base, Builder, /*Directly=*/false);
3198
3199 // The node must be an Objective-C class.
3200 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3201 return Finder->objcClassIsDerivedFrom(InterfaceDecl, Base, Builder,
3202 /*Directly=*/false);
3203}
3204
3205/// Overloaded method as shortcut for \c isDerivedFrom(hasName(...)).
3206AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom1Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom1Matcher( std::string const &
ABaseName) : BaseName(ABaseName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string> isDerivedFrom(std::string const &BaseName
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string>(BaseName); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3207 isDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom1Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom1Matcher( std::string const &
ABaseName) : BaseName(ABaseName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string> isDerivedFrom(std::string const &BaseName
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string>(BaseName); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3208 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom1Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom1Matcher( std::string const &
ABaseName) : BaseName(ABaseName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string> isDerivedFrom(std::string const &BaseName
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string>(BaseName); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3209 std::string, BaseName, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDerivedFrom1Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_isDerivedFrom1Matcher( std::string const &
ABaseName) : BaseName(ABaseName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string> isDerivedFrom(std::string const &BaseName
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDerivedFrom1Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, std::string>(BaseName); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3210 if (BaseName.empty())
3211 return false;
3212
3213 const auto M = isDerivedFrom(hasName(BaseName));
3214
3215 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3216 return Matcher<CXXRecordDecl>(M).matches(*RD, Finder, Builder);
3217
3218 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3219 return Matcher<ObjCInterfaceDecl>(M).matches(*InterfaceDecl, Finder, Builder);
3220}
3221
3222/// Matches C++ classes that have a direct or indirect base matching \p
3223/// BaseSpecMatcher.
3224///
3225/// Example:
3226/// matcher hasAnyBase(hasType(cxxRecordDecl(hasName("SpecialBase"))))
3227/// \code
3228/// class Foo;
3229/// class Bar : Foo {};
3230/// class Baz : Bar {};
3231/// class SpecialBase;
3232/// class Proxy : SpecialBase {}; // matches Proxy
3233/// class IndirectlyDerived : Proxy {}; //matches IndirectlyDerived
3234/// \endcode
3235///
3236// FIXME: Refactor this and isDerivedFrom to reuse implementation.
3237AST_MATCHER_P(CXXRecordDecl, hasAnyBase, internal::Matcher<CXXBaseSpecifier>,namespace internal { class matcher_hasAnyBase0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasAnyBase0Matcher( internal::
Matcher<CXXBaseSpecifier> const &ABaseSpecMatcher) :
BaseSpecMatcher(ABaseSpecMatcher) {} bool matches(const CXXRecordDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXBaseSpecifier
> BaseSpecMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasAnyBase( internal::Matcher<
CXXBaseSpecifier> const &BaseSpecMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_hasAnyBase0Matcher
(BaseSpecMatcher)); } typedef ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> ( &hasAnyBase_Type0)(internal
::Matcher<CXXBaseSpecifier> const &BaseSpecMatcher)
; inline bool internal::matcher_hasAnyBase0Matcher::matches( const
CXXRecordDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
3238 BaseSpecMatcher)namespace internal { class matcher_hasAnyBase0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasAnyBase0Matcher( internal::
Matcher<CXXBaseSpecifier> const &ABaseSpecMatcher) :
BaseSpecMatcher(ABaseSpecMatcher) {} bool matches(const CXXRecordDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXBaseSpecifier
> BaseSpecMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasAnyBase( internal::Matcher<
CXXBaseSpecifier> const &BaseSpecMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_hasAnyBase0Matcher
(BaseSpecMatcher)); } typedef ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> ( &hasAnyBase_Type0)(internal
::Matcher<CXXBaseSpecifier> const &BaseSpecMatcher)
; inline bool internal::matcher_hasAnyBase0Matcher::matches( const
CXXRecordDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3239 return internal::matchesAnyBase(Node, BaseSpecMatcher, Finder, Builder);
3240}
3241
3242/// Matches C++ classes that have a direct base matching \p BaseSpecMatcher.
3243///
3244/// Example:
3245/// matcher hasDirectBase(hasType(cxxRecordDecl(hasName("SpecialBase"))))
3246/// \code
3247/// class Foo;
3248/// class Bar : Foo {};
3249/// class Baz : Bar {};
3250/// class SpecialBase;
3251/// class Proxy : SpecialBase {}; // matches Proxy
3252/// class IndirectlyDerived : Proxy {}; // doesn't match
3253/// \endcode
3254AST_MATCHER_P(CXXRecordDecl, hasDirectBase, internal::Matcher<CXXBaseSpecifier>,namespace internal { class matcher_hasDirectBase0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasDirectBase0Matcher( internal
::Matcher<CXXBaseSpecifier> const &ABaseSpecMatcher
) : BaseSpecMatcher(ABaseSpecMatcher) {} bool matches(const CXXRecordDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXBaseSpecifier
> BaseSpecMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasDirectBase( internal::Matcher
<CXXBaseSpecifier> const &BaseSpecMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasDirectBase0Matcher(BaseSpecMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<CXXRecordDecl> (
&hasDirectBase_Type0)(internal::Matcher<CXXBaseSpecifier
> const &BaseSpecMatcher); inline bool internal::matcher_hasDirectBase0Matcher
::matches( const CXXRecordDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
3255 BaseSpecMatcher)namespace internal { class matcher_hasDirectBase0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasDirectBase0Matcher( internal
::Matcher<CXXBaseSpecifier> const &ABaseSpecMatcher
) : BaseSpecMatcher(ABaseSpecMatcher) {} bool matches(const CXXRecordDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXBaseSpecifier
> BaseSpecMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasDirectBase( internal::Matcher
<CXXBaseSpecifier> const &BaseSpecMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasDirectBase0Matcher(BaseSpecMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<CXXRecordDecl> (
&hasDirectBase_Type0)(internal::Matcher<CXXBaseSpecifier
> const &BaseSpecMatcher); inline bool internal::matcher_hasDirectBase0Matcher
::matches( const CXXRecordDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3256 return Node.hasDefinition() &&
3257 llvm::any_of(Node.bases(), [&](const CXXBaseSpecifier &Base) {
3258 return BaseSpecMatcher.matches(Base, Finder, Builder);
3259 });
3260}
3261
3262/// Similar to \c isDerivedFrom(), but also matches classes that directly
3263/// match \c Base.
3264AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom0Matcher( internal
::Matcher<NamedDecl> const &ABase) : Base(ABase) {}
bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isSameOrDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom0Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isSameOrDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isSameOrDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3265 isSameOrDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom0Matcher( internal
::Matcher<NamedDecl> const &ABase) : Base(ABase) {}
bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isSameOrDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom0Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isSameOrDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isSameOrDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3266 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom0Matcher( internal
::Matcher<NamedDecl> const &ABase) : Base(ABase) {}
bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isSameOrDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom0Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isSameOrDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isSameOrDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3267 internal::Matcher<NamedDecl>, Base, 0)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom0Matcher( internal
::Matcher<NamedDecl> const &ABase) : Base(ABase) {}
bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isSameOrDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom0Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isSameOrDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isSameOrDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3268 const auto M = anyOf(Base, isDerivedFrom(Base));
3269
3270 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3271 return Matcher<CXXRecordDecl>(M).matches(*RD, Finder, Builder);
3272
3273 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3274 return Matcher<ObjCInterfaceDecl>(M).matches(*InterfaceDecl, Finder, Builder);
3275}
3276
3277/// Overloaded method as shortcut for
3278/// \c isSameOrDerivedFrom(hasName(...)).
3279AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom1Matcher( std
::string const &ABaseName) : BaseName(ABaseName) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang::
ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isSameOrDerivedFrom(std::string const &
BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isSameOrDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3280 isSameOrDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom1Matcher( std
::string const &ABaseName) : BaseName(ABaseName) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang::
ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isSameOrDerivedFrom(std::string const &
BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isSameOrDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3281 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom1Matcher( std
::string const &ABaseName) : BaseName(ABaseName) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang::
ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isSameOrDerivedFrom(std::string const &
BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isSameOrDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3282 std::string, BaseName, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isSameOrDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isSameOrDerivedFrom1Matcher( std
::string const &ABaseName) : BaseName(ABaseName) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang::
ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isSameOrDerivedFrom(std::string const &
BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isSameOrDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isSameOrDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isSameOrDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isSameOrDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3283 if (BaseName.empty())
3284 return false;
3285
3286 const auto M = isSameOrDerivedFrom(hasName(BaseName));
3287
3288 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3289 return Matcher<CXXRecordDecl>(M).matches(*RD, Finder, Builder);
3290
3291 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3292 return Matcher<ObjCInterfaceDecl>(M).matches(*InterfaceDecl, Finder, Builder);
3293}
3294
3295/// Matches C++ or Objective-C classes that are directly derived from a class
3296/// matching \c Base.
3297///
3298/// Note that a class is not considered to be derived from itself.
3299///
3300/// Example matches Y, C (Base == hasName("X"))
3301/// \code
3302/// class X;
3303/// class Y : public X {}; // directly derived
3304/// class Z : public Y {}; // indirectly derived
3305/// typedef X A;
3306/// typedef A B;
3307/// class C : public B {}; // derived from a typedef of X
3308/// \endcode
3309///
3310/// In the following example, Bar matches isDerivedFrom(hasName("X")):
3311/// \code
3312/// class Foo;
3313/// typedef Foo X;
3314/// class Bar : public Foo {}; // derived from a type that X is a typedef of
3315/// \endcode
3316AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom0Matcher
( internal::Matcher<NamedDecl> const &ABase) : Base
(ABase) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isDirectlyDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom0Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDirectlyDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDirectlyDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3317 isDirectlyDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom0Matcher
( internal::Matcher<NamedDecl> const &ABase) : Base
(ABase) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isDirectlyDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom0Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDirectlyDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDirectlyDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3318 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom0Matcher
( internal::Matcher<NamedDecl> const &ABase) : Base
(ABase) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isDirectlyDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom0Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDirectlyDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDirectlyDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3319 internal::Matcher<NamedDecl>, Base, 0)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom0Matcher
( internal::Matcher<NamedDecl> const &ABase) : Base
(ABase) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<NamedDecl> Base; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom0Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), internal::Matcher<NamedDecl> >
isDirectlyDerivedFrom(internal::Matcher<NamedDecl> const
&Base) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom0Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), internal::Matcher<NamedDecl> >(Base); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDirectlyDerivedFrom0Matcher, void(::clang::ast_matchers
::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl>)
, internal::Matcher<NamedDecl> > (&isDirectlyDerivedFrom_Type0
)(internal::Matcher<NamedDecl> const &Base); template
<typename NodeType, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3320 // Check if the node is a C++ struct/union/class.
3321 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3322 return Finder->classIsDerivedFrom(RD, Base, Builder, /*Directly=*/true);
3323
3324 // The node must be an Objective-C class.
3325 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3326 return Finder->objcClassIsDerivedFrom(InterfaceDecl, Base, Builder,
3327 /*Directly=*/true);
3328}
3329
3330/// Overloaded method as shortcut for \c isDirectlyDerivedFrom(hasName(...)).
3331AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom1Matcher
( std::string const &ABaseName) : BaseName(ABaseName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDirectlyDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isDirectlyDerivedFrom(std::string const
&BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom1Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDirectlyDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3332 isDirectlyDerivedFrom,namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom1Matcher
( std::string const &ABaseName) : BaseName(ABaseName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDirectlyDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isDirectlyDerivedFrom(std::string const
&BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom1Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDirectlyDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3333 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom1Matcher
( std::string const &ABaseName) : BaseName(ABaseName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDirectlyDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isDirectlyDerivedFrom(std::string const
&BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom1Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDirectlyDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3334 std::string, BaseName, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_isDirectlyDerivedFrom1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_isDirectlyDerivedFrom1Matcher
( std::string const &ABaseName) : BaseName(ABaseName) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isDirectlyDerivedFrom1Matcher, void(::clang
::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string> isDirectlyDerivedFrom(std::string const
&BaseName) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isDirectlyDerivedFrom1Matcher, void(::
clang::ast_matchers::internal::TypeList<CXXRecordDecl, ObjCInterfaceDecl
>), std::string>(BaseName); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isDirectlyDerivedFrom1Matcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, ObjCInterfaceDecl>), std::string> (&isDirectlyDerivedFrom_Type1
)(std::string const &BaseName); template <typename NodeType
, typename ParamT> bool internal:: matcher_isDirectlyDerivedFrom1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3335 if (BaseName.empty())
3336 return false;
3337 const auto M = isDirectlyDerivedFrom(hasName(BaseName));
3338
3339 if (const auto *RD = dyn_cast<CXXRecordDecl>(&Node))
3340 return Matcher<CXXRecordDecl>(M).matches(*RD, Finder, Builder);
3341
3342 const auto *InterfaceDecl = cast<ObjCInterfaceDecl>(&Node);
3343 return Matcher<ObjCInterfaceDecl>(M).matches(*InterfaceDecl, Finder, Builder);
3344}
3345/// Matches the first method of a class or struct that satisfies \c
3346/// InnerMatcher.
3347///
3348/// Given:
3349/// \code
3350/// class A { void func(); };
3351/// class B { void member(); };
3352/// \endcode
3353///
3354/// \c cxxRecordDecl(hasMethod(hasName("func"))) matches the declaration of
3355/// \c A but not \c B.
3356AST_MATCHER_P(CXXRecordDecl, hasMethod, internal::Matcher<CXXMethodDecl>,namespace internal { class matcher_hasMethod0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasMethod0Matcher( internal::
Matcher<CXXMethodDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXRecordDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<CXXMethodDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasMethod( internal::Matcher<
CXXMethodDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasMethod0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXRecordDecl> ( &hasMethod_Type0)(internal::Matcher
<CXXMethodDecl> const &InnerMatcher); inline bool internal
::matcher_hasMethod0Matcher::matches( const CXXRecordDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
3357 InnerMatcher)namespace internal { class matcher_hasMethod0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasMethod0Matcher( internal::
Matcher<CXXMethodDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXRecordDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<CXXMethodDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXRecordDecl> hasMethod( internal::Matcher<
CXXMethodDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasMethod0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXRecordDecl> ( &hasMethod_Type0)(internal::Matcher
<CXXMethodDecl> const &InnerMatcher); inline bool internal
::matcher_hasMethod0Matcher::matches( const CXXRecordDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
3358 BoundNodesTreeBuilder Result(*Builder);
3359 auto MatchIt = matchesFirstInPointerRange(InnerMatcher, Node.method_begin(),
3360 Node.method_end(), Finder, &Result);
3361 if (MatchIt == Node.method_end())
3362 return false;
3363
3364 if (Finder->isTraversalIgnoringImplicitNodes() && (*MatchIt)->isImplicit())
3365 return false;
3366 *Builder = std::move(Result);
3367 return true;
3368}
3369
3370/// Matches the generated class of lambda expressions.
3371///
3372/// Given:
3373/// \code
3374/// auto x = []{};
3375/// \endcode
3376///
3377/// \c cxxRecordDecl(isLambda()) matches the implicit class declaration of
3378/// \c decltype(x)
3379AST_MATCHER(CXXRecordDecl, isLambda)namespace internal { class matcher_isLambdaMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_isLambdaMatcher() = default; bool
matches(const CXXRecordDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXRecordDecl>
isLambda() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isLambdaMatcher()); } inline bool internal
::matcher_isLambdaMatcher::matches( const CXXRecordDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
3380 return Node.isLambda();
3381}
3382
3383/// Matches AST nodes that have child AST nodes that match the
3384/// provided matcher.
3385///
3386/// Example matches X, Y
3387/// (matcher = cxxRecordDecl(has(cxxRecordDecl(hasName("X")))
3388/// \code
3389/// class X {}; // Matches X, because X::X is a class of name X inside X.
3390/// class Y { class X {}; };
3391/// class Z { class Y { class X {}; }; }; // Does not match Z.
3392/// \endcode
3393///
3394/// ChildT must be an AST base type.
3395///
3396/// Usable as: Any Matcher
3397/// Note that has is direct matcher, so it also matches things like implicit
3398/// casts and paren casts. If you are matching with expr then you should
3399/// probably consider using ignoringParenImpCasts like:
3400/// has(ignoringParenImpCasts(expr())).
3401extern const internal::ArgumentAdaptingMatcherFunc<internal::HasMatcher> has;
3402
3403/// Matches AST nodes that have descendant AST nodes that match the
3404/// provided matcher.
3405///
3406/// Example matches X, Y, Z
3407/// (matcher = cxxRecordDecl(hasDescendant(cxxRecordDecl(hasName("X")))))
3408/// \code
3409/// class X {}; // Matches X, because X::X is a class of name X inside X.
3410/// class Y { class X {}; };
3411/// class Z { class Y { class X {}; }; };
3412/// \endcode
3413///
3414/// DescendantT must be an AST base type.
3415///
3416/// Usable as: Any Matcher
3417extern const internal::ArgumentAdaptingMatcherFunc<
3418 internal::HasDescendantMatcher>
3419 hasDescendant;
3420
3421/// Matches AST nodes that have child AST nodes that match the
3422/// provided matcher.
3423///
3424/// Example matches X, Y, Y::X, Z::Y, Z::Y::X
3425/// (matcher = cxxRecordDecl(forEach(cxxRecordDecl(hasName("X")))
3426/// \code
3427/// class X {};
3428/// class Y { class X {}; }; // Matches Y, because Y::X is a class of name X
3429/// // inside Y.
3430/// class Z { class Y { class X {}; }; }; // Does not match Z.
3431/// \endcode
3432///
3433/// ChildT must be an AST base type.
3434///
3435/// As opposed to 'has', 'forEach' will cause a match for each result that
3436/// matches instead of only on the first one.
3437///
3438/// Usable as: Any Matcher
3439extern const internal::ArgumentAdaptingMatcherFunc<internal::ForEachMatcher>
3440 forEach;
3441
3442/// Matches AST nodes that have descendant AST nodes that match the
3443/// provided matcher.
3444///
3445/// Example matches X, A, A::X, B, B::C, B::C::X
3446/// (matcher = cxxRecordDecl(forEachDescendant(cxxRecordDecl(hasName("X")))))
3447/// \code
3448/// class X {};
3449/// class A { class X {}; }; // Matches A, because A::X is a class of name
3450/// // X inside A.
3451/// class B { class C { class X {}; }; };
3452/// \endcode
3453///
3454/// DescendantT must be an AST base type.
3455///
3456/// As opposed to 'hasDescendant', 'forEachDescendant' will cause a match for
3457/// each result that matches instead of only on the first one.
3458///
3459/// Note: Recursively combined ForEachDescendant can cause many matches:
3460/// cxxRecordDecl(forEachDescendant(cxxRecordDecl(
3461/// forEachDescendant(cxxRecordDecl())
3462/// )))
3463/// will match 10 times (plus injected class name matches) on:
3464/// \code
3465/// class A { class B { class C { class D { class E {}; }; }; }; };
3466/// \endcode
3467///
3468/// Usable as: Any Matcher
3469extern const internal::ArgumentAdaptingMatcherFunc<
3470 internal::ForEachDescendantMatcher>
3471 forEachDescendant;
3472
3473/// Matches if the node or any descendant matches.
3474///
3475/// Generates results for each match.
3476///
3477/// For example, in:
3478/// \code
3479/// class A { class B {}; class C {}; };
3480/// \endcode
3481/// The matcher:
3482/// \code
3483/// cxxRecordDecl(hasName("::A"),
3484/// findAll(cxxRecordDecl(isDefinition()).bind("m")))
3485/// \endcode
3486/// will generate results for \c A, \c B and \c C.
3487///
3488/// Usable as: Any Matcher
3489template <typename T>
3490internal::Matcher<T> findAll(const internal::Matcher<T> &Matcher) {
3491 return eachOf(Matcher, forEachDescendant(Matcher));
3492}
3493
3494/// Matches AST nodes that have a parent that matches the provided
3495/// matcher.
3496///
3497/// Given
3498/// \code
3499/// void f() { for (;;) { int x = 42; if (true) { int x = 43; } } }
3500/// \endcode
3501/// \c compoundStmt(hasParent(ifStmt())) matches "{ int x = 43; }".
3502///
3503/// Usable as: Any Matcher
3504extern const internal::ArgumentAdaptingMatcherFunc<
3505 internal::HasParentMatcher,
3506 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>,
3507 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>>
3508 hasParent;
3509
3510/// Matches AST nodes that have an ancestor that matches the provided
3511/// matcher.
3512///
3513/// Given
3514/// \code
3515/// void f() { if (true) { int x = 42; } }
3516/// void g() { for (;;) { int x = 43; } }
3517/// \endcode
3518/// \c expr(integerLiteral(hasAncestor(ifStmt()))) matches \c 42, but not 43.
3519///
3520/// Usable as: Any Matcher
3521extern const internal::ArgumentAdaptingMatcherFunc<
3522 internal::HasAncestorMatcher,
3523 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>,
3524 internal::TypeList<Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr>>
3525 hasAncestor;
3526
3527/// Matches if the provided matcher does not match.
3528///
3529/// Example matches Y (matcher = cxxRecordDecl(unless(hasName("X"))))
3530/// \code
3531/// class X {};
3532/// class Y {};
3533/// \endcode
3534///
3535/// Usable as: Any Matcher
3536extern const internal::VariadicOperatorMatcherFunc<1, 1> unless;
3537
3538/// Matches a node if the declaration associated with that node
3539/// matches the given matcher.
3540///
3541/// The associated declaration is:
3542/// - for type nodes, the declaration of the underlying type
3543/// - for CallExpr, the declaration of the callee
3544/// - for MemberExpr, the declaration of the referenced member
3545/// - for CXXConstructExpr, the declaration of the constructor
3546/// - for CXXNewExpr, the declaration of the operator new
3547/// - for ObjCIvarExpr, the declaration of the ivar
3548///
3549/// For type nodes, hasDeclaration will generally match the declaration of the
3550/// sugared type. Given
3551/// \code
3552/// class X {};
3553/// typedef X Y;
3554/// Y y;
3555/// \endcode
3556/// in varDecl(hasType(hasDeclaration(decl()))) the decl will match the
3557/// typedefDecl. A common use case is to match the underlying, desugared type.
3558/// This can be achieved by using the hasUnqualifiedDesugaredType matcher:
3559/// \code
3560/// varDecl(hasType(hasUnqualifiedDesugaredType(
3561/// recordType(hasDeclaration(decl())))))
3562/// \endcode
3563/// In this matcher, the decl will match the CXXRecordDecl of class X.
3564///
3565/// Usable as: Matcher<AddrLabelExpr>, Matcher<CallExpr>,
3566/// Matcher<CXXConstructExpr>, Matcher<CXXNewExpr>, Matcher<DeclRefExpr>,
3567/// Matcher<EnumType>, Matcher<InjectedClassNameType>, Matcher<LabelStmt>,
3568/// Matcher<MemberExpr>, Matcher<QualType>, Matcher<RecordType>,
3569/// Matcher<TagType>, Matcher<TemplateSpecializationType>,
3570/// Matcher<TemplateTypeParmType>, Matcher<TypedefType>,
3571/// Matcher<UnresolvedUsingType>
3572inline internal::PolymorphicMatcher<
3573 internal::HasDeclarationMatcher,
3574 void(internal::HasDeclarationSupportedTypes), internal::Matcher<Decl>>
3575hasDeclaration(const internal::Matcher<Decl> &InnerMatcher) {
3576 return internal::PolymorphicMatcher<
3577 internal::HasDeclarationMatcher,
3578 void(internal::HasDeclarationSupportedTypes), internal::Matcher<Decl>>(
3579 InnerMatcher);
3580}
3581
3582/// Matches a \c NamedDecl whose underlying declaration matches the given
3583/// matcher.
3584///
3585/// Given
3586/// \code
3587/// namespace N { template<class T> void f(T t); }
3588/// template <class T> void g() { using N::f; f(T()); }
3589/// \endcode
3590/// \c unresolvedLookupExpr(hasAnyDeclaration(
3591/// namedDecl(hasUnderlyingDecl(hasName("::N::f")))))
3592/// matches the use of \c f in \c g() .
3593AST_MATCHER_P(NamedDecl, hasUnderlyingDecl, internal::Matcher<NamedDecl>,namespace internal { class matcher_hasUnderlyingDecl0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NamedDecl> { public: explicit matcher_hasUnderlyingDecl0Matcher
( internal::Matcher<NamedDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NamedDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NamedDecl> hasUnderlyingDecl( internal::Matcher
<NamedDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasUnderlyingDecl0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<NamedDecl> ( &hasUnderlyingDecl_Type0)(internal::Matcher
<NamedDecl> const &InnerMatcher); inline bool internal
::matcher_hasUnderlyingDecl0Matcher::matches( const NamedDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
3594 InnerMatcher)namespace internal { class matcher_hasUnderlyingDecl0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NamedDecl> { public: explicit matcher_hasUnderlyingDecl0Matcher
( internal::Matcher<NamedDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NamedDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamedDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NamedDecl> hasUnderlyingDecl( internal::Matcher
<NamedDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasUnderlyingDecl0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<NamedDecl> ( &hasUnderlyingDecl_Type0)(internal::Matcher
<NamedDecl> const &InnerMatcher); inline bool internal
::matcher_hasUnderlyingDecl0Matcher::matches( const NamedDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3595 const NamedDecl *UnderlyingDecl = Node.getUnderlyingDecl();
3596
3597 return UnderlyingDecl != nullptr &&
3598 InnerMatcher.matches(*UnderlyingDecl, Finder, Builder);
3599}
3600
3601/// Matches on the implicit object argument of a member call expression, after
3602/// stripping off any parentheses or implicit casts.
3603///
3604/// Given
3605/// \code
3606/// class Y { public: void m(); };
3607/// Y g();
3608/// class X : public Y {};
3609/// void z(Y y, X x) { y.m(); (g()).m(); x.m(); }
3610/// \endcode
3611/// cxxMemberCallExpr(on(hasType(cxxRecordDecl(hasName("Y")))))
3612/// matches `y.m()` and `(g()).m()`.
3613/// cxxMemberCallExpr(on(hasType(cxxRecordDecl(hasName("X")))))
3614/// matches `x.m()`.
3615/// cxxMemberCallExpr(on(callExpr()))
3616/// matches `(g()).m()`.
3617///
3618/// FIXME: Overload to allow directly matching types?
3619AST_MATCHER_P(CXXMemberCallExpr, on, internal::Matcher<Expr>,namespace internal { class matcher_on0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_on0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CXXMemberCallExpr &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<CXXMemberCallExpr> on
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_on0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<CXXMemberCallExpr> ( &on_Type0)
(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_on0Matcher::matches( const CXXMemberCallExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
3620 InnerMatcher)namespace internal { class matcher_on0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_on0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CXXMemberCallExpr &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<CXXMemberCallExpr> on
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_on0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<CXXMemberCallExpr> ( &on_Type0)
(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_on0Matcher::matches( const CXXMemberCallExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3621 const Expr *ExprNode = Node.getImplicitObjectArgument()
3622 ->IgnoreParenImpCasts();
3623 return (ExprNode != nullptr &&
3624 InnerMatcher.matches(*ExprNode, Finder, Builder));
3625}
3626
3627
3628/// Matches on the receiver of an ObjectiveC Message expression.
3629///
3630/// Example
3631/// matcher = objCMessageExpr(hasReceiverType(asString("UIWebView *")));
3632/// matches the [webView ...] message invocation.
3633/// \code
3634/// NSString *webViewJavaScript = ...
3635/// UIWebView *webView = ...
3636/// [webView stringByEvaluatingJavaScriptFromString:webViewJavascript];
3637/// \endcode
3638AST_MATCHER_P(ObjCMessageExpr, hasReceiverType, internal::Matcher<QualType>,namespace internal { class matcher_hasReceiverType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasReceiverType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ObjCMessageExpr &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> hasReceiverType( internal::Matcher<QualType> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasReceiverType0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> ( &hasReceiverType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_hasReceiverType0Matcher
::matches( const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
3639 InnerMatcher)namespace internal { class matcher_hasReceiverType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasReceiverType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ObjCMessageExpr &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> hasReceiverType( internal::Matcher<QualType> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasReceiverType0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> ( &hasReceiverType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_hasReceiverType0Matcher
::matches( const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3640 const QualType TypeDecl = Node.getReceiverType();
3641 return InnerMatcher.matches(TypeDecl, Finder, Builder);
3642}
3643
3644/// Returns true when the Objective-C method declaration is a class method.
3645///
3646/// Example
3647/// matcher = objcMethodDecl(isClassMethod())
3648/// matches
3649/// \code
3650/// @interface I + (void)foo; @end
3651/// \endcode
3652/// but not
3653/// \code
3654/// @interface I - (void)bar; @end
3655/// \endcode
3656AST_MATCHER(ObjCMethodDecl, isClassMethod)namespace internal { class matcher_isClassMethodMatcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMethodDecl
> { public: explicit matcher_isClassMethodMatcher() = default
; bool matches(const ObjCMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<ObjCMethodDecl>
isClassMethod() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isClassMethodMatcher()); } inline bool
internal::matcher_isClassMethodMatcher::matches( const ObjCMethodDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3657 return Node.isClassMethod();
3658}
3659
3660/// Returns true when the Objective-C method declaration is an instance method.
3661///
3662/// Example
3663/// matcher = objcMethodDecl(isInstanceMethod())
3664/// matches
3665/// \code
3666/// @interface I - (void)bar; @end
3667/// \endcode
3668/// but not
3669/// \code
3670/// @interface I + (void)foo; @end
3671/// \endcode
3672AST_MATCHER(ObjCMethodDecl, isInstanceMethod)namespace internal { class matcher_isInstanceMethodMatcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMethodDecl
> { public: explicit matcher_isInstanceMethodMatcher() = default
; bool matches(const ObjCMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<ObjCMethodDecl>
isInstanceMethod() { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_isInstanceMethodMatcher())
; } inline bool internal::matcher_isInstanceMethodMatcher::matches
( const ObjCMethodDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3673 return Node.isInstanceMethod();
3674}
3675
3676/// Returns true when the Objective-C message is sent to a class.
3677///
3678/// Example
3679/// matcher = objcMessageExpr(isClassMessage())
3680/// matches
3681/// \code
3682/// [NSString stringWithFormat:@"format"];
3683/// \endcode
3684/// but not
3685/// \code
3686/// NSString *x = @"hello";
3687/// [x containsString:@"h"];
3688/// \endcode
3689AST_MATCHER(ObjCMessageExpr, isClassMessage)namespace internal { class matcher_isClassMessageMatcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_isClassMessageMatcher() = default
; bool matches(const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<ObjCMessageExpr>
isClassMessage() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isClassMessageMatcher()); } inline bool
internal::matcher_isClassMessageMatcher::matches( const ObjCMessageExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3690 return Node.isClassMessage();
3691}
3692
3693/// Returns true when the Objective-C message is sent to an instance.
3694///
3695/// Example
3696/// matcher = objcMessageExpr(isInstanceMessage())
3697/// matches
3698/// \code
3699/// NSString *x = @"hello";
3700/// [x containsString:@"h"];
3701/// \endcode
3702/// but not
3703/// \code
3704/// [NSString stringWithFormat:@"format"];
3705/// \endcode
3706AST_MATCHER(ObjCMessageExpr, isInstanceMessage)namespace internal { class matcher_isInstanceMessageMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
ObjCMessageExpr> { public: explicit matcher_isInstanceMessageMatcher
() = default; bool matches(const ObjCMessageExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; }; } inline ::clang::ast_matchers::internal::Matcher
<ObjCMessageExpr> isInstanceMessage() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_isInstanceMessageMatcher
()); } inline bool internal::matcher_isInstanceMessageMatcher
::matches( const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3707 return Node.isInstanceMessage();
3708}
3709
3710/// Matches if the Objective-C message is sent to an instance,
3711/// and the inner matcher matches on that instance.
3712///
3713/// For example the method call in
3714/// \code
3715/// NSString *x = @"hello";
3716/// [x containsString:@"h"];
3717/// \endcode
3718/// is matched by
3719/// objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
3720AST_MATCHER_P(ObjCMessageExpr, hasReceiver, internal::Matcher<Expr>,namespace internal { class matcher_hasReceiver0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasReceiver0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ObjCMessageExpr &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> hasReceiver( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasReceiver0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ObjCMessageExpr> ( &
hasReceiver_Type0)(internal::Matcher<Expr> const &InnerMatcher
); inline bool internal::matcher_hasReceiver0Matcher::matches
( const ObjCMessageExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
3721 InnerMatcher)namespace internal { class matcher_hasReceiver0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasReceiver0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ObjCMessageExpr &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> hasReceiver( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasReceiver0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ObjCMessageExpr> ( &
hasReceiver_Type0)(internal::Matcher<Expr> const &InnerMatcher
); inline bool internal::matcher_hasReceiver0Matcher::matches
( const ObjCMessageExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3722 const Expr *ReceiverNode = Node.getInstanceReceiver();
3723 return (ReceiverNode != nullptr &&
3724 InnerMatcher.matches(*ReceiverNode->IgnoreParenImpCasts(), Finder,
3725 Builder));
3726}
3727
3728/// Matches when BaseName == Selector.getAsString()
3729///
3730/// matcher = objCMessageExpr(hasSelector("loadHTMLString:baseURL:"));
3731/// matches the outer message expr in the code below, but NOT the message
3732/// invocation for self.bodyView.
3733/// \code
3734/// [self.bodyView loadHTMLString:html baseURL:NULL];
3735/// \endcode
3736AST_MATCHER_P(ObjCMessageExpr, hasSelector, std::string, BaseName)namespace internal { class matcher_hasSelector0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasSelector0Matcher( std::string
const &ABaseName) : BaseName(ABaseName) {} bool matches(
const ObjCMessageExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string BaseName; }; }
inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> hasSelector( std::string const &BaseName) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasSelector0Matcher
(BaseName)); } typedef ::clang::ast_matchers::internal::Matcher
<ObjCMessageExpr> ( &hasSelector_Type0)(std::string
const &BaseName); inline bool internal::matcher_hasSelector0Matcher
::matches( const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3737 Selector Sel = Node.getSelector();
3738 return BaseName == Sel.getAsString();
3739}
3740
3741/// Matches when at least one of the supplied string equals to the
3742/// Selector.getAsString()
3743///
3744/// matcher = objCMessageExpr(hasSelector("methodA:", "methodB:"));
3745/// matches both of the expressions below:
3746/// \code
3747/// [myObj methodA:argA];
3748/// [myObj methodB:argB];
3749/// \endcode
3750extern const internal::VariadicFunction<internal::Matcher<ObjCMessageExpr>,
3751 StringRef,
3752 internal::hasAnySelectorFunc>
3753 hasAnySelector;
3754
3755/// Matches ObjC selectors whose name contains
3756/// a substring matched by the given RegExp.
3757/// matcher = objCMessageExpr(matchesSelector("loadHTMLString\:baseURL?"));
3758/// matches the outer message expr in the code below, but NOT the message
3759/// invocation for self.bodyView.
3760/// \code
3761/// [self.bodyView loadHTMLString:html baseURL:NULL];
3762/// \endcode
3763AST_MATCHER_REGEX(ObjCMessageExpr, matchesSelector, RegExp)namespace internal { class matcher_matchesSelector0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_matchesSelector0Matcher( std::
shared_ptr<llvm::Regex> RE) : RegExp(std::move(RE)) {} bool
matches(const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: std
::shared_ptr<llvm::Regex> RegExp; }; } inline ::clang::
ast_matchers::internal::Matcher<ObjCMessageExpr> matchesSelector
( llvm::StringRef RegExp, llvm::Regex::RegexFlags RegexFlags)
{ return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_matchesSelector0Matcher( ::clang::ast_matchers::internal
::createAndVerifyRegex( RegExp, RegexFlags, "matchesSelector"
))); } inline ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> matchesSelector( llvm::StringRef RegExp) { return matchesSelector
(RegExp, llvm::Regex::NoFlags); } typedef ::clang::ast_matchers
::internal::Matcher<ObjCMessageExpr> ( &matchesSelector_Type0Flags
)(llvm::StringRef, llvm::Regex::RegexFlags); typedef ::clang::
ast_matchers::internal::Matcher<ObjCMessageExpr> ( &
matchesSelector_Type0)(llvm::StringRef); inline bool internal
::matcher_matchesSelector0Matcher::matches( const ObjCMessageExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3764 std::string SelectorString = Node.getSelector().getAsString();
3765 return RegExp->match(SelectorString);
3766}
3767
3768/// Matches when the selector is the empty selector
3769///
3770/// Matches only when the selector of the objCMessageExpr is NULL. This may
3771/// represent an error condition in the tree!
3772AST_MATCHER(ObjCMessageExpr, hasNullSelector)namespace internal { class matcher_hasNullSelectorMatcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasNullSelectorMatcher() = default
; bool matches(const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<ObjCMessageExpr>
hasNullSelector() { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasNullSelectorMatcher());
} inline bool internal::matcher_hasNullSelectorMatcher::matches
( const ObjCMessageExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3773 return Node.getSelector().isNull();
3774}
3775
3776/// Matches when the selector is a Unary Selector
3777///
3778/// matcher = objCMessageExpr(matchesSelector(hasUnarySelector());
3779/// matches self.bodyView in the code below, but NOT the outer message
3780/// invocation of "loadHTMLString:baseURL:".
3781/// \code
3782/// [self.bodyView loadHTMLString:html baseURL:NULL];
3783/// \endcode
3784AST_MATCHER(ObjCMessageExpr, hasUnarySelector)namespace internal { class matcher_hasUnarySelectorMatcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_hasUnarySelectorMatcher() = default
; bool matches(const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<ObjCMessageExpr>
hasUnarySelector() { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasUnarySelectorMatcher())
; } inline bool internal::matcher_hasUnarySelectorMatcher::matches
( const ObjCMessageExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3785 return Node.getSelector().isUnarySelector();
3786}
3787
3788/// Matches when the selector is a keyword selector
3789///
3790/// objCMessageExpr(hasKeywordSelector()) matches the generated setFrame
3791/// message expression in
3792///
3793/// \code
3794/// UIWebView *webView = ...;
3795/// CGRect bodyFrame = webView.frame;
3796/// bodyFrame.size.height = self.bodyContentHeight;
3797/// webView.frame = bodyFrame;
3798/// // ^---- matches here
3799/// \endcode
3800AST_MATCHER(ObjCMessageExpr, hasKeywordSelector)namespace internal { class matcher_hasKeywordSelectorMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
ObjCMessageExpr> { public: explicit matcher_hasKeywordSelectorMatcher
() = default; bool matches(const ObjCMessageExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; }; } inline ::clang::ast_matchers::internal::Matcher
<ObjCMessageExpr> hasKeywordSelector() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_hasKeywordSelectorMatcher
()); } inline bool internal::matcher_hasKeywordSelectorMatcher
::matches( const ObjCMessageExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
3801 return Node.getSelector().isKeywordSelector();
3802}
3803
3804/// Matches when the selector has the specified number of arguments
3805///
3806/// matcher = objCMessageExpr(numSelectorArgs(0));
3807/// matches self.bodyView in the code below
3808///
3809/// matcher = objCMessageExpr(numSelectorArgs(2));
3810/// matches the invocation of "loadHTMLString:baseURL:" but not that
3811/// of self.bodyView
3812/// \code
3813/// [self.bodyView loadHTMLString:html baseURL:NULL];
3814/// \endcode
3815AST_MATCHER_P(ObjCMessageExpr, numSelectorArgs, unsigned, N)namespace internal { class matcher_numSelectorArgs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ObjCMessageExpr
> { public: explicit matcher_numSelectorArgs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const ObjCMessageExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::Matcher<ObjCMessageExpr>
numSelectorArgs( unsigned const &N) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_numSelectorArgs0Matcher
(N)); } typedef ::clang::ast_matchers::internal::Matcher<ObjCMessageExpr
> ( &numSelectorArgs_Type0)(unsigned const &N); inline
bool internal::matcher_numSelectorArgs0Matcher::matches( const
ObjCMessageExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3816 return Node.getSelector().getNumArgs() == N;
3817}
3818
3819/// Matches if the call expression's callee expression matches.
3820///
3821/// Given
3822/// \code
3823/// class Y { void x() { this->x(); x(); Y y; y.x(); } };
3824/// void f() { f(); }
3825/// \endcode
3826/// callExpr(callee(expr()))
3827/// matches this->x(), x(), y.x(), f()
3828/// with callee(...)
3829/// matching this->x, x, y.x, f respectively
3830///
3831/// Note: Callee cannot take the more general internal::Matcher<Expr>
3832/// because this introduces ambiguous overloads with calls to Callee taking a
3833/// internal::Matcher<Decl>, as the matcher hierarchy is purely
3834/// implemented in terms of implicit casts.
3835AST_MATCHER_P(CallExpr, callee, internal::Matcher<Stmt>,namespace internal { class matcher_callee0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CallExpr>
{ public: explicit matcher_callee0Matcher( internal::Matcher
<Stmt> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Stmt> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<CallExpr> callee( internal::Matcher
<Stmt> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_callee0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CallExpr> ( &callee_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_callee0Matcher
::matches( const CallExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
3836 InnerMatcher)namespace internal { class matcher_callee0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CallExpr>
{ public: explicit matcher_callee0Matcher( internal::Matcher
<Stmt> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Stmt> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<CallExpr> callee( internal::Matcher
<Stmt> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_callee0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CallExpr> ( &callee_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_callee0Matcher
::matches( const CallExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
3837 const Expr *ExprNode = Node.getCallee();
3838 return (ExprNode != nullptr &&
3839 InnerMatcher.matches(*ExprNode, Finder, Builder));
3840}
3841
3842/// Matches 1) if the call expression's callee's declaration matches the
3843/// given matcher; or 2) if the Obj-C message expression's callee's method
3844/// declaration matches the given matcher.
3845///
3846/// Example matches y.x() (matcher = callExpr(callee(
3847/// cxxMethodDecl(hasName("x")))))
3848/// \code
3849/// class Y { public: void x(); };
3850/// void z() { Y y; y.x(); }
3851/// \endcode
3852///
3853/// Example 2. Matches [I foo] with
3854/// objcMessageExpr(callee(objcMethodDecl(hasName("foo"))))
3855///
3856/// \code
3857/// @interface I: NSObject
3858/// +(void)foo;
3859/// @end
3860/// ...
3861/// [I foo]
3862/// \endcode
3863AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_callee1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_callee1Matcher( internal::Matcher<Decl> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_callee1Matcher, void
(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> > callee(internal
::Matcher<Decl> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_callee1Matcher
, void(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_callee1Matcher, void(::clang::ast_matchers
::internal::TypeList<ObjCMessageExpr, CallExpr>), internal
::Matcher<Decl> > (&callee_Type1)(internal::Matcher
<Decl> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_callee1Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
3864 callee, AST_POLYMORPHIC_SUPPORTED_TYPES(ObjCMessageExpr, CallExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_callee1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_callee1Matcher( internal::Matcher<Decl> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_callee1Matcher, void
(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> > callee(internal
::Matcher<Decl> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_callee1Matcher
, void(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_callee1Matcher, void(::clang::ast_matchers
::internal::TypeList<ObjCMessageExpr, CallExpr>), internal
::Matcher<Decl> > (&callee_Type1)(internal::Matcher
<Decl> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_callee1Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
3865 internal::Matcher<Decl>, InnerMatcher, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_callee1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_callee1Matcher( internal::Matcher<Decl> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_callee1Matcher, void
(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> > callee(internal
::Matcher<Decl> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_callee1Matcher
, void(::clang::ast_matchers::internal::TypeList<ObjCMessageExpr
, CallExpr>), internal::Matcher<Decl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_callee1Matcher, void(::clang::ast_matchers
::internal::TypeList<ObjCMessageExpr, CallExpr>), internal
::Matcher<Decl> > (&callee_Type1)(internal::Matcher
<Decl> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_callee1Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
3866 if (const auto *CallNode = dyn_cast<CallExpr>(&Node))
3867 return callExpr(hasDeclaration(InnerMatcher))
3868 .matches(Node, Finder, Builder);
3869 else {
3870 // The dynamic cast below is guaranteed to succeed as there are only 2
3871 // supported return types.
3872 const auto *MsgNode = cast<ObjCMessageExpr>(&Node);
3873 const Decl *DeclNode = MsgNode->getMethodDecl();
3874 return (DeclNode != nullptr &&
3875 InnerMatcher.matches(*DeclNode, Finder, Builder));
3876 }
3877}
3878
3879/// Matches if the expression's or declaration's type matches a type
3880/// matcher.
3881///
3882/// Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
3883/// and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
3884/// and U (matcher = typedefDecl(hasType(asString("int")))
3885/// and friend class X (matcher = friendDecl(hasType("X"))
3886/// and public virtual X (matcher = cxxBaseSpecifier(hasType(
3887/// asString("class X")))
3888/// \code
3889/// class X {};
3890/// void y(X &x) { x; X z; }
3891/// typedef int U;
3892/// class Y { friend class X; };
3893/// class Z : public virtual X {};
3894/// \endcode
3895AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType0Matcher( internal::Matcher<QualType> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType0Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > hasType(internal::Matcher<QualType
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> >(InnerMatcher); } typedef ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > (&hasType_Type0)(internal::
Matcher<QualType> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3896 hasType,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType0Matcher( internal::Matcher<QualType> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType0Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > hasType(internal::Matcher<QualType
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> >(InnerMatcher); } typedef ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > (&hasType_Type0)(internal::
Matcher<QualType> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3897 AST_POLYMORPHIC_SUPPORTED_TYPES(Expr, FriendDecl, TypedefNameDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType0Matcher( internal::Matcher<QualType> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType0Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > hasType(internal::Matcher<QualType
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> >(InnerMatcher); } typedef ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > (&hasType_Type0)(internal::
Matcher<QualType> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3898 ValueDecl, CXXBaseSpecifier),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType0Matcher( internal::Matcher<QualType> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType0Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > hasType(internal::Matcher<QualType
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> >(InnerMatcher); } typedef ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > (&hasType_Type0)(internal::
Matcher<QualType> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3899 internal::Matcher<QualType>, InnerMatcher, 0)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType0Matcher( internal::Matcher<QualType> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType0Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > hasType(internal::Matcher<QualType
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> >(InnerMatcher); } typedef ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasType0Matcher
, void(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, TypedefNameDecl, ValueDecl, CXXBaseSpecifier>), internal
::Matcher<QualType> > (&hasType_Type0)(internal::
Matcher<QualType> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3900 QualType QT = internal::getUnderlyingType(Node);
3901 if (!QT.isNull())
3902 return InnerMatcher.matches(QT, Finder, Builder);
3903 return false;
3904}
3905
3906/// Overloaded to match the declaration of the expression's or value
3907/// declaration's type.
3908///
3909/// In case of a value declaration (for example a variable declaration),
3910/// this resolves one layer of indirection. For example, in the value
3911/// declaration "X x;", cxxRecordDecl(hasName("X")) matches the declaration of
3912/// X, while varDecl(hasType(cxxRecordDecl(hasName("X")))) matches the
3913/// declaration of x.
3914///
3915/// Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X")))))
3916/// and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
3917/// and friend class X (matcher = friendDecl(hasType("X"))
3918/// and public virtual X (matcher = cxxBaseSpecifier(hasType(
3919/// cxxRecordDecl(hasName("X"))))
3920/// \code
3921/// class X {};
3922/// void y(X &x) { x; X z; }
3923/// class Y { friend class X; };
3924/// class Z : public virtual X {};
3925/// \endcode
3926///
3927/// Example matches class Derived
3928/// (matcher = cxxRecordDecl(hasAnyBase(hasType(cxxRecordDecl(hasName("Base"))))))
3929/// \code
3930/// class Base {};
3931/// class Derived : Base {};
3932/// \endcode
3933///
3934/// Usable as: Matcher<Expr>, Matcher<FriendDecl>, Matcher<ValueDecl>,
3935/// Matcher<CXXBaseSpecifier>
3936AST_POLYMORPHIC_MATCHER_P_OVERLOAD(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType1Matcher( internal::Matcher<Decl> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType1Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, ValueDecl, CXXBaseSpecifier>), internal::Matcher<Decl
> > hasType(internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasType1Matcher, void(::clang::ast_matchers
::internal::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier
>), internal::Matcher<Decl> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasType1Matcher, void(::clang::ast_matchers::internal
::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier>
), internal::Matcher<Decl> > (&hasType_Type1)(internal
::Matcher<Decl> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3937 hasType,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType1Matcher( internal::Matcher<Decl> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType1Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, ValueDecl, CXXBaseSpecifier>), internal::Matcher<Decl
> > hasType(internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasType1Matcher, void(::clang::ast_matchers
::internal::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier
>), internal::Matcher<Decl> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasType1Matcher, void(::clang::ast_matchers::internal
::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier>
), internal::Matcher<Decl> > (&hasType_Type1)(internal
::Matcher<Decl> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3938 AST_POLYMORPHIC_SUPPORTED_TYPES(Expr, FriendDecl, ValueDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType1Matcher( internal::Matcher<Decl> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType1Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, ValueDecl, CXXBaseSpecifier>), internal::Matcher<Decl
> > hasType(internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasType1Matcher, void(::clang::ast_matchers
::internal::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier
>), internal::Matcher<Decl> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasType1Matcher, void(::clang::ast_matchers::internal
::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier>
), internal::Matcher<Decl> > (&hasType_Type1)(internal
::Matcher<Decl> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3939 CXXBaseSpecifier),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType1Matcher( internal::Matcher<Decl> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType1Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, ValueDecl, CXXBaseSpecifier>), internal::Matcher<Decl
> > hasType(internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasType1Matcher, void(::clang::ast_matchers
::internal::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier
>), internal::Matcher<Decl> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasType1Matcher, void(::clang::ast_matchers::internal
::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier>
), internal::Matcher<Decl> > (&hasType_Type1)(internal
::Matcher<Decl> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3940 internal::Matcher<Decl>, InnerMatcher, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasType1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasType1Matcher( internal::Matcher<Decl> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Decl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasType1Matcher, void
(::clang::ast_matchers::internal::TypeList<Expr, FriendDecl
, ValueDecl, CXXBaseSpecifier>), internal::Matcher<Decl
> > hasType(internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasType1Matcher, void(::clang::ast_matchers
::internal::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier
>), internal::Matcher<Decl> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasType1Matcher, void(::clang::ast_matchers::internal
::TypeList<Expr, FriendDecl, ValueDecl, CXXBaseSpecifier>
), internal::Matcher<Decl> > (&hasType_Type1)(internal
::Matcher<Decl> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasType1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3941 QualType QT = internal::getUnderlyingType(Node);
3942 if (!QT.isNull())
3943 return qualType(hasDeclaration(InnerMatcher)).matches(QT, Finder, Builder);
3944 return false;
3945}
3946
3947/// Matches if the type location of a node matches the inner matcher.
3948///
3949/// Examples:
3950/// \code
3951/// int x;
3952/// \endcode
3953/// declaratorDecl(hasTypeLoc(loc(asString("int"))))
3954/// matches int x
3955///
3956/// \code
3957/// auto x = int(3);
3958/// \endcode
3959/// cxxTemporaryObjectExpr(hasTypeLoc(loc(asString("int"))))
3960/// matches int(3)
3961///
3962/// \code
3963/// struct Foo { Foo(int, int); };
3964/// auto x = Foo(1, 2);
3965/// \endcode
3966/// cxxFunctionalCastExpr(hasTypeLoc(loc(asString("struct Foo"))))
3967/// matches Foo(1, 2)
3968///
3969/// Usable as: Matcher<BlockDecl>, Matcher<CXXBaseSpecifier>,
3970/// Matcher<CXXCtorInitializer>, Matcher<CXXFunctionalCastExpr>,
3971/// Matcher<CXXNewExpr>, Matcher<CXXTemporaryObjectExpr>,
3972/// Matcher<CXXUnresolvedConstructExpr>,
3973/// Matcher<ClassTemplateSpecializationDecl>, Matcher<CompoundLiteralExpr>,
3974/// Matcher<DeclaratorDecl>, Matcher<ExplicitCastExpr>,
3975/// Matcher<ObjCPropertyDecl>, Matcher<TemplateArgumentLoc>,
3976/// Matcher<TypedefNameDecl>
3977AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3978 hasTypeLoc,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3979 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3980 BlockDecl, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3981 CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3982 ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3983 ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3984 TypedefNameDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
3985 internal::Matcher<TypeLoc>, Inner)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasTypeLoc0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasTypeLoc0Matcher( internal::Matcher<TypeLoc
> const &AInner) : Inner(AInner) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> Inner; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers
::internal::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > hasTypeLoc(internal
::Matcher<TypeLoc> const &Inner) { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasTypeLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<BlockDecl
, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr
, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasTypeLoc0Matcher, void(::clang::ast_matchers::internal
::TypeList<BlockDecl, CXXBaseSpecifier, CXXCtorInitializer
, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr
, ClassTemplateSpecializationDecl, CompoundLiteralExpr, DeclaratorDecl
, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl
>), internal::Matcher<TypeLoc> > (&hasTypeLoc_Type0
)(internal::Matcher<TypeLoc> const &Inner); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasTypeLoc0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
3986 TypeSourceInfo *source = internal::GetTypeSourceInfo(Node);
3987 if (source == nullptr) {
3988 // This happens for example for implicit destructors.
3989 return false;
3990 }
3991 return Inner.matches(source->getTypeLoc(), Finder, Builder);
3992}
3993
3994/// Matches if the matched type is represented by the given string.
3995///
3996/// Given
3997/// \code
3998/// class Y { public: void x(); };
3999/// void z() { Y* y; y->x(); }
4000/// \endcode
4001/// cxxMemberCallExpr(on(hasType(asString("class Y *"))))
4002/// matches y->x()
4003AST_MATCHER_P(QualType, asString, std::string, Name)namespace internal { class matcher_asString0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_asString0Matcher( std::string const
&AName) : Name(AName) {} bool matches(const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: std::string Name; }; } inline ::clang
::ast_matchers::internal::Matcher<QualType> asString( std
::string const &Name) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_asString0Matcher(Name));
} typedef ::clang::ast_matchers::internal::Matcher<QualType
> ( &asString_Type0)(std::string const &Name); inline
bool internal::matcher_asString0Matcher::matches( const QualType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4004 return Name == Node.getAsString();
4005}
4006
4007/// Matches if the matched type is a pointer type and the pointee type
4008/// matches the specified matcher.
4009///
4010/// Example matches y->x()
4011/// (matcher = cxxMemberCallExpr(on(hasType(pointsTo
4012/// cxxRecordDecl(hasName("Y")))))))
4013/// \code
4014/// class Y { public: void x(); };
4015/// void z() { Y *y; y->x(); }
4016/// \endcode
4017AST_MATCHER_P(namespace internal { class matcher_pointsTo0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_pointsTo0Matcher( internal::Matcher
<QualType> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<QualType> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<QualType> pointsTo( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_pointsTo0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &pointsTo_Type0)(internal::Matcher<
QualType> const &InnerMatcher); inline bool internal::
matcher_pointsTo0Matcher::matches( const QualType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
4018 QualType, pointsTo, internal::Matcher<QualType>,namespace internal { class matcher_pointsTo0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_pointsTo0Matcher( internal::Matcher
<QualType> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<QualType> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<QualType> pointsTo( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_pointsTo0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &pointsTo_Type0)(internal::Matcher<
QualType> const &InnerMatcher); inline bool internal::
matcher_pointsTo0Matcher::matches( const QualType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
4019 InnerMatcher)namespace internal { class matcher_pointsTo0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_pointsTo0Matcher( internal::Matcher
<QualType> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<QualType> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<QualType> pointsTo( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_pointsTo0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &pointsTo_Type0)(internal::Matcher<
QualType> const &InnerMatcher); inline bool internal::
matcher_pointsTo0Matcher::matches( const QualType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
4020 return (!Node.isNull() && Node->isAnyPointerType() &&
4021 InnerMatcher.matches(Node->getPointeeType(), Finder, Builder));
4022}
4023
4024/// Overloaded to match the pointee type's declaration.
4025AST_MATCHER_P_OVERLOAD(QualType, pointsTo, internal::Matcher<Decl>,namespace internal { class matcher_pointsTo1Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_pointsTo1Matcher( internal::Matcher
<Decl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Decl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<QualType> pointsTo( internal::Matcher
<Decl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_pointsTo1Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &pointsTo_Type1)(internal::Matcher<
Decl> const &InnerMatcher); inline bool internal::matcher_pointsTo1Matcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4026 InnerMatcher, 1)namespace internal { class matcher_pointsTo1Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_pointsTo1Matcher( internal::Matcher
<Decl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Decl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<QualType> pointsTo( internal::Matcher
<Decl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_pointsTo1Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &pointsTo_Type1)(internal::Matcher<
Decl> const &InnerMatcher); inline bool internal::matcher_pointsTo1Matcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4027 return pointsTo(qualType(hasDeclaration(InnerMatcher)))
4028 .matches(Node, Finder, Builder);
4029}
4030
4031/// Matches if the matched type matches the unqualified desugared
4032/// type of the matched node.
4033///
4034/// For example, in:
4035/// \code
4036/// class A {};
4037/// using B = A;
4038/// \endcode
4039/// The matcher type(hasUnqualifiedDesugaredType(recordType())) matches
4040/// both B and A.
4041AST_MATCHER_P(Type, hasUnqualifiedDesugaredType, internal::Matcher<Type>,namespace internal { class matcher_hasUnqualifiedDesugaredType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Type> { public: explicit matcher_hasUnqualifiedDesugaredType0Matcher
( internal::Matcher<Type> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Type &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Type> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Type> hasUnqualifiedDesugaredType
( internal::Matcher<Type> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasUnqualifiedDesugaredType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<Type>
( &hasUnqualifiedDesugaredType_Type0)(internal::Matcher<
Type> const &InnerMatcher); inline bool internal::matcher_hasUnqualifiedDesugaredType0Matcher
::matches( const Type &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4042 InnerMatcher)namespace internal { class matcher_hasUnqualifiedDesugaredType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Type> { public: explicit matcher_hasUnqualifiedDesugaredType0Matcher
( internal::Matcher<Type> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Type &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Type> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Type> hasUnqualifiedDesugaredType
( internal::Matcher<Type> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasUnqualifiedDesugaredType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<Type>
( &hasUnqualifiedDesugaredType_Type0)(internal::Matcher<
Type> const &InnerMatcher); inline bool internal::matcher_hasUnqualifiedDesugaredType0Matcher
::matches( const Type &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4043 return InnerMatcher.matches(*Node.getUnqualifiedDesugaredType(), Finder,
4044 Builder);
4045}
4046
4047/// Matches if the matched type is a reference type and the referenced
4048/// type matches the specified matcher.
4049///
4050/// Example matches X &x and const X &y
4051/// (matcher = varDecl(hasType(references(cxxRecordDecl(hasName("X"))))))
4052/// \code
4053/// class X {
4054/// void a(X b) {
4055/// X &x = b;
4056/// const X &y = b;
4057/// }
4058/// };
4059/// \endcode
4060AST_MATCHER_P(QualType, references, internal::Matcher<QualType>,namespace internal { class matcher_references0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_references0Matcher( internal::
Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> references
( internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_references0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<QualType> ( &references_Type0
)(internal::Matcher<QualType> const &InnerMatcher);
inline bool internal::matcher_references0Matcher::matches( const
QualType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4061 InnerMatcher)namespace internal { class matcher_references0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_references0Matcher( internal::
Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> references
( internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_references0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<QualType> ( &references_Type0
)(internal::Matcher<QualType> const &InnerMatcher);
inline bool internal::matcher_references0Matcher::matches( const
QualType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4062 return (!Node.isNull() && Node->isReferenceType() &&
4063 InnerMatcher.matches(Node->getPointeeType(), Finder, Builder));
4064}
4065
4066/// Matches QualTypes whose canonical type matches InnerMatcher.
4067///
4068/// Given:
4069/// \code
4070/// typedef int &int_ref;
4071/// int a;
4072/// int_ref b = a;
4073/// \endcode
4074///
4075/// \c varDecl(hasType(qualType(referenceType()))))) will not match the
4076/// declaration of b but \c
4077/// varDecl(hasType(qualType(hasCanonicalType(referenceType())))))) does.
4078AST_MATCHER_P(QualType, hasCanonicalType, internal::Matcher<QualType>,namespace internal { class matcher_hasCanonicalType0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualType> { public: explicit matcher_hasCanonicalType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const QualType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<QualType> hasCanonicalType( internal::Matcher
<QualType> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasCanonicalType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &hasCanonicalType_Type0)(internal::Matcher
<QualType> const &InnerMatcher); inline bool internal
::matcher_hasCanonicalType0Matcher::matches( const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4079 InnerMatcher)namespace internal { class matcher_hasCanonicalType0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualType> { public: explicit matcher_hasCanonicalType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const QualType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<QualType> hasCanonicalType( internal::Matcher
<QualType> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasCanonicalType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualType> ( &hasCanonicalType_Type0)(internal::Matcher
<QualType> const &InnerMatcher); inline bool internal
::matcher_hasCanonicalType0Matcher::matches( const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4080 if (Node.isNull())
4081 return false;
4082 return InnerMatcher.matches(Node.getCanonicalType(), Finder, Builder);
4083}
4084
4085/// Overloaded to match the referenced type's declaration.
4086AST_MATCHER_P_OVERLOAD(QualType, references, internal::Matcher<Decl>,namespace internal { class matcher_references1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_references1Matcher( internal::
Matcher<Decl> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Decl> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<QualType> references(
internal::Matcher<Decl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_references1Matcher(InnerMatcher)); } typedef ::clang::
ast_matchers::internal::Matcher<QualType> ( &references_Type1
)(internal::Matcher<Decl> const &InnerMatcher); inline
bool internal::matcher_references1Matcher::matches( const QualType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4087 InnerMatcher, 1)namespace internal { class matcher_references1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_references1Matcher( internal::
Matcher<Decl> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const QualType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Decl> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<QualType> references(
internal::Matcher<Decl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_references1Matcher(InnerMatcher)); } typedef ::clang::
ast_matchers::internal::Matcher<QualType> ( &references_Type1
)(internal::Matcher<Decl> const &InnerMatcher); inline
bool internal::matcher_references1Matcher::matches( const QualType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4088 return references(qualType(hasDeclaration(InnerMatcher)))
4089 .matches(Node, Finder, Builder);
4090}
4091
4092/// Matches on the implicit object argument of a member call expression. Unlike
4093/// `on`, matches the argument directly without stripping away anything.
4094///
4095/// Given
4096/// \code
4097/// class Y { public: void m(); };
4098/// Y g();
4099/// class X : public Y { void g(); };
4100/// void z(Y y, X x) { y.m(); x.m(); x.g(); (g()).m(); }
4101/// \endcode
4102/// cxxMemberCallExpr(onImplicitObjectArgument(hasType(
4103/// cxxRecordDecl(hasName("Y")))))
4104/// matches `y.m()`, `x.m()` and (g()).m(), but not `x.g()`.
4105/// cxxMemberCallExpr(on(callExpr()))
4106/// does not match `(g()).m()`, because the parens are not ignored.
4107///
4108/// FIXME: Overload to allow directly matching types?
4109AST_MATCHER_P(CXXMemberCallExpr, onImplicitObjectArgument,namespace internal { class matcher_onImplicitObjectArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXMemberCallExpr> { public: explicit matcher_onImplicitObjectArgument0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> onImplicitObjectArgument( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_onImplicitObjectArgument0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMemberCallExpr> ( &onImplicitObjectArgument_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_onImplicitObjectArgument0Matcher::matches
( const CXXMemberCallExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4110 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_onImplicitObjectArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXMemberCallExpr> { public: explicit matcher_onImplicitObjectArgument0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> onImplicitObjectArgument( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_onImplicitObjectArgument0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMemberCallExpr> ( &onImplicitObjectArgument_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_onImplicitObjectArgument0Matcher::matches
( const CXXMemberCallExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4111 const Expr *ExprNode = Node.getImplicitObjectArgument();
4112 return (ExprNode != nullptr &&
4113 InnerMatcher.matches(*ExprNode, Finder, Builder));
4114}
4115
4116/// Matches if the type of the expression's implicit object argument either
4117/// matches the InnerMatcher, or is a pointer to a type that matches the
4118/// InnerMatcher.
4119///
4120/// Given
4121/// \code
4122/// class Y { public: void m(); };
4123/// class X : public Y { void g(); };
4124/// void z() { Y y; y.m(); Y *p; p->m(); X x; x.m(); x.g(); }
4125/// \endcode
4126/// cxxMemberCallExpr(thisPointerType(hasDeclaration(
4127/// cxxRecordDecl(hasName("Y")))))
4128/// matches `y.m()`, `p->m()` and `x.m()`.
4129/// cxxMemberCallExpr(thisPointerType(hasDeclaration(
4130/// cxxRecordDecl(hasName("X")))))
4131/// matches `x.g()`.
4132AST_MATCHER_P_OVERLOAD(CXXMemberCallExpr, thisPointerType,namespace internal { class matcher_thisPointerType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_thisPointerType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> thisPointerType( internal::Matcher<QualType> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_thisPointerType0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> ( &thisPointerType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_thisPointerType0Matcher
::matches( const CXXMemberCallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4133 internal::Matcher<QualType>, InnerMatcher, 0)namespace internal { class matcher_thisPointerType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_thisPointerType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> thisPointerType( internal::Matcher<QualType> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_thisPointerType0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> ( &thisPointerType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_thisPointerType0Matcher
::matches( const CXXMemberCallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4134 return onImplicitObjectArgument(
4135 anyOf(hasType(InnerMatcher), hasType(pointsTo(InnerMatcher))))
4136 .matches(Node, Finder, Builder);
4137}
4138
4139/// Overloaded to match the type's declaration.
4140AST_MATCHER_P_OVERLOAD(CXXMemberCallExpr, thisPointerType,namespace internal { class matcher_thisPointerType1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_thisPointerType1Matcher( internal
::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> thisPointerType( internal::Matcher<Decl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_thisPointerType1Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> ( &thisPointerType_Type1)(internal::Matcher<Decl>
const &InnerMatcher); inline bool internal::matcher_thisPointerType1Matcher
::matches( const CXXMemberCallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4141 internal::Matcher<Decl>, InnerMatcher, 1)namespace internal { class matcher_thisPointerType1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMemberCallExpr
> { public: explicit matcher_thisPointerType1Matcher( internal
::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMemberCallExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> thisPointerType( internal::Matcher<Decl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_thisPointerType1Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXMemberCallExpr
> ( &thisPointerType_Type1)(internal::Matcher<Decl>
const &InnerMatcher); inline bool internal::matcher_thisPointerType1Matcher
::matches( const CXXMemberCallExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4142 return onImplicitObjectArgument(
4143 anyOf(hasType(InnerMatcher), hasType(pointsTo(InnerMatcher))))
4144 .matches(Node, Finder, Builder);
4145}
4146
4147/// Matches a DeclRefExpr that refers to a declaration that matches the
4148/// specified matcher.
4149///
4150/// Example matches x in if(x)
4151/// (matcher = declRefExpr(to(varDecl(hasName("x")))))
4152/// \code
4153/// bool x;
4154/// if (x) {}
4155/// \endcode
4156AST_MATCHER_P(DeclRefExpr, to, internal::Matcher<Decl>,namespace internal { class matcher_to0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<DeclRefExpr>
{ public: explicit matcher_to0Matcher( internal::Matcher<
Decl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const DeclRefExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Decl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<DeclRefExpr> to( internal::Matcher<
Decl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_to0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<DeclRefExpr
> ( &to_Type0)(internal::Matcher<Decl> const &
InnerMatcher); inline bool internal::matcher_to0Matcher::matches
( const DeclRefExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4157 InnerMatcher)namespace internal { class matcher_to0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<DeclRefExpr>
{ public: explicit matcher_to0Matcher( internal::Matcher<
Decl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const DeclRefExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Decl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<DeclRefExpr> to( internal::Matcher<
Decl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_to0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<DeclRefExpr
> ( &to_Type0)(internal::Matcher<Decl> const &
InnerMatcher); inline bool internal::matcher_to0Matcher::matches
( const DeclRefExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4158 const Decl *DeclNode = Node.getDecl();
4159 return (DeclNode != nullptr &&
4160 InnerMatcher.matches(*DeclNode, Finder, Builder));
4161}
4162
4163/// Matches if a node refers to a declaration through a specific
4164/// using shadow declaration.
4165///
4166/// Examples:
4167/// \code
4168/// namespace a { int f(); }
4169/// using a::f;
4170/// int x = f();
4171/// \endcode
4172/// declRefExpr(throughUsingDecl(anything()))
4173/// matches \c f
4174///
4175/// \code
4176/// namespace a { class X{}; }
4177/// using a::X;
4178/// X x;
4179/// \endcode
4180/// typeLoc(loc(usingType(throughUsingDecl(anything()))))
4181/// matches \c X
4182///
4183/// Usable as: Matcher<DeclRefExpr>, Matcher<UsingType>
4184AST_POLYMORPHIC_MATCHER_P(throughUsingDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_throughUsingDecl0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_throughUsingDecl0Matcher( internal
::Matcher<UsingShadowDecl> const &AInner) : Inner(AInner
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<UsingShadowDecl> Inner; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_throughUsingDecl0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, UsingType>), internal::Matcher<UsingShadowDecl> >
throughUsingDecl(internal::Matcher<UsingShadowDecl> const
&Inner) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_throughUsingDecl0Matcher, void(::clang
::ast_matchers::internal::TypeList<DeclRefExpr, UsingType>
), internal::Matcher<UsingShadowDecl> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_throughUsingDecl0Matcher, void(::clang::ast_matchers
::internal::TypeList<DeclRefExpr, UsingType>), internal
::Matcher<UsingShadowDecl> > (&throughUsingDecl_Type0
)(internal::Matcher<UsingShadowDecl> const &Inner);
template <typename NodeType, typename ParamT> bool internal
:: matcher_throughUsingDecl0Matcher<NodeType, ParamT>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4185 AST_POLYMORPHIC_SUPPORTED_TYPES(DeclRefExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_throughUsingDecl0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_throughUsingDecl0Matcher( internal
::Matcher<UsingShadowDecl> const &AInner) : Inner(AInner
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<UsingShadowDecl> Inner; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_throughUsingDecl0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, UsingType>), internal::Matcher<UsingShadowDecl> >
throughUsingDecl(internal::Matcher<UsingShadowDecl> const
&Inner) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_throughUsingDecl0Matcher, void(::clang
::ast_matchers::internal::TypeList<DeclRefExpr, UsingType>
), internal::Matcher<UsingShadowDecl> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_throughUsingDecl0Matcher, void(::clang::ast_matchers
::internal::TypeList<DeclRefExpr, UsingType>), internal
::Matcher<UsingShadowDecl> > (&throughUsingDecl_Type0
)(internal::Matcher<UsingShadowDecl> const &Inner);
template <typename NodeType, typename ParamT> bool internal
:: matcher_throughUsingDecl0Matcher<NodeType, ParamT>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4186 UsingType),namespace internal { template <typename NodeType, typename
ParamT> class matcher_throughUsingDecl0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_throughUsingDecl0Matcher( internal
::Matcher<UsingShadowDecl> const &AInner) : Inner(AInner
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<UsingShadowDecl> Inner; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_throughUsingDecl0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, UsingType>), internal::Matcher<UsingShadowDecl> >
throughUsingDecl(internal::Matcher<UsingShadowDecl> const
&Inner) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_throughUsingDecl0Matcher, void(::clang
::ast_matchers::internal::TypeList<DeclRefExpr, UsingType>
), internal::Matcher<UsingShadowDecl> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_throughUsingDecl0Matcher, void(::clang::ast_matchers
::internal::TypeList<DeclRefExpr, UsingType>), internal
::Matcher<UsingShadowDecl> > (&throughUsingDecl_Type0
)(internal::Matcher<UsingShadowDecl> const &Inner);
template <typename NodeType, typename ParamT> bool internal
:: matcher_throughUsingDecl0Matcher<NodeType, ParamT>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4187 internal::Matcher<UsingShadowDecl>, Inner)namespace internal { template <typename NodeType, typename
ParamT> class matcher_throughUsingDecl0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_throughUsingDecl0Matcher( internal
::Matcher<UsingShadowDecl> const &AInner) : Inner(AInner
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<UsingShadowDecl> Inner; }; } inline ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_throughUsingDecl0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, UsingType>), internal::Matcher<UsingShadowDecl> >
throughUsingDecl(internal::Matcher<UsingShadowDecl> const
&Inner) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_throughUsingDecl0Matcher, void(::clang
::ast_matchers::internal::TypeList<DeclRefExpr, UsingType>
), internal::Matcher<UsingShadowDecl> >(Inner); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_throughUsingDecl0Matcher, void(::clang::ast_matchers
::internal::TypeList<DeclRefExpr, UsingType>), internal
::Matcher<UsingShadowDecl> > (&throughUsingDecl_Type0
)(internal::Matcher<UsingShadowDecl> const &Inner);
template <typename NodeType, typename ParamT> bool internal
:: matcher_throughUsingDecl0Matcher<NodeType, ParamT>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4188 const NamedDecl *FoundDecl = Node.getFoundDecl();
4189 if (const UsingShadowDecl *UsingDecl = dyn_cast<UsingShadowDecl>(FoundDecl))
4190 return Inner.matches(*UsingDecl, Finder, Builder);
4191 return false;
4192}
4193
4194/// Matches an \c OverloadExpr if any of the declarations in the set of
4195/// overloads matches the given matcher.
4196///
4197/// Given
4198/// \code
4199/// template <typename T> void foo(T);
4200/// template <typename T> void bar(T);
4201/// template <typename T> void baz(T t) {
4202/// foo(t);
4203/// bar(t);
4204/// }
4205/// \endcode
4206/// unresolvedLookupExpr(hasAnyDeclaration(
4207/// functionTemplateDecl(hasName("foo"))))
4208/// matches \c foo in \c foo(t); but not \c bar in \c bar(t);
4209AST_MATCHER_P(OverloadExpr, hasAnyDeclaration, internal::Matcher<Decl>,namespace internal { class matcher_hasAnyDeclaration0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
OverloadExpr> { public: explicit matcher_hasAnyDeclaration0Matcher
( internal::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OverloadExpr &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<OverloadExpr
> hasAnyDeclaration( internal::Matcher<Decl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasAnyDeclaration0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<OverloadExpr
> ( &hasAnyDeclaration_Type0)(internal::Matcher<Decl
> const &InnerMatcher); inline bool internal::matcher_hasAnyDeclaration0Matcher
::matches( const OverloadExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4210 InnerMatcher)namespace internal { class matcher_hasAnyDeclaration0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
OverloadExpr> { public: explicit matcher_hasAnyDeclaration0Matcher
( internal::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OverloadExpr &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Decl> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<OverloadExpr
> hasAnyDeclaration( internal::Matcher<Decl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasAnyDeclaration0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<OverloadExpr
> ( &hasAnyDeclaration_Type0)(internal::Matcher<Decl
> const &InnerMatcher); inline bool internal::matcher_hasAnyDeclaration0Matcher
::matches( const OverloadExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4211 return matchesFirstInPointerRange(InnerMatcher, Node.decls_begin(),
4212 Node.decls_end(), Finder,
4213 Builder) != Node.decls_end();
4214}
4215
4216/// Matches the Decl of a DeclStmt which has a single declaration.
4217///
4218/// Given
4219/// \code
4220/// int a, b;
4221/// int c;
4222/// \endcode
4223/// declStmt(hasSingleDecl(anything()))
4224/// matches 'int c;' but not 'int a, b;'.
4225AST_MATCHER_P(DeclStmt, hasSingleDecl, internal::Matcher<Decl>, InnerMatcher)namespace internal { class matcher_hasSingleDecl0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DeclStmt
> { public: explicit matcher_hasSingleDecl0Matcher( internal
::Matcher<Decl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const DeclStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Decl> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<DeclStmt> hasSingleDecl
( internal::Matcher<Decl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasSingleDecl0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<DeclStmt> ( &hasSingleDecl_Type0
)(internal::Matcher<Decl> const &InnerMatcher); inline
bool internal::matcher_hasSingleDecl0Matcher::matches( const
DeclStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4226 if (Node.isSingleDecl()) {
4227 const Decl *FoundDecl = Node.getSingleDecl();
4228 return InnerMatcher.matches(*FoundDecl, Finder, Builder);
4229 }
4230 return false;
4231}
4232
4233/// Matches a variable declaration that has an initializer expression
4234/// that matches the given matcher.
4235///
4236/// Example matches x (matcher = varDecl(hasInitializer(callExpr())))
4237/// \code
4238/// bool y() { return true; }
4239/// bool x = y();
4240/// \endcode
4241AST_MATCHER_P(namespace internal { class matcher_hasInitializer0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_hasInitializer0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const VarDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<VarDecl> hasInitializer
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasInitializer0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<VarDecl> ( &hasInitializer_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasInitializer0Matcher::matches( const
VarDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4242 VarDecl, hasInitializer, internal::Matcher<Expr>,namespace internal { class matcher_hasInitializer0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_hasInitializer0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const VarDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<VarDecl> hasInitializer
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasInitializer0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<VarDecl> ( &hasInitializer_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasInitializer0Matcher::matches( const
VarDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4243 InnerMatcher)namespace internal { class matcher_hasInitializer0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_hasInitializer0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const VarDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<VarDecl> hasInitializer
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasInitializer0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<VarDecl> ( &hasInitializer_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasInitializer0Matcher::matches( const
VarDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4244 const Expr *Initializer = Node.getAnyInitializer();
4245 return (Initializer != nullptr &&
4246 InnerMatcher.matches(*Initializer, Finder, Builder));
4247}
4248
4249/// Matches a variable serving as the implicit variable for a lambda init-
4250/// capture.
4251///
4252/// Example matches x (matcher = varDecl(isInitCapture()))
4253/// \code
4254/// auto f = [x=3]() { return x; };
4255/// \endcode
4256AST_MATCHER(VarDecl, isInitCapture)namespace internal { class matcher_isInitCaptureMatcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_isInitCaptureMatcher() = default
; bool matches(const VarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<VarDecl> isInitCapture
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isInitCaptureMatcher()); } inline bool internal
::matcher_isInitCaptureMatcher::matches( const VarDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{ return Node.isInitCapture(); }
4257
4258/// Matches each lambda capture in a lambda expression.
4259///
4260/// Given
4261/// \code
4262/// int main() {
4263/// int x, y;
4264/// float z;
4265/// auto f = [=]() { return x + y + z; };
4266/// }
4267/// \endcode
4268/// lambdaExpr(forEachLambdaCapture(
4269/// lambdaCapture(capturesVar(varDecl(hasType(isInteger()))))))
4270/// will trigger two matches, binding for 'x' and 'y' respectively.
4271AST_MATCHER_P(LambdaExpr, forEachLambdaCapture,namespace internal { class matcher_forEachLambdaCapture0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
LambdaExpr> { public: explicit matcher_forEachLambdaCapture0Matcher
( internal::Matcher<LambdaCapture> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const LambdaExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<LambdaCapture
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<LambdaExpr> forEachLambdaCapture( internal::Matcher
<LambdaCapture> const &InnerMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_forEachLambdaCapture0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<LambdaExpr> ( &forEachLambdaCapture_Type0)(internal
::Matcher<LambdaCapture> const &InnerMatcher); inline
bool internal::matcher_forEachLambdaCapture0Matcher::matches
( const LambdaExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
4272 internal::Matcher<LambdaCapture>, InnerMatcher)namespace internal { class matcher_forEachLambdaCapture0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
LambdaExpr> { public: explicit matcher_forEachLambdaCapture0Matcher
( internal::Matcher<LambdaCapture> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const LambdaExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<LambdaCapture
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<LambdaExpr> forEachLambdaCapture( internal::Matcher
<LambdaCapture> const &InnerMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_forEachLambdaCapture0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<LambdaExpr> ( &forEachLambdaCapture_Type0)(internal
::Matcher<LambdaCapture> const &InnerMatcher); inline
bool internal::matcher_forEachLambdaCapture0Matcher::matches
( const LambdaExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4273 BoundNodesTreeBuilder Result;
4274 bool Matched = false;
4275 for (const auto &Capture : Node.captures()) {
4276 if (Finder->isTraversalIgnoringImplicitNodes() && Capture.isImplicit())
4277 continue;
4278 BoundNodesTreeBuilder CaptureBuilder(*Builder);
4279 if (InnerMatcher.matches(Capture, Finder, &CaptureBuilder)) {
4280 Matched = true;
4281 Result.addMatch(CaptureBuilder);
4282 }
4283 }
4284 *Builder = std::move(Result);
4285 return Matched;
4286}
4287
4288/// \brief Matches a static variable with local scope.
4289///
4290/// Example matches y (matcher = varDecl(isStaticLocal()))
4291/// \code
4292/// void f() {
4293/// int x;
4294/// static int y;
4295/// }
4296/// static int z;
4297/// \endcode
4298AST_MATCHER(VarDecl, isStaticLocal)namespace internal { class matcher_isStaticLocalMatcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_isStaticLocalMatcher() = default
; bool matches(const VarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<VarDecl> isStaticLocal
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isStaticLocalMatcher()); } inline bool internal
::matcher_isStaticLocalMatcher::matches( const VarDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4299 return Node.isStaticLocal();
4300}
4301
4302/// Matches a variable declaration that has function scope and is a
4303/// non-static local variable.
4304///
4305/// Example matches x (matcher = varDecl(hasLocalStorage())
4306/// \code
4307/// void f() {
4308/// int x;
4309/// static int y;
4310/// }
4311/// int z;
4312/// \endcode
4313AST_MATCHER(VarDecl, hasLocalStorage)namespace internal { class matcher_hasLocalStorageMatcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_hasLocalStorageMatcher() = default
; bool matches(const VarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<VarDecl> hasLocalStorage
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_hasLocalStorageMatcher()); } inline bool internal
::matcher_hasLocalStorageMatcher::matches( const VarDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4314 return Node.hasLocalStorage();
4315}
4316
4317/// Matches a variable declaration that does not have local storage.
4318///
4319/// Example matches y and z (matcher = varDecl(hasGlobalStorage())
4320/// \code
4321/// void f() {
4322/// int x;
4323/// static int y;
4324/// }
4325/// int z;
4326/// \endcode
4327AST_MATCHER(VarDecl, hasGlobalStorage)namespace internal { class matcher_hasGlobalStorageMatcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_hasGlobalStorageMatcher() = default
; bool matches(const VarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<VarDecl> hasGlobalStorage
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_hasGlobalStorageMatcher()); } inline bool internal
::matcher_hasGlobalStorageMatcher::matches( const VarDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4328 return Node.hasGlobalStorage();
4329}
4330
4331/// Matches a variable declaration that has automatic storage duration.
4332///
4333/// Example matches x, but not y, z, or a.
4334/// (matcher = varDecl(hasAutomaticStorageDuration())
4335/// \code
4336/// void f() {
4337/// int x;
4338/// static int y;
4339/// thread_local int z;
4340/// }
4341/// int a;
4342/// \endcode
4343AST_MATCHER(VarDecl, hasAutomaticStorageDuration)namespace internal { class matcher_hasAutomaticStorageDurationMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
VarDecl> { public: explicit matcher_hasAutomaticStorageDurationMatcher
() = default; bool matches(const VarDecl &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<VarDecl
> hasAutomaticStorageDuration() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasAutomaticStorageDurationMatcher
()); } inline bool internal::matcher_hasAutomaticStorageDurationMatcher
::matches( const VarDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4344 return Node.getStorageDuration() == SD_Automatic;
4345}
4346
4347/// Matches a variable declaration that has static storage duration.
4348/// It includes the variable declared at namespace scope and those declared
4349/// with "static" and "extern" storage class specifiers.
4350///
4351/// \code
4352/// void f() {
4353/// int x;
4354/// static int y;
4355/// thread_local int z;
4356/// }
4357/// int a;
4358/// static int b;
4359/// extern int c;
4360/// varDecl(hasStaticStorageDuration())
4361/// matches the function declaration y, a, b and c.
4362/// \endcode
4363AST_MATCHER(VarDecl, hasStaticStorageDuration)namespace internal { class matcher_hasStaticStorageDurationMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
VarDecl> { public: explicit matcher_hasStaticStorageDurationMatcher
() = default; bool matches(const VarDecl &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<VarDecl
> hasStaticStorageDuration() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasStaticStorageDurationMatcher
()); } inline bool internal::matcher_hasStaticStorageDurationMatcher
::matches( const VarDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4364 return Node.getStorageDuration() == SD_Static;
4365}
4366
4367/// Matches a variable declaration that has thread storage duration.
4368///
4369/// Example matches z, but not x, z, or a.
4370/// (matcher = varDecl(hasThreadStorageDuration())
4371/// \code
4372/// void f() {
4373/// int x;
4374/// static int y;
4375/// thread_local int z;
4376/// }
4377/// int a;
4378/// \endcode
4379AST_MATCHER(VarDecl, hasThreadStorageDuration)namespace internal { class matcher_hasThreadStorageDurationMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
VarDecl> { public: explicit matcher_hasThreadStorageDurationMatcher
() = default; bool matches(const VarDecl &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<VarDecl
> hasThreadStorageDuration() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasThreadStorageDurationMatcher
()); } inline bool internal::matcher_hasThreadStorageDurationMatcher
::matches( const VarDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4380 return Node.getStorageDuration() == SD_Thread;
4381}
4382
4383/// Matches a variable declaration that is an exception variable from
4384/// a C++ catch block, or an Objective-C \@catch statement.
4385///
4386/// Example matches x (matcher = varDecl(isExceptionVariable())
4387/// \code
4388/// void f(int y) {
4389/// try {
4390/// } catch (int x) {
4391/// }
4392/// }
4393/// \endcode
4394AST_MATCHER(VarDecl, isExceptionVariable)namespace internal { class matcher_isExceptionVariableMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
VarDecl> { public: explicit matcher_isExceptionVariableMatcher
() = default; bool matches(const VarDecl &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<VarDecl
> isExceptionVariable() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_isExceptionVariableMatcher
()); } inline bool internal::matcher_isExceptionVariableMatcher
::matches( const VarDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4395 return Node.isExceptionVariable();
4396}
4397
4398/// Checks that a call expression or a constructor call expression has
4399/// a specific number of arguments (including absent default arguments).
4400///
4401/// Example matches f(0, 0) (matcher = callExpr(argumentCountIs(2)))
4402/// \code
4403/// void f(int x, int y);
4404/// f(0, 0);
4405/// \endcode
4406AST_POLYMORPHIC_MATCHER_P(argumentCountIs,namespace internal { template <typename NodeType, typename
ParamT> class matcher_argumentCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_argumentCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> argumentCountIs(unsigned const &N) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_argumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> (&argumentCountIs_Type0)(unsigned const
&N); template <typename NodeType, typename ParamT>
bool internal:: matcher_argumentCountIs0Matcher<NodeType,
ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4407 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT> class matcher_argumentCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_argumentCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> argumentCountIs(unsigned const &N) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_argumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> (&argumentCountIs_Type0)(unsigned const
&N); template <typename NodeType, typename ParamT>
bool internal:: matcher_argumentCountIs0Matcher<NodeType,
ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4408 CallExpr, CXXConstructExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_argumentCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_argumentCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> argumentCountIs(unsigned const &N) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_argumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> (&argumentCountIs_Type0)(unsigned const
&N); template <typename NodeType, typename ParamT>
bool internal:: matcher_argumentCountIs0Matcher<NodeType,
ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4409 CXXUnresolvedConstructExpr, ObjCMessageExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_argumentCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_argumentCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> argumentCountIs(unsigned const &N) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_argumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> (&argumentCountIs_Type0)(unsigned const
&N); template <typename NodeType, typename ParamT>
bool internal:: matcher_argumentCountIs0Matcher<NodeType,
ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4410 unsigned, N)namespace internal { template <typename NodeType, typename
ParamT> class matcher_argumentCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_argumentCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> argumentCountIs(unsigned const &N) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_argumentCountIs0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_argumentCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned> (&argumentCountIs_Type0)(unsigned const
&N); template <typename NodeType, typename ParamT>
bool internal:: matcher_argumentCountIs0Matcher<NodeType,
ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4411 unsigned NumArgs = Node.getNumArgs();
4412 if (!Finder->isTraversalIgnoringImplicitNodes())
4413 return NumArgs == N;
4414 while (NumArgs) {
4415 if (!isa<CXXDefaultArgExpr>(Node.getArg(NumArgs - 1)))
4416 break;
4417 --NumArgs;
4418 }
4419 return NumArgs == N;
4420}
4421
4422/// Matches the n'th argument of a call expression or a constructor
4423/// call expression.
4424///
4425/// Example matches y in x(y)
4426/// (matcher = callExpr(hasArgument(0, declRefExpr())))
4427/// \code
4428/// void x(int) { int y; x(y); }
4429/// \endcode
4430AST_POLYMORPHIC_MATCHER_P2(hasArgument,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasArgument0Matcher(unsigned const
&AN, internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Expr> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > hasArgument
(unsigned const &N, internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned, internal::Matcher<Expr>
>(N, InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > (&hasArgument_Type0
)( unsigned const &N, internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT1, typename ParamT2> bool internal::matcher_hasArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4431 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasArgument0Matcher(unsigned const
&AN, internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Expr> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > hasArgument
(unsigned const &N, internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned, internal::Matcher<Expr>
>(N, InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > (&hasArgument_Type0
)( unsigned const &N, internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT1, typename ParamT2> bool internal::matcher_hasArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4432 CallExpr, CXXConstructExpr,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasArgument0Matcher(unsigned const
&AN, internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Expr> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > hasArgument
(unsigned const &N, internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned, internal::Matcher<Expr>
>(N, InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > (&hasArgument_Type0
)( unsigned const &N, internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT1, typename ParamT2> bool internal::matcher_hasArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4433 CXXUnresolvedConstructExpr, ObjCMessageExpr),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasArgument0Matcher(unsigned const
&AN, internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Expr> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > hasArgument
(unsigned const &N, internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned, internal::Matcher<Expr>
>(N, InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > (&hasArgument_Type0
)( unsigned const &N, internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT1, typename ParamT2> bool internal::matcher_hasArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4434 unsigned, N, internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasArgument0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasArgument0Matcher(unsigned const
&AN, internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Expr> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > hasArgument
(unsigned const &N, internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), unsigned, internal::Matcher<Expr>
>(N, InnerMatcher); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), unsigned, internal::Matcher<Expr> > (&hasArgument_Type0
)( unsigned const &N, internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT1, typename ParamT2> bool internal::matcher_hasArgument0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4435 if (N >= Node.getNumArgs())
4436 return false;
4437 const Expr *Arg = Node.getArg(N);
4438 if (Finder->isTraversalIgnoringImplicitNodes() && isa<CXXDefaultArgExpr>(Arg))
4439 return false;
4440 return InnerMatcher.matches(*Arg->IgnoreParenImpCasts(), Finder, Builder);
4441}
4442
4443/// Matches the n'th item of an initializer list expression.
4444///
4445/// Example matches y.
4446/// (matcher = initListExpr(hasInit(0, expr())))
4447/// \code
4448/// int x{y}.
4449/// \endcode
4450AST_MATCHER_P2(InitListExpr, hasInit, unsigned, N,namespace internal { class matcher_hasInit0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<InitListExpr
> { public: matcher_hasInit0Matcher(unsigned const &AN
, ast_matchers::internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const InitListExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; ast_matchers::
internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<InitListExpr> hasInit
( unsigned const &N, ast_matchers::internal::Matcher<Expr
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasInit0Matcher(
N, InnerMatcher)); } typedef ::clang::ast_matchers::internal::
Matcher<InitListExpr> ( &hasInit_Type0)(unsigned const
&N, ast_matchers::internal::Matcher<Expr> const &
InnerMatcher); inline bool internal::matcher_hasInit0Matcher::
matches( const InitListExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4451 ast_matchers::internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasInit0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<InitListExpr
> { public: matcher_hasInit0Matcher(unsigned const &AN
, ast_matchers::internal::Matcher<Expr> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const InitListExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; ast_matchers::
internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<InitListExpr> hasInit
( unsigned const &N, ast_matchers::internal::Matcher<Expr
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasInit0Matcher(
N, InnerMatcher)); } typedef ::clang::ast_matchers::internal::
Matcher<InitListExpr> ( &hasInit_Type0)(unsigned const
&N, ast_matchers::internal::Matcher<Expr> const &
InnerMatcher); inline bool internal::matcher_hasInit0Matcher::
matches( const InitListExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4452 return N < Node.getNumInits() &&
4453 InnerMatcher.matches(*Node.getInit(N), Finder, Builder);
4454}
4455
4456/// Matches declaration statements that contain a specific number of
4457/// declarations.
4458///
4459/// Example: Given
4460/// \code
4461/// int a, b;
4462/// int c;
4463/// int d = 2, e;
4464/// \endcode
4465/// declCountIs(2)
4466/// matches 'int a, b;' and 'int d = 2, e;', but not 'int c;'.
4467AST_MATCHER_P(DeclStmt, declCountIs, unsigned, N)namespace internal { class matcher_declCountIs0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DeclStmt
> { public: explicit matcher_declCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const DeclStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::Matcher<DeclStmt> declCountIs( unsigned const
&N) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_declCountIs0Matcher(N)); } typedef ::
clang::ast_matchers::internal::Matcher<DeclStmt> ( &
declCountIs_Type0)(unsigned const &N); inline bool internal
::matcher_declCountIs0Matcher::matches( const DeclStmt &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4468 return std::distance(Node.decl_begin(), Node.decl_end()) == (ptrdiff_t)N;
4469}
4470
4471/// Matches the n'th declaration of a declaration statement.
4472///
4473/// Note that this does not work for global declarations because the AST
4474/// breaks up multiple-declaration DeclStmt's into multiple single-declaration
4475/// DeclStmt's.
4476/// Example: Given non-global declarations
4477/// \code
4478/// int a, b = 0;
4479/// int c;
4480/// int d = 2, e;
4481/// \endcode
4482/// declStmt(containsDeclaration(
4483/// 0, varDecl(hasInitializer(anything()))))
4484/// matches only 'int d = 2, e;', and
4485/// declStmt(containsDeclaration(1, varDecl()))
4486/// \code
4487/// matches 'int a, b = 0' as well as 'int d = 2, e;'
4488/// but 'int c;' is not matched.
4489/// \endcode
4490AST_MATCHER_P2(DeclStmt, containsDeclaration, unsigned, N,namespace internal { class matcher_containsDeclaration0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
DeclStmt> { public: matcher_containsDeclaration0Matcher(unsigned
const &AN, internal::Matcher<Decl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const DeclStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Decl> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::Matcher<DeclStmt> containsDeclaration( unsigned
const &N, internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_containsDeclaration0Matcher(N, InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<DeclStmt> ( &
containsDeclaration_Type0)(unsigned const &N, internal::Matcher
<Decl> const &InnerMatcher); inline bool internal::
matcher_containsDeclaration0Matcher::matches( const DeclStmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4491 internal::Matcher<Decl>, InnerMatcher)namespace internal { class matcher_containsDeclaration0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
DeclStmt> { public: matcher_containsDeclaration0Matcher(unsigned
const &AN, internal::Matcher<Decl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const DeclStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<Decl> InnerMatcher; }; } inline ::clang::ast_matchers::
internal::Matcher<DeclStmt> containsDeclaration( unsigned
const &N, internal::Matcher<Decl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_containsDeclaration0Matcher(N, InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<DeclStmt> ( &
containsDeclaration_Type0)(unsigned const &N, internal::Matcher
<Decl> const &InnerMatcher); inline bool internal::
matcher_containsDeclaration0Matcher::matches( const DeclStmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4492 const unsigned NumDecls = std::distance(Node.decl_begin(), Node.decl_end());
4493 if (N >= NumDecls)
4494 return false;
4495 DeclStmt::const_decl_iterator Iterator = Node.decl_begin();
4496 std::advance(Iterator, N);
4497 return InnerMatcher.matches(**Iterator, Finder, Builder);
4498}
4499
4500/// Matches a C++ catch statement that has a catch-all handler.
4501///
4502/// Given
4503/// \code
4504/// try {
4505/// // ...
4506/// } catch (int) {
4507/// // ...
4508/// } catch (...) {
4509/// // ...
4510/// }
4511/// \endcode
4512/// cxxCatchStmt(isCatchAll()) matches catch(...) but not catch(int).
4513AST_MATCHER(CXXCatchStmt, isCatchAll)namespace internal { class matcher_isCatchAllMatcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXCatchStmt
> { public: explicit matcher_isCatchAllMatcher() = default
; bool matches(const CXXCatchStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXCatchStmt>
isCatchAll() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isCatchAllMatcher()); } inline bool internal
::matcher_isCatchAllMatcher::matches( const CXXCatchStmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4514 return Node.getExceptionDecl() == nullptr;
4515}
4516
4517/// Matches a constructor initializer.
4518///
4519/// Given
4520/// \code
4521/// struct Foo {
4522/// Foo() : foo_(1) { }
4523/// int foo_;
4524/// };
4525/// \endcode
4526/// cxxRecordDecl(has(cxxConstructorDecl(
4527/// hasAnyConstructorInitializer(anything())
4528/// )))
4529/// record matches Foo, hasAnyConstructorInitializer matches foo_(1)
4530AST_MATCHER_P(CXXConstructorDecl, hasAnyConstructorInitializer,namespace internal { class matcher_hasAnyConstructorInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_hasAnyConstructorInitializer0Matcher
( internal::Matcher<CXXCtorInitializer> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXCtorInitializer
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> hasAnyConstructorInitializer
( internal::Matcher<CXXCtorInitializer> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyConstructorInitializer0Matcher(InnerMatcher))
; } typedef ::clang::ast_matchers::internal::Matcher<CXXConstructorDecl
> ( &hasAnyConstructorInitializer_Type0)(internal::Matcher
<CXXCtorInitializer> const &InnerMatcher); inline bool
internal::matcher_hasAnyConstructorInitializer0Matcher::matches
( const CXXConstructorDecl &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4531 internal::Matcher<CXXCtorInitializer>, InnerMatcher)namespace internal { class matcher_hasAnyConstructorInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_hasAnyConstructorInitializer0Matcher
( internal::Matcher<CXXCtorInitializer> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXCtorInitializer
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> hasAnyConstructorInitializer
( internal::Matcher<CXXCtorInitializer> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyConstructorInitializer0Matcher(InnerMatcher))
; } typedef ::clang::ast_matchers::internal::Matcher<CXXConstructorDecl
> ( &hasAnyConstructorInitializer_Type0)(internal::Matcher
<CXXCtorInitializer> const &InnerMatcher); inline bool
internal::matcher_hasAnyConstructorInitializer0Matcher::matches
( const CXXConstructorDecl &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4532 auto MatchIt = matchesFirstInPointerRange(InnerMatcher, Node.init_begin(),
4533 Node.init_end(), Finder, Builder);
4534 if (MatchIt == Node.init_end())
4535 return false;
4536 return (*MatchIt)->isWritten() || !Finder->isTraversalIgnoringImplicitNodes();
4537}
4538
4539/// Matches the field declaration of a constructor initializer.
4540///
4541/// Given
4542/// \code
4543/// struct Foo {
4544/// Foo() : foo_(1) { }
4545/// int foo_;
4546/// };
4547/// \endcode
4548/// cxxRecordDecl(has(cxxConstructorDecl(hasAnyConstructorInitializer(
4549/// forField(hasName("foo_"))))))
4550/// matches Foo
4551/// with forField matching foo_
4552AST_MATCHER_P(CXXCtorInitializer, forField,namespace internal { class matcher_forField0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXCtorInitializer
> { public: explicit matcher_forField0Matcher( internal::Matcher
<FieldDecl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CXXCtorInitializer &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<FieldDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> forField( internal::Matcher<FieldDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_forField0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> ( &forField_Type0)(internal::Matcher<FieldDecl>
const &InnerMatcher); inline bool internal::matcher_forField0Matcher
::matches( const CXXCtorInitializer &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4553 internal::Matcher<FieldDecl>, InnerMatcher)namespace internal { class matcher_forField0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXCtorInitializer
> { public: explicit matcher_forField0Matcher( internal::Matcher
<FieldDecl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const CXXCtorInitializer &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<FieldDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> forField( internal::Matcher<FieldDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_forField0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> ( &forField_Type0)(internal::Matcher<FieldDecl>
const &InnerMatcher); inline bool internal::matcher_forField0Matcher
::matches( const CXXCtorInitializer &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4554 const FieldDecl *NodeAsDecl = Node.getAnyMember();
4555 return (NodeAsDecl != nullptr &&
4556 InnerMatcher.matches(*NodeAsDecl, Finder, Builder));
4557}
4558
4559/// Matches the initializer expression of a constructor initializer.
4560///
4561/// Given
4562/// \code
4563/// struct Foo {
4564/// Foo() : foo_(1) { }
4565/// int foo_;
4566/// };
4567/// \endcode
4568/// cxxRecordDecl(has(cxxConstructorDecl(hasAnyConstructorInitializer(
4569/// withInitializer(integerLiteral(equals(1)))))))
4570/// matches Foo
4571/// with withInitializer matching (1)
4572AST_MATCHER_P(CXXCtorInitializer, withInitializer,namespace internal { class matcher_withInitializer0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXCtorInitializer
> { public: explicit matcher_withInitializer0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXCtorInitializer &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> withInitializer( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_withInitializer0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> ( &withInitializer_Type0)(internal::Matcher<Expr>
const &InnerMatcher); inline bool internal::matcher_withInitializer0Matcher
::matches( const CXXCtorInitializer &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4573 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_withInitializer0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXCtorInitializer
> { public: explicit matcher_withInitializer0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXCtorInitializer &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> withInitializer( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_withInitializer0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> ( &withInitializer_Type0)(internal::Matcher<Expr>
const &InnerMatcher); inline bool internal::matcher_withInitializer0Matcher
::matches( const CXXCtorInitializer &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4574 const Expr* NodeAsExpr = Node.getInit();
4575 return (NodeAsExpr != nullptr &&
4576 InnerMatcher.matches(*NodeAsExpr, Finder, Builder));
4577}
4578
4579/// Matches a constructor initializer if it is explicitly written in
4580/// code (as opposed to implicitly added by the compiler).
4581///
4582/// Given
4583/// \code
4584/// struct Foo {
4585/// Foo() { }
4586/// Foo(int) : foo_("A") { }
4587/// string foo_;
4588/// };
4589/// \endcode
4590/// cxxConstructorDecl(hasAnyConstructorInitializer(isWritten()))
4591/// will match Foo(int), but not Foo()
4592AST_MATCHER(CXXCtorInitializer, isWritten)namespace internal { class matcher_isWrittenMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXCtorInitializer
> { public: explicit matcher_isWrittenMatcher() = default;
bool matches(const CXXCtorInitializer &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXCtorInitializer
> isWritten() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isWrittenMatcher()); } inline bool internal
::matcher_isWrittenMatcher::matches( const CXXCtorInitializer
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4593 return Node.isWritten();
4594}
4595
4596/// Matches a constructor initializer if it is initializing a base, as
4597/// opposed to a member.
4598///
4599/// Given
4600/// \code
4601/// struct B {};
4602/// struct D : B {
4603/// int I;
4604/// D(int i) : I(i) {}
4605/// };
4606/// struct E : B {
4607/// E() : B() {}
4608/// };
4609/// \endcode
4610/// cxxConstructorDecl(hasAnyConstructorInitializer(isBaseInitializer()))
4611/// will match E(), but not match D(int).
4612AST_MATCHER(CXXCtorInitializer, isBaseInitializer)namespace internal { class matcher_isBaseInitializerMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXCtorInitializer> { public: explicit matcher_isBaseInitializerMatcher
() = default; bool matches(const CXXCtorInitializer &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXCtorInitializer> isBaseInitializer() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isBaseInitializerMatcher()); } inline bool internal::
matcher_isBaseInitializerMatcher::matches( const CXXCtorInitializer
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4613 return Node.isBaseInitializer();
4614}
4615
4616/// Matches a constructor initializer if it is initializing a member, as
4617/// opposed to a base.
4618///
4619/// Given
4620/// \code
4621/// struct B {};
4622/// struct D : B {
4623/// int I;
4624/// D(int i) : I(i) {}
4625/// };
4626/// struct E : B {
4627/// E() : B() {}
4628/// };
4629/// \endcode
4630/// cxxConstructorDecl(hasAnyConstructorInitializer(isMemberInitializer()))
4631/// will match D(int), but not match E().
4632AST_MATCHER(CXXCtorInitializer, isMemberInitializer)namespace internal { class matcher_isMemberInitializerMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXCtorInitializer> { public: explicit matcher_isMemberInitializerMatcher
() = default; bool matches(const CXXCtorInitializer &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXCtorInitializer> isMemberInitializer() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isMemberInitializerMatcher()); } inline bool internal
::matcher_isMemberInitializerMatcher::matches( const CXXCtorInitializer
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4633 return Node.isMemberInitializer();
4634}
4635
4636/// Matches any argument of a call expression or a constructor call
4637/// expression, or an ObjC-message-send expression.
4638///
4639/// Given
4640/// \code
4641/// void x(int, int, int) { int y; x(1, y, 42); }
4642/// \endcode
4643/// callExpr(hasAnyArgument(declRefExpr()))
4644/// matches x(1, y, 42)
4645/// with hasAnyArgument(...)
4646/// matching y
4647///
4648/// For ObjectiveC, given
4649/// \code
4650/// @interface I - (void) f:(int) y; @end
4651/// void foo(I *i) { [i f:12]; }
4652/// \endcode
4653/// objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
4654/// matches [i f:12]
4655AST_POLYMORPHIC_MATCHER_P(hasAnyArgument,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyArgument0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasAnyArgument0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> > hasAnyArgument(internal
::Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyArgument0Matcher, void(::clang::ast_matchers::
internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), internal::Matcher<Expr> > (&
hasAnyArgument_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasAnyArgument0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4656 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyArgument0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasAnyArgument0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> > hasAnyArgument(internal
::Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyArgument0Matcher, void(::clang::ast_matchers::
internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), internal::Matcher<Expr> > (&
hasAnyArgument_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasAnyArgument0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4657 CallExpr, CXXConstructExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyArgument0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasAnyArgument0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> > hasAnyArgument(internal
::Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyArgument0Matcher, void(::clang::ast_matchers::
internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), internal::Matcher<Expr> > (&
hasAnyArgument_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasAnyArgument0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4658 CXXUnresolvedConstructExpr, ObjCMessageExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyArgument0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasAnyArgument0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> > hasAnyArgument(internal
::Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyArgument0Matcher, void(::clang::ast_matchers::
internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), internal::Matcher<Expr> > (&
hasAnyArgument_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasAnyArgument0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4659 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyArgument0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasAnyArgument0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> > hasAnyArgument(internal
::Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnyArgument0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyArgument0Matcher, void(::clang::ast_matchers::
internal::TypeList<CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr
, ObjCMessageExpr>), internal::Matcher<Expr> > (&
hasAnyArgument_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasAnyArgument0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4660 for (const Expr *Arg : Node.arguments()) {
4661 if (Finder->isTraversalIgnoringImplicitNodes() &&
4662 isa<CXXDefaultArgExpr>(Arg))
4663 break;
4664 BoundNodesTreeBuilder Result(*Builder);
4665 if (InnerMatcher.matches(*Arg, Finder, &Result)) {
4666 *Builder = std::move(Result);
4667 return true;
4668 }
4669 }
4670 return false;
4671}
4672
4673/// Matches lambda captures.
4674///
4675/// Given
4676/// \code
4677/// int main() {
4678/// int x;
4679/// auto f = [x](){};
4680/// auto g = [x = 1](){};
4681/// }
4682/// \endcode
4683/// In the matcher `lambdaExpr(hasAnyCapture(lambdaCapture()))`,
4684/// `lambdaCapture()` matches `x` and `x=1`.
4685extern const internal::VariadicAllOfMatcher<LambdaCapture> lambdaCapture;
4686
4687/// Matches any capture in a lambda expression.
4688///
4689/// Given
4690/// \code
4691/// void foo() {
4692/// int t = 5;
4693/// auto f = [=](){ return t; };
4694/// }
4695/// \endcode
4696/// lambdaExpr(hasAnyCapture(lambdaCapture())) and
4697/// lambdaExpr(hasAnyCapture(lambdaCapture(refersToVarDecl(hasName("t")))))
4698/// both match `[=](){ return t; }`.
4699AST_MATCHER_P(LambdaExpr, hasAnyCapture, internal::Matcher<LambdaCapture>,namespace internal { class matcher_hasAnyCapture0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<LambdaExpr
> { public: explicit matcher_hasAnyCapture0Matcher( internal
::Matcher<LambdaCapture> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const LambdaExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<LambdaCapture> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<LambdaExpr
> hasAnyCapture( internal::Matcher<LambdaCapture> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasAnyCapture0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<LambdaExpr
> ( &hasAnyCapture_Type0)(internal::Matcher<LambdaCapture
> const &InnerMatcher); inline bool internal::matcher_hasAnyCapture0Matcher
::matches( const LambdaExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4700 InnerMatcher)namespace internal { class matcher_hasAnyCapture0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<LambdaExpr
> { public: explicit matcher_hasAnyCapture0Matcher( internal
::Matcher<LambdaCapture> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const LambdaExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<LambdaCapture> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<LambdaExpr
> hasAnyCapture( internal::Matcher<LambdaCapture> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasAnyCapture0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<LambdaExpr
> ( &hasAnyCapture_Type0)(internal::Matcher<LambdaCapture
> const &InnerMatcher); inline bool internal::matcher_hasAnyCapture0Matcher
::matches( const LambdaExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4701 for (const LambdaCapture &Capture : Node.captures()) {
4702 clang::ast_matchers::internal::BoundNodesTreeBuilder Result(*Builder);
4703 if (InnerMatcher.matches(Capture, Finder, &Result)) {
4704 *Builder = std::move(Result);
4705 return true;
4706 }
4707 }
4708 return false;
4709}
4710
4711/// Matches a `LambdaCapture` that refers to the specified `VarDecl`. The
4712/// `VarDecl` can be a separate variable that is captured by value or
4713/// reference, or a synthesized variable if the capture has an initializer.
4714///
4715/// Given
4716/// \code
4717/// void foo() {
4718/// int x;
4719/// auto f = [x](){};
4720/// auto g = [x = 1](){};
4721/// }
4722/// \endcode
4723/// In the matcher
4724/// lambdaExpr(hasAnyCapture(lambdaCapture(capturesVar(hasName("x")))),
4725/// capturesVar(hasName("x")) matches `x` and `x = 1`.
4726AST_MATCHER_P(LambdaCapture, capturesVar, internal::Matcher<ValueDecl>,namespace internal { class matcher_capturesVar0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<LambdaCapture
> { public: explicit matcher_capturesVar0Matcher( internal
::Matcher<ValueDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const LambdaCapture &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<ValueDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<LambdaCapture> capturesVar( internal::Matcher<ValueDecl
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_capturesVar0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<LambdaCapture> ( &capturesVar_Type0)(internal::Matcher
<ValueDecl> const &InnerMatcher); inline bool internal
::matcher_capturesVar0Matcher::matches( const LambdaCapture &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4727 InnerMatcher)namespace internal { class matcher_capturesVar0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<LambdaCapture
> { public: explicit matcher_capturesVar0Matcher( internal
::Matcher<ValueDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const LambdaCapture &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<ValueDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<LambdaCapture> capturesVar( internal::Matcher<ValueDecl
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_capturesVar0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<LambdaCapture> ( &capturesVar_Type0)(internal::Matcher
<ValueDecl> const &InnerMatcher); inline bool internal
::matcher_capturesVar0Matcher::matches( const LambdaCapture &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4728 auto *capturedVar = Node.getCapturedVar();
4729 return capturedVar && InnerMatcher.matches(*capturedVar, Finder, Builder);
4730}
4731
4732/// Matches a `LambdaCapture` that refers to 'this'.
4733///
4734/// Given
4735/// \code
4736/// class C {
4737/// int cc;
4738/// int f() {
4739/// auto l = [this]() { return cc; };
4740/// return l();
4741/// }
4742/// };
4743/// \endcode
4744/// lambdaExpr(hasAnyCapture(lambdaCapture(capturesThis())))
4745/// matches `[this]() { return cc; }`.
4746AST_MATCHER(LambdaCapture, capturesThis)namespace internal { class matcher_capturesThisMatcher : public
::clang::ast_matchers::internal::MatcherInterface<LambdaCapture
> { public: explicit matcher_capturesThisMatcher() = default
; bool matches(const LambdaCapture &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<LambdaCapture>
capturesThis() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_capturesThisMatcher()); } inline bool
internal::matcher_capturesThisMatcher::matches( const LambdaCapture
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.capturesThis(); }
4747
4748/// Matches a constructor call expression which uses list initialization.
4749AST_MATCHER(CXXConstructExpr, isListInitialization)namespace internal { class matcher_isListInitializationMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructExpr> { public: explicit matcher_isListInitializationMatcher
() = default; bool matches(const CXXConstructExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; }; } inline ::clang::ast_matchers::internal::Matcher
<CXXConstructExpr> isListInitialization() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isListInitializationMatcher
()); } inline bool internal::matcher_isListInitializationMatcher
::matches( const CXXConstructExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4750 return Node.isListInitialization();
4751}
4752
4753/// Matches a constructor call expression which requires
4754/// zero initialization.
4755///
4756/// Given
4757/// \code
4758/// void foo() {
4759/// struct point { double x; double y; };
4760/// point pt[2] = { { 1.0, 2.0 } };
4761/// }
4762/// \endcode
4763/// initListExpr(has(cxxConstructExpr(requiresZeroInitialization()))
4764/// will match the implicit array filler for pt[1].
4765AST_MATCHER(CXXConstructExpr, requiresZeroInitialization)namespace internal { class matcher_requiresZeroInitializationMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructExpr> { public: explicit matcher_requiresZeroInitializationMatcher
() = default; bool matches(const CXXConstructExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; }; } inline ::clang::ast_matchers::internal::Matcher
<CXXConstructExpr> requiresZeroInitialization() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_requiresZeroInitializationMatcher()); } inline bool internal
::matcher_requiresZeroInitializationMatcher::matches( const CXXConstructExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
4766 return Node.requiresZeroInitialization();
4767}
4768
4769/// Matches the n'th parameter of a function or an ObjC method
4770/// declaration or a block.
4771///
4772/// Given
4773/// \code
4774/// class X { void f(int x) {} };
4775/// \endcode
4776/// cxxMethodDecl(hasParameter(0, hasType(varDecl())))
4777/// matches f(int x) {}
4778/// with hasParameter(...)
4779/// matching int x
4780///
4781/// For ObjectiveC, given
4782/// \code
4783/// @interface I - (void) f:(int) y; @end
4784/// \endcode
4785//
4786/// the matcher objcMethodDecl(hasParameter(0, hasName("y")))
4787/// matches the declaration of method f with hasParameter
4788/// matching y.
4789AST_POLYMORPHIC_MATCHER_P2(hasParameter,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4790 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4791 ObjCMethodDecl,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4792 BlockDecl),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4793 unsigned, N, internal::Matcher<ParmVarDecl>,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4794 InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasParameter0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasParameter0Matcher(unsigned const
&AN, internal::Matcher<ParmVarDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<ParmVarDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasParameter0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, ObjCMethodDecl, BlockDecl>), unsigned, internal::Matcher
<ParmVarDecl> > hasParameter(unsigned const &N, internal
::Matcher<ParmVarDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasParameter0Matcher, void(::clang::ast_matchers::internal
::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl>), unsigned
, internal::Matcher<ParmVarDecl> >(N, InnerMatcher);
} typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), unsigned, internal::Matcher<ParmVarDecl> > (&
hasParameter_Type0)( unsigned const &N, internal::Matcher
<ParmVarDecl> const &InnerMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_hasParameter0Matcher< NodeType, ParamT1, ParamT2
>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4795 return (N < Node.parameters().size()
4796 && InnerMatcher.matches(*Node.parameters()[N], Finder, Builder));
4797}
4798
4799/// Matches all arguments and their respective ParmVarDecl.
4800///
4801/// Given
4802/// \code
4803/// void f(int i);
4804/// int y;
4805/// f(y);
4806/// \endcode
4807/// callExpr(
4808/// forEachArgumentWithParam(
4809/// declRefExpr(to(varDecl(hasName("y")))),
4810/// parmVarDecl(hasType(isInteger()))
4811/// ))
4812/// matches f(y);
4813/// with declRefExpr(...)
4814/// matching int y
4815/// and parmVarDecl(...)
4816/// matching int i
4817AST_POLYMORPHIC_MATCHER_P2(forEachArgumentWithParam,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParam0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParam0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<ParmVarDecl> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<ParmVarDecl> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParam0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > forEachArgumentWithParam(internal::Matcher<Expr>
const &ArgMatcher, internal::Matcher<ParmVarDecl> const
&ParamMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_forEachArgumentWithParam0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<ParmVarDecl> >(ArgMatcher, ParamMatcher); }
typedef ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_forEachArgumentWithParam0Matcher, void(::clang
::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > (&forEachArgumentWithParam_Type0)( internal::Matcher
<Expr> const &ArgMatcher, internal::Matcher<ParmVarDecl
> const &ParamMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_forEachArgumentWithParam0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4818 AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParam0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParam0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<ParmVarDecl> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<ParmVarDecl> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParam0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > forEachArgumentWithParam(internal::Matcher<Expr>
const &ArgMatcher, internal::Matcher<ParmVarDecl> const
&ParamMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_forEachArgumentWithParam0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<ParmVarDecl> >(ArgMatcher, ParamMatcher); }
typedef ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_forEachArgumentWithParam0Matcher, void(::clang
::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > (&forEachArgumentWithParam_Type0)( internal::Matcher
<Expr> const &ArgMatcher, internal::Matcher<ParmVarDecl
> const &ParamMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_forEachArgumentWithParam0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4819 CXXConstructExpr),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParam0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParam0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<ParmVarDecl> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<ParmVarDecl> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParam0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > forEachArgumentWithParam(internal::Matcher<Expr>
const &ArgMatcher, internal::Matcher<ParmVarDecl> const
&ParamMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_forEachArgumentWithParam0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<ParmVarDecl> >(ArgMatcher, ParamMatcher); }
typedef ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_forEachArgumentWithParam0Matcher, void(::clang
::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > (&forEachArgumentWithParam_Type0)( internal::Matcher
<Expr> const &ArgMatcher, internal::Matcher<ParmVarDecl
> const &ParamMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_forEachArgumentWithParam0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4820 internal::Matcher<Expr>, ArgMatcher,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParam0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParam0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<ParmVarDecl> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<ParmVarDecl> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParam0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > forEachArgumentWithParam(internal::Matcher<Expr>
const &ArgMatcher, internal::Matcher<ParmVarDecl> const
&ParamMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_forEachArgumentWithParam0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<ParmVarDecl> >(ArgMatcher, ParamMatcher); }
typedef ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_forEachArgumentWithParam0Matcher, void(::clang
::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > (&forEachArgumentWithParam_Type0)( internal::Matcher
<Expr> const &ArgMatcher, internal::Matcher<ParmVarDecl
> const &ParamMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_forEachArgumentWithParam0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
4821 internal::Matcher<ParmVarDecl>, ParamMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParam0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParam0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<ParmVarDecl> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<ParmVarDecl> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParam0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > forEachArgumentWithParam(internal::Matcher<Expr>
const &ArgMatcher, internal::Matcher<ParmVarDecl> const
&ParamMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_forEachArgumentWithParam0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<ParmVarDecl> >(ArgMatcher, ParamMatcher); }
typedef ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_forEachArgumentWithParam0Matcher, void(::clang
::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<ParmVarDecl
> > (&forEachArgumentWithParam_Type0)( internal::Matcher
<Expr> const &ArgMatcher, internal::Matcher<ParmVarDecl
> const &ParamMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_forEachArgumentWithParam0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4822 BoundNodesTreeBuilder Result;
4823 // The first argument of an overloaded member operator is the implicit object
4824 // argument of the method which should not be matched against a parameter, so
4825 // we skip over it here.
4826 BoundNodesTreeBuilder Matches;
4827 unsigned ArgIndex = cxxOperatorCallExpr(callee(cxxMethodDecl()))
4828 .matches(Node, Finder, &Matches)
4829 ? 1
4830 : 0;
4831 int ParamIndex = 0;
4832 bool Matched = false;
4833 for (; ArgIndex < Node.getNumArgs(); ++ArgIndex) {
4834 BoundNodesTreeBuilder ArgMatches(*Builder);
4835 if (ArgMatcher.matches(*(Node.getArg(ArgIndex)->IgnoreParenCasts()),
4836 Finder, &ArgMatches)) {
4837 BoundNodesTreeBuilder ParamMatches(ArgMatches);
4838 if (expr(anyOf(cxxConstructExpr(hasDeclaration(cxxConstructorDecl(
4839 hasParameter(ParamIndex, ParamMatcher)))),
4840 callExpr(callee(functionDecl(
4841 hasParameter(ParamIndex, ParamMatcher))))))
4842 .matches(Node, Finder, &ParamMatches)) {
4843 Result.addMatch(ParamMatches);
4844 Matched = true;
4845 }
4846 }
4847 ++ParamIndex;
4848 }
4849 *Builder = std::move(Result);
4850 return Matched;
4851}
4852
4853/// Matches all arguments and their respective types for a \c CallExpr or
4854/// \c CXXConstructExpr. It is very similar to \c forEachArgumentWithParam but
4855/// it works on calls through function pointers as well.
4856///
4857/// The difference is, that function pointers do not provide access to a
4858/// \c ParmVarDecl, but only the \c QualType for each argument.
4859///
4860/// Given
4861/// \code
4862/// void f(int i);
4863/// int y;
4864/// f(y);
4865/// void (*f_ptr)(int) = f;
4866/// f_ptr(y);
4867/// \endcode
4868/// callExpr(
4869/// forEachArgumentWithParamType(
4870/// declRefExpr(to(varDecl(hasName("y")))),
4871/// qualType(isInteger()).bind("type)
4872/// ))
4873/// matches f(y) and f_ptr(y)
4874/// with declRefExpr(...)
4875/// matching int y
4876/// and qualType(...)
4877/// matching int
4878AST_POLYMORPHIC_MATCHER_P2(forEachArgumentWithParamType,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParamType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParamType0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<QualType> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<QualType> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParamType0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > forEachArgumentWithParamType(internal::Matcher<Expr
> const &ArgMatcher, internal::Matcher<QualType>
const &ParamMatcher) { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_forEachArgumentWithParamType0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<QualType> >(ArgMatcher, ParamMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachArgumentWithParamType0Matcher, void(::clang::
ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > (&forEachArgumentWithParamType_Type0)( internal
::Matcher<Expr> const &ArgMatcher, internal::Matcher
<QualType> const &ParamMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_forEachArgumentWithParamType0Matcher< NodeType, ParamT1
, ParamT2>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4879 AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParamType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParamType0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<QualType> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<QualType> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParamType0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > forEachArgumentWithParamType(internal::Matcher<Expr
> const &ArgMatcher, internal::Matcher<QualType>
const &ParamMatcher) { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_forEachArgumentWithParamType0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<QualType> >(ArgMatcher, ParamMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachArgumentWithParamType0Matcher, void(::clang::
ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > (&forEachArgumentWithParamType_Type0)( internal
::Matcher<Expr> const &ArgMatcher, internal::Matcher
<QualType> const &ParamMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_forEachArgumentWithParamType0Matcher< NodeType, ParamT1
, ParamT2>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4880 CXXConstructExpr),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParamType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParamType0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<QualType> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<QualType> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParamType0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > forEachArgumentWithParamType(internal::Matcher<Expr
> const &ArgMatcher, internal::Matcher<QualType>
const &ParamMatcher) { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_forEachArgumentWithParamType0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<QualType> >(ArgMatcher, ParamMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachArgumentWithParamType0Matcher, void(::clang::
ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > (&forEachArgumentWithParamType_Type0)( internal
::Matcher<Expr> const &ArgMatcher, internal::Matcher
<QualType> const &ParamMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_forEachArgumentWithParamType0Matcher< NodeType, ParamT1
, ParamT2>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4881 internal::Matcher<Expr>, ArgMatcher,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParamType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParamType0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<QualType> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<QualType> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParamType0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > forEachArgumentWithParamType(internal::Matcher<Expr
> const &ArgMatcher, internal::Matcher<QualType>
const &ParamMatcher) { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_forEachArgumentWithParamType0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<QualType> >(ArgMatcher, ParamMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachArgumentWithParamType0Matcher, void(::clang::
ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > (&forEachArgumentWithParamType_Type0)( internal
::Matcher<Expr> const &ArgMatcher, internal::Matcher
<QualType> const &ParamMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_forEachArgumentWithParamType0Matcher< NodeType, ParamT1
, ParamT2>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
4882 internal::Matcher<QualType>, ParamMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_forEachArgumentWithParamType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_forEachArgumentWithParamType0Matcher
(internal::Matcher<Expr> const &AArgMatcher, internal
::Matcher<QualType> const &AParamMatcher) : ArgMatcher
(AArgMatcher), ParamMatcher(AParamMatcher) {} bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> ArgMatcher; internal::Matcher<QualType> ParamMatcher
; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachArgumentWithParamType0Matcher, void
(::clang::ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > forEachArgumentWithParamType(internal::Matcher<Expr
> const &ArgMatcher, internal::Matcher<QualType>
const &ParamMatcher) { return ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_forEachArgumentWithParamType0Matcher
, void(::clang::ast_matchers::internal::TypeList<CallExpr,
CXXConstructExpr>), internal::Matcher<Expr>, internal
::Matcher<QualType> >(ArgMatcher, ParamMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachArgumentWithParamType0Matcher, void(::clang::
ast_matchers::internal::TypeList<CallExpr, CXXConstructExpr
>), internal::Matcher<Expr>, internal::Matcher<QualType
> > (&forEachArgumentWithParamType_Type0)( internal
::Matcher<Expr> const &ArgMatcher, internal::Matcher
<QualType> const &ParamMatcher); template <typename
NodeType, typename ParamT1, typename ParamT2> bool internal
::matcher_forEachArgumentWithParamType0Matcher< NodeType, ParamT1
, ParamT2>:: matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
4883 BoundNodesTreeBuilder Result;
4884 // The first argument of an overloaded member operator is the implicit object
4885 // argument of the method which should not be matched against a parameter, so
4886 // we skip over it here.
4887 BoundNodesTreeBuilder Matches;
4888 unsigned ArgIndex = cxxOperatorCallExpr(callee(cxxMethodDecl()))
4889 .matches(Node, Finder, &Matches)
4890 ? 1
4891 : 0;
4892
4893 const FunctionProtoType *FProto = nullptr;
4894
4895 if (const auto *Call = dyn_cast<CallExpr>(&Node)) {
4896 if (const auto *Value =
4897 dyn_cast_or_null<ValueDecl>(Call->getCalleeDecl())) {
4898 QualType QT = Value->getType().getCanonicalType();
4899
4900 // This does not necessarily lead to a `FunctionProtoType`,
4901 // e.g. K&R functions do not have a function prototype.
4902 if (QT->isFunctionPointerType())
4903 FProto = QT->getPointeeType()->getAs<FunctionProtoType>();
4904
4905 if (QT->isMemberFunctionPointerType()) {
4906 const auto *MP = QT->getAs<MemberPointerType>();
4907 assert(MP && "Must be member-pointer if its a memberfunctionpointer")(static_cast <bool> (MP && "Must be member-pointer if its a memberfunctionpointer"
) ? void (0) : __assert_fail ("MP && \"Must be member-pointer if its a memberfunctionpointer\""
, "clang/include/clang/ASTMatchers/ASTMatchers.h", 4907, __extension__
__PRETTY_FUNCTION__))
;
4908 FProto = MP->getPointeeType()->getAs<FunctionProtoType>();
4909 assert(FProto &&(static_cast <bool> (FProto && "The call must have happened through a member function "
"pointer") ? void (0) : __assert_fail ("FProto && \"The call must have happened through a member function \" \"pointer\""
, "clang/include/clang/ASTMatchers/ASTMatchers.h", 4911, __extension__
__PRETTY_FUNCTION__))
4910 "The call must have happened through a member function "(static_cast <bool> (FProto && "The call must have happened through a member function "
"pointer") ? void (0) : __assert_fail ("FProto && \"The call must have happened through a member function \" \"pointer\""
, "clang/include/clang/ASTMatchers/ASTMatchers.h", 4911, __extension__
__PRETTY_FUNCTION__))
4911 "pointer")(static_cast <bool> (FProto && "The call must have happened through a member function "
"pointer") ? void (0) : __assert_fail ("FProto && \"The call must have happened through a member function \" \"pointer\""
, "clang/include/clang/ASTMatchers/ASTMatchers.h", 4911, __extension__
__PRETTY_FUNCTION__))
;
4912 }
4913 }
4914 }
4915
4916 unsigned ParamIndex = 0;
4917 bool Matched = false;
4918 unsigned NumArgs = Node.getNumArgs();
4919 if (FProto && FProto->isVariadic())
4920 NumArgs = std::min(NumArgs, FProto->getNumParams());
4921
4922 for (; ArgIndex < NumArgs; ++ArgIndex, ++ParamIndex) {
4923 BoundNodesTreeBuilder ArgMatches(*Builder);
4924 if (ArgMatcher.matches(*(Node.getArg(ArgIndex)->IgnoreParenCasts()), Finder,
4925 &ArgMatches)) {
4926 BoundNodesTreeBuilder ParamMatches(ArgMatches);
4927
4928 // This test is cheaper compared to the big matcher in the next if.
4929 // Therefore, please keep this order.
4930 if (FProto && FProto->getNumParams() > ParamIndex) {
4931 QualType ParamType = FProto->getParamType(ParamIndex);
4932 if (ParamMatcher.matches(ParamType, Finder, &ParamMatches)) {
4933 Result.addMatch(ParamMatches);
4934 Matched = true;
4935 continue;
4936 }
4937 }
4938 if (expr(anyOf(cxxConstructExpr(hasDeclaration(cxxConstructorDecl(
4939 hasParameter(ParamIndex, hasType(ParamMatcher))))),
4940 callExpr(callee(functionDecl(
4941 hasParameter(ParamIndex, hasType(ParamMatcher)))))))
4942 .matches(Node, Finder, &ParamMatches)) {
4943 Result.addMatch(ParamMatches);
4944 Matched = true;
4945 continue;
4946 }
4947 }
4948 }
4949 *Builder = std::move(Result);
4950 return Matched;
4951}
4952
4953/// Matches the ParmVarDecl nodes that are at the N'th position in the parameter
4954/// list. The parameter list could be that of either a block, function, or
4955/// objc-method.
4956///
4957///
4958/// Given
4959///
4960/// \code
4961/// void f(int a, int b, int c) {
4962/// }
4963/// \endcode
4964///
4965/// ``parmVarDecl(isAtPosition(0))`` matches ``int a``.
4966///
4967/// ``parmVarDecl(isAtPosition(1))`` matches ``int b``.
4968AST_MATCHER_P(ParmVarDecl, isAtPosition, unsigned, N)namespace internal { class matcher_isAtPosition0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ParmVarDecl
> { public: explicit matcher_isAtPosition0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const ParmVarDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::Matcher<ParmVarDecl> isAtPosition( unsigned
const &N) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isAtPosition0Matcher(N)); } typedef ::
clang::ast_matchers::internal::Matcher<ParmVarDecl> ( &
isAtPosition_Type0)(unsigned const &N); inline bool internal
::matcher_isAtPosition0Matcher::matches( const ParmVarDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
4969 const clang::DeclContext *Context = Node.getParentFunctionOrMethod();
4970
4971 if (const auto *Decl = dyn_cast_or_null<FunctionDecl>(Context))
4972 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node;
4973 if (const auto *Decl = dyn_cast_or_null<BlockDecl>(Context))
4974 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node;
4975 if (const auto *Decl = dyn_cast_or_null<ObjCMethodDecl>(Context))
4976 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node;
4977
4978 return false;
4979}
4980
4981/// Matches any parameter of a function or an ObjC method declaration or a
4982/// block.
4983///
4984/// Does not match the 'this' parameter of a method.
4985///
4986/// Given
4987/// \code
4988/// class X { void f(int x, int y, int z) {} };
4989/// \endcode
4990/// cxxMethodDecl(hasAnyParameter(hasName("y")))
4991/// matches f(int x, int y, int z) {}
4992/// with hasAnyParameter(...)
4993/// matching int y
4994///
4995/// For ObjectiveC, given
4996/// \code
4997/// @interface I - (void) f:(int) y; @end
4998/// \endcode
4999//
5000/// the matcher objcMethodDecl(hasAnyParameter(hasName("y")))
5001/// matches the declaration of method f with hasParameter
5002/// matching y.
5003///
5004/// For blocks, given
5005/// \code
5006/// b = ^(int y) { printf("%d", y) };
5007/// \endcode
5008///
5009/// the matcher blockDecl(hasAnyParameter(hasName("y")))
5010/// matches the declaration of the block b with hasParameter
5011/// matching y.
5012AST_POLYMORPHIC_MATCHER_P(hasAnyParameter,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5013 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5014 ObjCMethodDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5015 BlockDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5016 internal::Matcher<ParmVarDecl>,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5017 InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnyParameter0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasAnyParameter0Matcher( internal
::Matcher<ParmVarDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<ParmVarDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnyParameter0Matcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, ObjCMethodDecl, BlockDecl
>), internal::Matcher<ParmVarDecl> > hasAnyParameter
(internal::Matcher<ParmVarDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasAnyParameter0Matcher, void(::clang::
ast_matchers::internal::TypeList<FunctionDecl, ObjCMethodDecl
, BlockDecl>), internal::Matcher<ParmVarDecl> > (
&hasAnyParameter_Type0)(internal::Matcher<ParmVarDecl>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasAnyParameter0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5018 return matchesFirstInPointerRange(InnerMatcher, Node.param_begin(),
5019 Node.param_end(), Finder,
5020 Builder) != Node.param_end();
5021}
5022
5023/// Matches \c FunctionDecls and \c FunctionProtoTypes that have a
5024/// specific parameter count.
5025///
5026/// Given
5027/// \code
5028/// void f(int i) {}
5029/// void g(int i, int j) {}
5030/// void h(int i, int j);
5031/// void j(int i);
5032/// void k(int x, int y, int z, ...);
5033/// \endcode
5034/// functionDecl(parameterCountIs(2))
5035/// matches \c g and \c h
5036/// functionProtoType(parameterCountIs(2))
5037/// matches \c g and \c h
5038/// functionProtoType(parameterCountIs(3))
5039/// matches \c k
5040AST_POLYMORPHIC_MATCHER_P(parameterCountIs,namespace internal { template <typename NodeType, typename
ParamT> class matcher_parameterCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_parameterCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> parameterCountIs(unsigned
const &N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_parameterCountIs0Matcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, FunctionProtoType
>), unsigned>(N); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> (&parameterCountIs_Type0
)(unsigned const &N); template <typename NodeType, typename
ParamT> bool internal:: matcher_parameterCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5041 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_parameterCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_parameterCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> parameterCountIs(unsigned
const &N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_parameterCountIs0Matcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, FunctionProtoType
>), unsigned>(N); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> (&parameterCountIs_Type0
)(unsigned const &N); template <typename NodeType, typename
ParamT> bool internal:: matcher_parameterCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5042 FunctionProtoType),namespace internal { template <typename NodeType, typename
ParamT> class matcher_parameterCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_parameterCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> parameterCountIs(unsigned
const &N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_parameterCountIs0Matcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, FunctionProtoType
>), unsigned>(N); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> (&parameterCountIs_Type0
)(unsigned const &N); template <typename NodeType, typename
ParamT> bool internal:: matcher_parameterCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5043 unsigned, N)namespace internal { template <typename NodeType, typename
ParamT> class matcher_parameterCountIs0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_parameterCountIs0Matcher( unsigned
const &AN) : N(AN) {} bool matches(const NodeType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: unsigned N; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> parameterCountIs(unsigned
const &N) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_parameterCountIs0Matcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, FunctionProtoType
>), unsigned>(N); } typedef ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_parameterCountIs0Matcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>), unsigned> (&parameterCountIs_Type0
)(unsigned const &N); template <typename NodeType, typename
ParamT> bool internal:: matcher_parameterCountIs0Matcher<
NodeType, ParamT>::matches( const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5044 return Node.getNumParams() == N;
5045}
5046
5047/// Matches classTemplateSpecialization, templateSpecializationType and
5048/// functionDecl nodes where the template argument matches the inner matcher.
5049/// This matcher may produce multiple matches.
5050///
5051/// Given
5052/// \code
5053/// template <typename T, unsigned N, unsigned M>
5054/// struct Matrix {};
5055///
5056/// constexpr unsigned R = 2;
5057/// Matrix<int, R * 2, R * 4> M;
5058///
5059/// template <typename T, typename U>
5060/// void f(T&& t, U&& u) {}
5061///
5062/// bool B = false;
5063/// f(R, B);
5064/// \endcode
5065/// templateSpecializationType(forEachTemplateArgument(isExpr(expr())))
5066/// matches twice, with expr() matching 'R * 2' and 'R * 4'
5067/// functionDecl(forEachTemplateArgument(refersToType(builtinType())))
5068/// matches the specialization f<unsigned, bool> twice, for 'unsigned'
5069/// and 'bool'
5070AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_forEachTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_forEachTemplateArgument0Matcher
( clang::ast_matchers::internal::Matcher<TemplateArgument>
const &AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: clang::ast_matchers::internal
::Matcher<TemplateArgument> InnerMatcher; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), clang::ast_matchers::internal::Matcher<
TemplateArgument> > forEachTemplateArgument(clang::ast_matchers
::internal::Matcher<TemplateArgument> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> > (&forEachTemplateArgument_Type0
)(clang::ast_matchers::internal::Matcher<TemplateArgument>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_forEachTemplateArgument0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5071 forEachTemplateArgument,namespace internal { template <typename NodeType, typename
ParamT> class matcher_forEachTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_forEachTemplateArgument0Matcher
( clang::ast_matchers::internal::Matcher<TemplateArgument>
const &AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: clang::ast_matchers::internal
::Matcher<TemplateArgument> InnerMatcher; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), clang::ast_matchers::internal::Matcher<
TemplateArgument> > forEachTemplateArgument(clang::ast_matchers
::internal::Matcher<TemplateArgument> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> > (&forEachTemplateArgument_Type0
)(clang::ast_matchers::internal::Matcher<TemplateArgument>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_forEachTemplateArgument0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5072 AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl,namespace internal { template <typename NodeType, typename
ParamT> class matcher_forEachTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_forEachTemplateArgument0Matcher
( clang::ast_matchers::internal::Matcher<TemplateArgument>
const &AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: clang::ast_matchers::internal
::Matcher<TemplateArgument> InnerMatcher; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), clang::ast_matchers::internal::Matcher<
TemplateArgument> > forEachTemplateArgument(clang::ast_matchers
::internal::Matcher<TemplateArgument> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> > (&forEachTemplateArgument_Type0
)(clang::ast_matchers::internal::Matcher<TemplateArgument>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_forEachTemplateArgument0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5073 TemplateSpecializationType, FunctionDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_forEachTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_forEachTemplateArgument0Matcher
( clang::ast_matchers::internal::Matcher<TemplateArgument>
const &AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: clang::ast_matchers::internal
::Matcher<TemplateArgument> InnerMatcher; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), clang::ast_matchers::internal::Matcher<
TemplateArgument> > forEachTemplateArgument(clang::ast_matchers
::internal::Matcher<TemplateArgument> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> > (&forEachTemplateArgument_Type0
)(clang::ast_matchers::internal::Matcher<TemplateArgument>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_forEachTemplateArgument0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5074 clang::ast_matchers::internal::Matcher<TemplateArgument>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_forEachTemplateArgument0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_forEachTemplateArgument0Matcher
( clang::ast_matchers::internal::Matcher<TemplateArgument>
const &AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: clang::ast_matchers::internal
::Matcher<TemplateArgument> InnerMatcher; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_forEachTemplateArgument0Matcher, void(::clang::ast_matchers
::internal::TypeList<ClassTemplateSpecializationDecl, TemplateSpecializationType
, FunctionDecl>), clang::ast_matchers::internal::Matcher<
TemplateArgument> > forEachTemplateArgument(clang::ast_matchers
::internal::Matcher<TemplateArgument> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> >(InnerMatcher
); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_forEachTemplateArgument0Matcher, void(
::clang::ast_matchers::internal::TypeList<ClassTemplateSpecializationDecl
, TemplateSpecializationType, FunctionDecl>), clang::ast_matchers
::internal::Matcher<TemplateArgument> > (&forEachTemplateArgument_Type0
)(clang::ast_matchers::internal::Matcher<TemplateArgument>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_forEachTemplateArgument0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5075 ArrayRef<TemplateArgument> TemplateArgs =
5076 clang::ast_matchers::internal::getTemplateSpecializationArgs(Node);
5077 clang::ast_matchers::internal::BoundNodesTreeBuilder Result;
5078 bool Matched = false;
5079 for (const auto &Arg : TemplateArgs) {
5080 clang::ast_matchers::internal::BoundNodesTreeBuilder ArgBuilder(*Builder);
5081 if (InnerMatcher.matches(Arg, Finder, &ArgBuilder)) {
5082 Matched = true;
5083 Result.addMatch(ArgBuilder);
5084 }
5085 }
5086 *Builder = std::move(Result);
5087 return Matched;
5088}
5089
5090/// Matches \c FunctionDecls that have a noreturn attribute.
5091///
5092/// Given
5093/// \code
5094/// void nope();
5095/// [[noreturn]] void a();
5096/// __attribute__((noreturn)) void b();
5097/// struct c { [[noreturn]] c(); };
5098/// \endcode
5099/// functionDecl(isNoReturn())
5100/// matches all of those except
5101/// \code
5102/// void nope();
5103/// \endcode
5104AST_MATCHER(FunctionDecl, isNoReturn)namespace internal { class matcher_isNoReturnMatcher : public
::clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_isNoReturnMatcher() = default
; bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<FunctionDecl>
isNoReturn() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isNoReturnMatcher()); } inline bool internal
::matcher_isNoReturnMatcher::matches( const FunctionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{ return Node.isNoReturn(); }
5105
5106/// Matches the return type of a function declaration.
5107///
5108/// Given:
5109/// \code
5110/// class X { int f() { return 1; } };
5111/// \endcode
5112/// cxxMethodDecl(returns(asString("int")))
5113/// matches int f() { return 1; }
5114AST_MATCHER_P(FunctionDecl, returns,namespace internal { class matcher_returns0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_returns0Matcher( internal::Matcher
<QualType> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<QualType> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<FunctionDecl> returns( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_returns0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FunctionDecl> ( &returns_Type0)(internal::Matcher<
QualType> const &InnerMatcher); inline bool internal::
matcher_returns0Matcher::matches( const FunctionDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5115 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_returns0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_returns0Matcher( internal::Matcher
<QualType> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<QualType> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<FunctionDecl> returns( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_returns0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FunctionDecl> ( &returns_Type0)(internal::Matcher<
QualType> const &InnerMatcher); inline bool internal::
matcher_returns0Matcher::matches( const FunctionDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5116 return InnerMatcher.matches(Node.getReturnType(), Finder, Builder);
5117}
5118
5119/// Matches extern "C" function or variable declarations.
5120///
5121/// Given:
5122/// \code
5123/// extern "C" void f() {}
5124/// extern "C" { void g() {} }
5125/// void h() {}
5126/// extern "C" int x = 1;
5127/// extern "C" int y = 2;
5128/// int z = 3;
5129/// \endcode
5130/// functionDecl(isExternC())
5131/// matches the declaration of f and g, but not the declaration of h.
5132/// varDecl(isExternC())
5133/// matches the declaration of x and y, but not the declaration of z.
5134AST_POLYMORPHIC_MATCHER(isExternC, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType> class
matcher_isExternCMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExternCMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)> isExternC() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExternCMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)>(); } template <typename NodeType> bool
internal::matcher_isExternCMatcher<NodeType>::matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5135 VarDecl))namespace internal { template <typename NodeType> class
matcher_isExternCMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExternCMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)> isExternC() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isExternCMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)>(); } template <typename NodeType> bool
internal::matcher_isExternCMatcher<NodeType>::matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5136 return Node.isExternC();
5137}
5138
5139/// Matches variable/function declarations that have "static" storage
5140/// class specifier ("static" keyword) written in the source.
5141///
5142/// Given:
5143/// \code
5144/// static void f() {}
5145/// static int i = 0;
5146/// extern int j;
5147/// int k;
5148/// \endcode
5149/// functionDecl(isStaticStorageClass())
5150/// matches the function declaration f.
5151/// varDecl(isStaticStorageClass())
5152/// matches the variable declaration i.
5153AST_POLYMORPHIC_MATCHER(isStaticStorageClass,namespace internal { template <typename NodeType> class
matcher_isStaticStorageClassMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)> isStaticStorageClass() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)>(); } template <typename NodeType> bool
internal::matcher_isStaticStorageClassMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5154 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType> class
matcher_isStaticStorageClassMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)> isStaticStorageClass() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)>(); } template <typename NodeType> bool
internal::matcher_isStaticStorageClassMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5155 VarDecl))namespace internal { template <typename NodeType> class
matcher_isStaticStorageClassMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)> isStaticStorageClass() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isStaticStorageClassMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl>)>(); } template <typename NodeType> bool
internal::matcher_isStaticStorageClassMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5156 return Node.getStorageClass() == SC_Static;
5157}
5158
5159/// Matches deleted function declarations.
5160///
5161/// Given:
5162/// \code
5163/// void Func();
5164/// void DeletedFunc() = delete;
5165/// \endcode
5166/// functionDecl(isDeleted())
5167/// matches the declaration of DeletedFunc, but not Func.
5168AST_MATCHER(FunctionDecl, isDeleted)namespace internal { class matcher_isDeletedMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_isDeletedMatcher() = default;
bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<FunctionDecl>
isDeleted() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isDeletedMatcher()); } inline bool internal
::matcher_isDeletedMatcher::matches( const FunctionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5169 return Node.isDeleted();
5170}
5171
5172/// Matches defaulted function declarations.
5173///
5174/// Given:
5175/// \code
5176/// class A { ~A(); };
5177/// class B { ~B() = default; };
5178/// \endcode
5179/// functionDecl(isDefaulted())
5180/// matches the declaration of ~B, but not ~A.
5181AST_MATCHER(FunctionDecl, isDefaulted)namespace internal { class matcher_isDefaultedMatcher : public
::clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_isDefaultedMatcher() = default
; bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<FunctionDecl>
isDefaulted() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isDefaultedMatcher()); } inline bool internal
::matcher_isDefaultedMatcher::matches( const FunctionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5182 return Node.isDefaulted();
5183}
5184
5185/// Matches weak function declarations.
5186///
5187/// Given:
5188/// \code
5189/// void foo() __attribute__((__weakref__("__foo")));
5190/// void bar();
5191/// \endcode
5192/// functionDecl(isWeak())
5193/// matches the weak declaration "foo", but not "bar".
5194AST_MATCHER(FunctionDecl, isWeak)namespace internal { class matcher_isWeakMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<FunctionDecl>
{ public: explicit matcher_isWeakMatcher() = default; bool matches
(const FunctionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<FunctionDecl> isWeak() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isWeakMatcher
()); } inline bool internal::matcher_isWeakMatcher::matches( const
FunctionDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.isWeak(); }
5195
5196/// Matches functions that have a dynamic exception specification.
5197///
5198/// Given:
5199/// \code
5200/// void f();
5201/// void g() noexcept;
5202/// void h() noexcept(true);
5203/// void i() noexcept(false);
5204/// void j() throw();
5205/// void k() throw(int);
5206/// void l() throw(...);
5207/// \endcode
5208/// functionDecl(hasDynamicExceptionSpec()) and
5209/// functionProtoType(hasDynamicExceptionSpec())
5210/// match the declarations of j, k, and l, but not f, g, h, or i.
5211AST_POLYMORPHIC_MATCHER(hasDynamicExceptionSpec,namespace internal { template <typename NodeType> class
matcher_hasDynamicExceptionSpecMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasDynamicExceptionSpecMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> hasDynamicExceptionSpec() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasDynamicExceptionSpecMatcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, FunctionProtoType>)>
(); } template <typename NodeType> bool internal::matcher_hasDynamicExceptionSpecMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5212 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType> class
matcher_hasDynamicExceptionSpecMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasDynamicExceptionSpecMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> hasDynamicExceptionSpec() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasDynamicExceptionSpecMatcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, FunctionProtoType>)>
(); } template <typename NodeType> bool internal::matcher_hasDynamicExceptionSpecMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5213 FunctionProtoType))namespace internal { template <typename NodeType> class
matcher_hasDynamicExceptionSpecMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasDynamicExceptionSpecMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> hasDynamicExceptionSpec() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasDynamicExceptionSpecMatcher, void(::clang::ast_matchers
::internal::TypeList<FunctionDecl, FunctionProtoType>)>
(); } template <typename NodeType> bool internal::matcher_hasDynamicExceptionSpecMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5214 if (const FunctionProtoType *FnTy = internal::getFunctionProtoType(Node))
5215 return FnTy->hasDynamicExceptionSpec();
5216 return false;
5217}
5218
5219/// Matches functions that have a non-throwing exception specification.
5220///
5221/// Given:
5222/// \code
5223/// void f();
5224/// void g() noexcept;
5225/// void h() throw();
5226/// void i() throw(int);
5227/// void j() noexcept(false);
5228/// \endcode
5229/// functionDecl(isNoThrow()) and functionProtoType(isNoThrow())
5230/// match the declarations of g, and h, but not f, i or j.
5231AST_POLYMORPHIC_MATCHER(isNoThrow,namespace internal { template <typename NodeType> class
matcher_isNoThrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> isNoThrow() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)>(); } template <typename NodeType
> bool internal::matcher_isNoThrowMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5232 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl,namespace internal { template <typename NodeType> class
matcher_isNoThrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> isNoThrow() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)>(); } template <typename NodeType
> bool internal::matcher_isNoThrowMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5233 FunctionProtoType))namespace internal { template <typename NodeType> class
matcher_isNoThrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)> isNoThrow() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isNoThrowMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, FunctionProtoType>)>(); } template <typename NodeType
> bool internal::matcher_isNoThrowMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5234 const FunctionProtoType *FnTy = internal::getFunctionProtoType(Node);
5235
5236 // If the function does not have a prototype, then it is assumed to be a
5237 // throwing function (as it would if the function did not have any exception
5238 // specification).
5239 if (!FnTy)
5240 return false;
5241
5242 // Assume the best for any unresolved exception specification.
5243 if (isUnresolvedExceptionSpec(FnTy->getExceptionSpecType()))
5244 return true;
5245
5246 return FnTy->isNothrow();
5247}
5248
5249/// Matches consteval function declarations and if consteval/if ! consteval
5250/// statements.
5251///
5252/// Given:
5253/// \code
5254/// consteval int a();
5255/// void b() { if consteval {} }
5256/// void c() { if ! consteval {} }
5257/// void d() { if ! consteval {} else {} }
5258/// \endcode
5259/// functionDecl(isConsteval())
5260/// matches the declaration of "int a()".
5261/// ifStmt(isConsteval())
5262/// matches the if statement in "void b()", "void c()", "void d()".
5263AST_POLYMORPHIC_MATCHER(isConsteval,namespace internal { template <typename NodeType> class
matcher_isConstevalMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstevalMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, IfStmt>)> isConsteval() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstevalMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstevalMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5264 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, IfStmt))namespace internal { template <typename NodeType> class
matcher_isConstevalMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstevalMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, IfStmt>)> isConsteval() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstevalMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstevalMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5265 return Node.isConsteval();
5266}
5267
5268/// Matches constexpr variable and function declarations,
5269/// and if constexpr.
5270///
5271/// Given:
5272/// \code
5273/// constexpr int foo = 42;
5274/// constexpr int bar();
5275/// void baz() { if constexpr(1 > 0) {} }
5276/// \endcode
5277/// varDecl(isConstexpr())
5278/// matches the declaration of foo.
5279/// functionDecl(isConstexpr())
5280/// matches the declaration of bar.
5281/// ifStmt(isConstexpr())
5282/// matches the if statement in baz.
5283AST_POLYMORPHIC_MATCHER(isConstexpr,namespace internal { template <typename NodeType> class
matcher_isConstexprMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)> isConstexpr() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstexprMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5284 AST_POLYMORPHIC_SUPPORTED_TYPES(VarDecl,namespace internal { template <typename NodeType> class
matcher_isConstexprMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)> isConstexpr() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstexprMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5285 FunctionDecl,namespace internal { template <typename NodeType> class
matcher_isConstexprMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)> isConstexpr() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstexprMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5286 IfStmt))namespace internal { template <typename NodeType> class
matcher_isConstexprMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)> isConstexpr() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isConstexprMatcher
, void(::clang::ast_matchers::internal::TypeList<VarDecl, FunctionDecl
, IfStmt>)>(); } template <typename NodeType> bool
internal::matcher_isConstexprMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5287 return Node.isConstexpr();
5288}
5289
5290/// Matches constinit variable declarations.
5291///
5292/// Given:
5293/// \code
5294/// constinit int foo = 42;
5295/// constinit const char* bar = "bar";
5296/// int baz = 42;
5297/// [[clang::require_constant_initialization]] int xyz = 42;
5298/// \endcode
5299/// varDecl(isConstinit())
5300/// matches the declaration of `foo` and `bar`, but not `baz` and `xyz`.
5301AST_MATCHER(VarDecl, isConstinit)namespace internal { class matcher_isConstinitMatcher : public
::clang::ast_matchers::internal::MatcherInterface<VarDecl
> { public: explicit matcher_isConstinitMatcher() = default
; bool matches(const VarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<VarDecl> isConstinit
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isConstinitMatcher()); } inline bool internal
::matcher_isConstinitMatcher::matches( const VarDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5302 if (const auto *CIA = Node.getAttr<ConstInitAttr>())
5303 return CIA->isConstinit();
5304 return false;
5305}
5306
5307/// Matches selection statements with initializer.
5308///
5309/// Given:
5310/// \code
5311/// void foo() {
5312/// if (int i = foobar(); i > 0) {}
5313/// switch (int i = foobar(); i) {}
5314/// for (auto& a = get_range(); auto& x : a) {}
5315/// }
5316/// void bar() {
5317/// if (foobar() > 0) {}
5318/// switch (foobar()) {}
5319/// for (auto& x : get_range()) {}
5320/// }
5321/// \endcode
5322/// ifStmt(hasInitStatement(anything()))
5323/// matches the if statement in foo but not in bar.
5324/// switchStmt(hasInitStatement(anything()))
5325/// matches the switch statement in foo but not in bar.
5326/// cxxForRangeStmt(hasInitStatement(anything()))
5327/// matches the range for statement in foo but not in bar.
5328AST_POLYMORPHIC_MATCHER_P(hasInitStatement,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasInitStatement0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasInitStatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasInitStatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, SwitchStmt
, CXXForRangeStmt>), internal::Matcher<Stmt> > hasInitStatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> > (&hasInitStatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasInitStatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5329 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, SwitchStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasInitStatement0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasInitStatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasInitStatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, SwitchStmt
, CXXForRangeStmt>), internal::Matcher<Stmt> > hasInitStatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> > (&hasInitStatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasInitStatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5330 CXXForRangeStmt),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasInitStatement0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasInitStatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasInitStatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, SwitchStmt
, CXXForRangeStmt>), internal::Matcher<Stmt> > hasInitStatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> > (&hasInitStatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasInitStatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5331 internal::Matcher<Stmt>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasInitStatement0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasInitStatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasInitStatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, SwitchStmt
, CXXForRangeStmt>), internal::Matcher<Stmt> > hasInitStatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasInitStatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<IfStmt, SwitchStmt, CXXForRangeStmt>
), internal::Matcher<Stmt> > (&hasInitStatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasInitStatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5332 const Stmt *Init = Node.getInit();
5333 return Init != nullptr && InnerMatcher.matches(*Init, Finder, Builder);
5334}
5335
5336/// Matches the condition expression of an if statement, for loop,
5337/// switch statement or conditional operator.
5338///
5339/// Example matches true (matcher = hasCondition(cxxBoolLiteral(equals(true))))
5340/// \code
5341/// if (true) {}
5342/// \endcode
5343AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasCondition0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasCondition0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> > hasCondition(internal::
Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasCondition0Matcher, void(::clang::ast_matchers::internal
::TypeList<IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt,
AbstractConditionalOperator>), internal::Matcher<Expr>
> (&hasCondition_Type0)(internal::Matcher<Expr>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasCondition0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5344 hasCondition,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasCondition0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasCondition0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> > hasCondition(internal::
Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasCondition0Matcher, void(::clang::ast_matchers::internal
::TypeList<IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt,
AbstractConditionalOperator>), internal::Matcher<Expr>
> (&hasCondition_Type0)(internal::Matcher<Expr>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasCondition0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5345 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasCondition0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasCondition0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> > hasCondition(internal::
Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasCondition0Matcher, void(::clang::ast_matchers::internal
::TypeList<IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt,
AbstractConditionalOperator>), internal::Matcher<Expr>
> (&hasCondition_Type0)(internal::Matcher<Expr>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasCondition0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5346 SwitchStmt, AbstractConditionalOperator),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasCondition0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasCondition0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> > hasCondition(internal::
Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasCondition0Matcher, void(::clang::ast_matchers::internal
::TypeList<IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt,
AbstractConditionalOperator>), internal::Matcher<Expr>
> (&hasCondition_Type0)(internal::Matcher<Expr>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasCondition0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5347 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasCondition0Matcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: explicit matcher_hasCondition0Matcher( internal::Matcher<
Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> > hasCondition(internal::
Matcher<Expr> const &InnerMatcher) { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasCondition0Matcher
, void(::clang::ast_matchers::internal::TypeList<IfStmt, ForStmt
, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator>
), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasCondition0Matcher, void(::clang::ast_matchers::internal
::TypeList<IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt,
AbstractConditionalOperator>), internal::Matcher<Expr>
> (&hasCondition_Type0)(internal::Matcher<Expr>
const &InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasCondition0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
5348 const Expr *const Condition = Node.getCond();
5349 return (Condition != nullptr &&
5350 InnerMatcher.matches(*Condition, Finder, Builder));
5351}
5352
5353/// Matches the then-statement of an if statement.
5354///
5355/// Examples matches the if statement
5356/// (matcher = ifStmt(hasThen(cxxBoolLiteral(equals(true)))))
5357/// \code
5358/// if (false) true; else false;
5359/// \endcode
5360AST_MATCHER_P(IfStmt, hasThen, internal::Matcher<Stmt>, InnerMatcher)namespace internal { class matcher_hasThen0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<IfStmt>
{ public: explicit matcher_hasThen0Matcher( internal::Matcher
<Stmt> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const IfStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Stmt> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<IfStmt> hasThen( internal::Matcher<
Stmt> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasThen0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<IfStmt> ( &hasThen_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_hasThen0Matcher
::matches( const IfStmt &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5361 const Stmt *const Then = Node.getThen();
5362 return (Then != nullptr && InnerMatcher.matches(*Then, Finder, Builder));
5363}
5364
5365/// Matches the else-statement of an if statement.
5366///
5367/// Examples matches the if statement
5368/// (matcher = ifStmt(hasElse(cxxBoolLiteral(equals(true)))))
5369/// \code
5370/// if (false) false; else true;
5371/// \endcode
5372AST_MATCHER_P(IfStmt, hasElse, internal::Matcher<Stmt>, InnerMatcher)namespace internal { class matcher_hasElse0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<IfStmt>
{ public: explicit matcher_hasElse0Matcher( internal::Matcher
<Stmt> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const IfStmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Stmt> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<IfStmt> hasElse( internal::Matcher<
Stmt> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasElse0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<IfStmt> ( &hasElse_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_hasElse0Matcher
::matches( const IfStmt &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5373 const Stmt *const Else = Node.getElse();
5374 return (Else != nullptr && InnerMatcher.matches(*Else, Finder, Builder));
5375}
5376
5377/// Matches if a node equals a previously bound node.
5378///
5379/// Matches a node if it equals the node previously bound to \p ID.
5380///
5381/// Given
5382/// \code
5383/// class X { int a; int b; };
5384/// \endcode
5385/// cxxRecordDecl(
5386/// has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
5387/// has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))
5388/// matches the class \c X, as \c a and \c b have the same type.
5389///
5390/// Note that when multiple matches are involved via \c forEach* matchers,
5391/// \c equalsBoundNodes acts as a filter.
5392/// For example:
5393/// compoundStmt(
5394/// forEachDescendant(varDecl().bind("d")),
5395/// forEachDescendant(declRefExpr(to(decl(equalsBoundNode("d"))))))
5396/// will trigger a match for each combination of variable declaration
5397/// and reference to that variable declaration within a compound statement.
5398AST_POLYMORPHIC_MATCHER_P(equalsBoundNode,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equalsBoundNode0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_equalsBoundNode0Matcher( std::string
const &AID) : ID(AID) {} bool matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: std::string ID; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> equalsBoundNode(std::string
const &ID) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equalsBoundNode0Matcher, void(::clang::
ast_matchers::internal::TypeList<Stmt, Decl, Type, QualType
>), std::string>(ID); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> (&equalsBoundNode_Type0
)(std::string const &ID); template <typename NodeType,
typename ParamT> bool internal:: matcher_equalsBoundNode0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5399 AST_POLYMORPHIC_SUPPORTED_TYPES(Stmt, Decl, Type,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equalsBoundNode0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_equalsBoundNode0Matcher( std::string
const &AID) : ID(AID) {} bool matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: std::string ID; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> equalsBoundNode(std::string
const &ID) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equalsBoundNode0Matcher, void(::clang::
ast_matchers::internal::TypeList<Stmt, Decl, Type, QualType
>), std::string>(ID); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> (&equalsBoundNode_Type0
)(std::string const &ID); template <typename NodeType,
typename ParamT> bool internal:: matcher_equalsBoundNode0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5400 QualType),namespace internal { template <typename NodeType, typename
ParamT> class matcher_equalsBoundNode0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_equalsBoundNode0Matcher( std::string
const &AID) : ID(AID) {} bool matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: std::string ID; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> equalsBoundNode(std::string
const &ID) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equalsBoundNode0Matcher, void(::clang::
ast_matchers::internal::TypeList<Stmt, Decl, Type, QualType
>), std::string>(ID); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> (&equalsBoundNode_Type0
)(std::string const &ID); template <typename NodeType,
typename ParamT> bool internal:: matcher_equalsBoundNode0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5401 std::string, ID)namespace internal { template <typename NodeType, typename
ParamT> class matcher_equalsBoundNode0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_equalsBoundNode0Matcher( std::string
const &AID) : ID(AID) {} bool matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: std::string ID; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> equalsBoundNode(std::string
const &ID) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equalsBoundNode0Matcher, void(::clang::
ast_matchers::internal::TypeList<Stmt, Decl, Type, QualType
>), std::string>(ID); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_equalsBoundNode0Matcher
, void(::clang::ast_matchers::internal::TypeList<Stmt, Decl
, Type, QualType>), std::string> (&equalsBoundNode_Type0
)(std::string const &ID); template <typename NodeType,
typename ParamT> bool internal:: matcher_equalsBoundNode0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5402 // FIXME: Figure out whether it makes sense to allow this
5403 // on any other node types.
5404 // For *Loc it probably does not make sense, as those seem
5405 // unique. For NestedNameSepcifier it might make sense, as
5406 // those also have pointer identity, but I'm not sure whether
5407 // they're ever reused.
5408 internal::NotEqualsBoundNodePredicate Predicate;
5409 Predicate.ID = ID;
5410 Predicate.Node = DynTypedNode::create(Node);
5411 return Builder->removeBindings(Predicate);
5412}
5413
5414/// Matches the condition variable statement in an if statement.
5415///
5416/// Given
5417/// \code
5418/// if (A* a = GetAPointer()) {}
5419/// \endcode
5420/// hasConditionVariableStatement(...)
5421/// matches 'A* a = GetAPointer()'.
5422AST_MATCHER_P(IfStmt, hasConditionVariableStatement,namespace internal { class matcher_hasConditionVariableStatement0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
IfStmt> { public: explicit matcher_hasConditionVariableStatement0Matcher
( internal::Matcher<DeclStmt> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const IfStmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<DeclStmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<IfStmt
> hasConditionVariableStatement( internal::Matcher<DeclStmt
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasConditionVariableStatement0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<IfStmt> ( &hasConditionVariableStatement_Type0)(internal
::Matcher<DeclStmt> const &InnerMatcher); inline bool
internal::matcher_hasConditionVariableStatement0Matcher::matches
( const IfStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5423 internal::Matcher<DeclStmt>, InnerMatcher)namespace internal { class matcher_hasConditionVariableStatement0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
IfStmt> { public: explicit matcher_hasConditionVariableStatement0Matcher
( internal::Matcher<DeclStmt> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const IfStmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<DeclStmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<IfStmt
> hasConditionVariableStatement( internal::Matcher<DeclStmt
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasConditionVariableStatement0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<IfStmt> ( &hasConditionVariableStatement_Type0)(internal
::Matcher<DeclStmt> const &InnerMatcher); inline bool
internal::matcher_hasConditionVariableStatement0Matcher::matches
( const IfStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5424 const DeclStmt* const DeclarationStatement =
5425 Node.getConditionVariableDeclStmt();
5426 return DeclarationStatement != nullptr &&
5427 InnerMatcher.matches(*DeclarationStatement, Finder, Builder);
5428}
5429
5430/// Matches the index expression of an array subscript expression.
5431///
5432/// Given
5433/// \code
5434/// int i[5];
5435/// void f() { i[1] = 42; }
5436/// \endcode
5437/// arraySubscriptExpression(hasIndex(integerLiteral()))
5438/// matches \c i[1] with the \c integerLiteral() matching \c 1
5439AST_MATCHER_P(ArraySubscriptExpr, hasIndex,namespace internal { class matcher_hasIndex0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<ArraySubscriptExpr
> { public: explicit matcher_hasIndex0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const ArraySubscriptExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ArraySubscriptExpr> hasIndex
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasIndex0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<ArraySubscriptExpr> ( &hasIndex_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasIndex0Matcher::matches( const ArraySubscriptExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5440 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasIndex0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<ArraySubscriptExpr
> { public: explicit matcher_hasIndex0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const ArraySubscriptExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ArraySubscriptExpr> hasIndex
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasIndex0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<ArraySubscriptExpr> ( &hasIndex_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasIndex0Matcher::matches( const ArraySubscriptExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5441 if (const Expr* Expression = Node.getIdx())
5442 return InnerMatcher.matches(*Expression, Finder, Builder);
5443 return false;
5444}
5445
5446/// Matches the base expression of an array subscript expression.
5447///
5448/// Given
5449/// \code
5450/// int i[5];
5451/// void f() { i[1] = 42; }
5452/// \endcode
5453/// arraySubscriptExpression(hasBase(implicitCastExpr(
5454/// hasSourceExpression(declRefExpr()))))
5455/// matches \c i[1] with the \c declRefExpr() matching \c i
5456AST_MATCHER_P(ArraySubscriptExpr, hasBase,namespace internal { class matcher_hasBase0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<ArraySubscriptExpr
> { public: explicit matcher_hasBase0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const ArraySubscriptExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ArraySubscriptExpr> hasBase
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasBase0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<ArraySubscriptExpr> ( &hasBase_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasBase0Matcher::matches( const ArraySubscriptExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5457 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasBase0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<ArraySubscriptExpr
> { public: explicit matcher_hasBase0Matcher( internal::Matcher
<Expr> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const ArraySubscriptExpr &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<ArraySubscriptExpr> hasBase
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasBase0Matcher(InnerMatcher)); } typedef ::clang::ast_matchers
::internal::Matcher<ArraySubscriptExpr> ( &hasBase_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasBase0Matcher::matches( const ArraySubscriptExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5458 if (const Expr* Expression = Node.getBase())
5459 return InnerMatcher.matches(*Expression, Finder, Builder);
5460 return false;
5461}
5462
5463/// Matches a 'for', 'while', 'do' statement or a function definition that has
5464/// a given body. Note that in case of functions this matcher only matches the
5465/// definition itself and not the other declarations of the same function.
5466///
5467/// Given
5468/// \code
5469/// for (;;) {}
5470/// \endcode
5471/// forStmt(hasBody(compoundStmt()))
5472/// matches 'for (;;) {}'
5473/// with compoundStmt()
5474/// matching '{}'
5475///
5476/// Given
5477/// \code
5478/// void f();
5479/// void f() {}
5480/// \endcode
5481/// functionDecl(hasBody(compoundStmt()))
5482/// matches 'void f() {}'
5483/// with compoundStmt()
5484/// matching '{}'
5485/// but does not match 'void f();'
5486AST_POLYMORPHIC_MATCHER_P(hasBody,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5487 AST_POLYMORPHIC_SUPPORTED_TYPES(DoStmt, ForStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5488 WhileStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5489 CXXForRangeStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5490 FunctionDecl),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5491 internal::Matcher<Stmt>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasBody0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasBody0Matcher( internal::Matcher<Stmt> const
&AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Stmt
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > hasBody(internal::Matcher<Stmt> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_hasBody0Matcher, void
(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> >(InnerMatcher); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasBody0Matcher
, void(::clang::ast_matchers::internal::TypeList<DoStmt, ForStmt
, WhileStmt, CXXForRangeStmt, FunctionDecl>), internal::Matcher
<Stmt> > (&hasBody_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); template <typename NodeType
, typename ParamT> bool internal:: matcher_hasBody0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5492 if (Finder->isTraversalIgnoringImplicitNodes() && isDefaultedHelper(&Node))
5493 return false;
5494 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node);
5495 return (Statement != nullptr &&
5496 InnerMatcher.matches(*Statement, Finder, Builder));
5497}
5498
5499/// Matches a function declaration that has a given body present in the AST.
5500/// Note that this matcher matches all the declarations of a function whose
5501/// body is present in the AST.
5502///
5503/// Given
5504/// \code
5505/// void f();
5506/// void f() {}
5507/// void g();
5508/// \endcode
5509/// functionDecl(hasAnyBody(compoundStmt()))
5510/// matches both 'void f();'
5511/// and 'void f() {}'
5512/// with compoundStmt()
5513/// matching '{}'
5514/// but does not match 'void g();'
5515AST_MATCHER_P(FunctionDecl, hasAnyBody,namespace internal { class matcher_hasAnyBody0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_hasAnyBody0Matcher( internal::
Matcher<Stmt> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const FunctionDecl &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Stmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FunctionDecl
> hasAnyBody( internal::Matcher<Stmt> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyBody0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<FunctionDecl> ( &
hasAnyBody_Type0)(internal::Matcher<Stmt> const &InnerMatcher
); inline bool internal::matcher_hasAnyBody0Matcher::matches(
const FunctionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5516 internal::Matcher<Stmt>, InnerMatcher)namespace internal { class matcher_hasAnyBody0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_hasAnyBody0Matcher( internal::
Matcher<Stmt> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const FunctionDecl &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Stmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FunctionDecl
> hasAnyBody( internal::Matcher<Stmt> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyBody0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<FunctionDecl> ( &
hasAnyBody_Type0)(internal::Matcher<Stmt> const &InnerMatcher
); inline bool internal::matcher_hasAnyBody0Matcher::matches(
const FunctionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5517 const Stmt *const Statement = Node.getBody();
5518 return (Statement != nullptr &&
5519 InnerMatcher.matches(*Statement, Finder, Builder));
5520}
5521
5522
5523/// Matches compound statements where at least one substatement matches
5524/// a given matcher. Also matches StmtExprs that have CompoundStmt as children.
5525///
5526/// Given
5527/// \code
5528/// { {}; 1+2; }
5529/// \endcode
5530/// hasAnySubstatement(compoundStmt())
5531/// matches '{ {}; 1+2; }'
5532/// with compoundStmt()
5533/// matching '{}'
5534AST_POLYMORPHIC_MATCHER_P(hasAnySubstatement,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnySubstatement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnySubstatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > hasAnySubstatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnySubstatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<CompoundStmt, StmtExpr>), internal
::Matcher<Stmt> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > (&hasAnySubstatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasAnySubstatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5535 AST_POLYMORPHIC_SUPPORTED_TYPES(CompoundStmt,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnySubstatement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnySubstatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > hasAnySubstatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnySubstatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<CompoundStmt, StmtExpr>), internal
::Matcher<Stmt> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > (&hasAnySubstatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasAnySubstatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5536 StmtExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnySubstatement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnySubstatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > hasAnySubstatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnySubstatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<CompoundStmt, StmtExpr>), internal
::Matcher<Stmt> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > (&hasAnySubstatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasAnySubstatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5537 internal::Matcher<Stmt>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasAnySubstatement0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasAnySubstatement0Matcher( internal
::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Stmt> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > hasAnySubstatement
(internal::Matcher<Stmt> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasAnySubstatement0Matcher, void(::clang::ast_matchers
::internal::TypeList<CompoundStmt, StmtExpr>), internal
::Matcher<Stmt> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasAnySubstatement0Matcher
, void(::clang::ast_matchers::internal::TypeList<CompoundStmt
, StmtExpr>), internal::Matcher<Stmt> > (&hasAnySubstatement_Type0
)(internal::Matcher<Stmt> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasAnySubstatement0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5538 const CompoundStmt *CS = CompoundStmtMatcher<NodeType>::get(Node);
5539 return CS && matchesFirstInPointerRange(InnerMatcher, CS->body_begin(),
5540 CS->body_end(), Finder,
5541 Builder) != CS->body_end();
5542}
5543
5544/// Checks that a compound statement contains a specific number of
5545/// child statements.
5546///
5547/// Example: Given
5548/// \code
5549/// { for (;;) {} }
5550/// \endcode
5551/// compoundStmt(statementCountIs(0)))
5552/// matches '{}'
5553/// but does not match the outer compound statement.
5554AST_MATCHER_P(CompoundStmt, statementCountIs, unsigned, N)namespace internal { class matcher_statementCountIs0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CompoundStmt> { public: explicit matcher_statementCountIs0Matcher
( unsigned const &AN) : N(AN) {} bool matches(const CompoundStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::Matcher<CompoundStmt> statementCountIs
( unsigned const &N) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_statementCountIs0Matcher
(N)); } typedef ::clang::ast_matchers::internal::Matcher<CompoundStmt
> ( &statementCountIs_Type0)(unsigned const &N); inline
bool internal::matcher_statementCountIs0Matcher::matches( const
CompoundStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5555 return Node.size() == N;
5556}
5557
5558/// Matches literals that are equal to the given value of type ValueT.
5559///
5560/// Given
5561/// \code
5562/// f('\0', false, 3.14, 42);
5563/// \endcode
5564/// characterLiteral(equals(0))
5565/// matches '\0'
5566/// cxxBoolLiteral(equals(false)) and cxxBoolLiteral(equals(0))
5567/// match false
5568/// floatLiteral(equals(3.14)) and floatLiteral(equals(314e-2))
5569/// match 3.14
5570/// integerLiteral(equals(42))
5571/// matches 42
5572///
5573/// Note that you cannot directly match a negative numeric literal because the
5574/// minus sign is not part of the literal: It is a unary operator whose operand
5575/// is the positive numeric literal. Instead, you must use a unaryOperator()
5576/// matcher to match the minus sign:
5577///
5578/// unaryOperator(hasOperatorName("-"),
5579/// hasUnaryOperand(integerLiteral(equals(13))))
5580///
5581/// Usable as: Matcher<CharacterLiteral>, Matcher<CXXBoolLiteralExpr>,
5582/// Matcher<FloatingLiteral>, Matcher<IntegerLiteral>
5583template <typename ValueT>
5584internal::PolymorphicMatcher<internal::ValueEqualsMatcher,
5585 void(internal::AllNodeBaseTypes), ValueT>
5586equals(const ValueT &Value) {
5587 return internal::PolymorphicMatcher<internal::ValueEqualsMatcher,
5588 void(internal::AllNodeBaseTypes), ValueT>(
5589 Value);
5590}
5591
5592AST_POLYMORPHIC_MATCHER_P_OVERLOAD(equals,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals0Matcher( bool const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: bool
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool> equals(bool const &Value) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool>(Value); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_equals0Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), bool> (&equals_Type0
)(bool const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5593 AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals0Matcher( bool const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: bool
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool> equals(bool const &Value) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool>(Value); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_equals0Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), bool> (&equals_Type0
)(bool const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5594 CXXBoolLiteralExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals0Matcher( bool const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: bool
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool> equals(bool const &Value) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool>(Value); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_equals0Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), bool> (&equals_Type0
)(bool const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5595 IntegerLiteral),namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals0Matcher( bool const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: bool
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool> equals(bool const &Value) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool>(Value); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_equals0Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), bool> (&equals_Type0
)(bool const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5596 bool, Value, 0)namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals0Matcher( bool const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: bool
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool> equals(bool const &Value) {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_equals0Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), bool>(Value); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_equals0Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), bool> (&equals_Type0
)(bool const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals0Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
5597 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value)
5598 .matchesNode(Node);
5599}
5600
5601AST_POLYMORPHIC_MATCHER_P_OVERLOAD(equals,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals1Matcher( unsigned const &AValue) : Value(
AValue) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: unsigned
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned> equals(unsigned const &
Value) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned>(Value); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_equals1Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), unsigned> (&
equals_Type1)(unsigned const &Value); template <typename
NodeType, typename ParamT> bool internal:: matcher_equals1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5602 AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals1Matcher( unsigned const &AValue) : Value(
AValue) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: unsigned
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned> equals(unsigned const &
Value) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned>(Value); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_equals1Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), unsigned> (&
equals_Type1)(unsigned const &Value); template <typename
NodeType, typename ParamT> bool internal:: matcher_equals1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5603 CXXBoolLiteralExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals1Matcher( unsigned const &AValue) : Value(
AValue) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: unsigned
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned> equals(unsigned const &
Value) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned>(Value); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_equals1Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), unsigned> (&
equals_Type1)(unsigned const &Value); template <typename
NodeType, typename ParamT> bool internal:: matcher_equals1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5604 IntegerLiteral),namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals1Matcher( unsigned const &AValue) : Value(
AValue) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: unsigned
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned> equals(unsigned const &
Value) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned>(Value); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_equals1Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), unsigned> (&
equals_Type1)(unsigned const &Value); template <typename
NodeType, typename ParamT> bool internal:: matcher_equals1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5605 unsigned, Value, 1)namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals1Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals1Matcher( unsigned const &AValue) : Value(
AValue) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: unsigned
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned> equals(unsigned const &
Value) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals1Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
IntegerLiteral>), unsigned>(Value); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_equals1Matcher
, void(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, IntegerLiteral>), unsigned> (&
equals_Type1)(unsigned const &Value); template <typename
NodeType, typename ParamT> bool internal:: matcher_equals1Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5606 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value)
5607 .matchesNode(Node);
5608}
5609
5610AST_POLYMORPHIC_MATCHER_P_OVERLOAD(equals,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5611 AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5612 CXXBoolLiteralExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5613 FloatingLiteral,namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5614 IntegerLiteral),namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5615 double, Value, 2)namespace internal { template <typename NodeType, typename
ParamT> class matcher_equals2Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_equals2Matcher( double const &AValue) : Value(AValue
) {} bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: double
Value; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> equals(double
const &Value) { return ::clang::ast_matchers::internal::
PolymorphicMatcher< internal::matcher_equals2Matcher, void
(::clang::ast_matchers::internal::TypeList<CharacterLiteral
, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral>), double
>(Value); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_equals2Matcher, void(::clang::ast_matchers
::internal::TypeList<CharacterLiteral, CXXBoolLiteralExpr,
FloatingLiteral, IntegerLiteral>), double> (&equals_Type2
)(double const &Value); template <typename NodeType, typename
ParamT> bool internal:: matcher_equals2Matcher<NodeType
, ParamT>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
5616 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value)
5617 .matchesNode(Node);
5618}
5619
5620/// Matches the operator Name of operator expressions (binary or
5621/// unary).
5622///
5623/// Example matches a || b (matcher = binaryOperator(hasOperatorName("||")))
5624/// \code
5625/// !(a || b)
5626/// \endcode
5627AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasOperatorName0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasOperatorName0Matcher( std::string
const &AName) : Name(AName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Name; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasOperatorName0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, UnaryOperator>), std::string> hasOperatorName(std::string
const &Name) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
>(Name); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
> (&hasOperatorName_Type0)(std::string const &Name
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasOperatorName0Matcher<NodeType, ParamT>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5628 hasOperatorName,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasOperatorName0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasOperatorName0Matcher( std::string
const &AName) : Name(AName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Name; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasOperatorName0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, UnaryOperator>), std::string> hasOperatorName(std::string
const &Name) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
>(Name); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
> (&hasOperatorName_Type0)(std::string const &Name
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasOperatorName0Matcher<NodeType, ParamT>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5629 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasOperatorName0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasOperatorName0Matcher( std::string
const &AName) : Name(AName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Name; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasOperatorName0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, UnaryOperator>), std::string> hasOperatorName(std::string
const &Name) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
>(Name); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
> (&hasOperatorName_Type0)(std::string const &Name
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasOperatorName0Matcher<NodeType, ParamT>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5630 CXXRewrittenBinaryOperator, UnaryOperator),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasOperatorName0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasOperatorName0Matcher( std::string
const &AName) : Name(AName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Name; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasOperatorName0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, UnaryOperator>), std::string> hasOperatorName(std::string
const &Name) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
>(Name); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
> (&hasOperatorName_Type0)(std::string const &Name
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasOperatorName0Matcher<NodeType, ParamT>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5631 std::string, Name)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasOperatorName0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasOperatorName0Matcher( std::string
const &AName) : Name(AName) {} bool matches(const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: std::string Name; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasOperatorName0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, UnaryOperator>), std::string> hasOperatorName(std::string
const &Name) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
>(Name); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperatorName0Matcher, void(::clang::
ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator, UnaryOperator>), std::string
> (&hasOperatorName_Type0)(std::string const &Name
); template <typename NodeType, typename ParamT> bool internal
:: matcher_hasOperatorName0Matcher<NodeType, ParamT>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5632 if (std::optional<StringRef> OpName = internal::getOpName(Node))
5633 return *OpName == Name;
5634 return false;
5635}
5636
5637/// Matches operator expressions (binary or unary) that have any of the
5638/// specified names.
5639///
5640/// hasAnyOperatorName("+", "-")
5641/// Is equivalent to
5642/// anyOf(hasOperatorName("+"), hasOperatorName("-"))
5643extern const internal::VariadicFunction<
5644 internal::PolymorphicMatcher<internal::HasAnyOperatorNameMatcher,
5645 AST_POLYMORPHIC_SUPPORTED_TYPES(void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, UnaryOperator
>)
5646 BinaryOperator, CXXOperatorCallExpr,void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, UnaryOperator
>)
5647 CXXRewrittenBinaryOperator, UnaryOperator)void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, UnaryOperator
>)
,
5648 std::vector<std::string>>,
5649 StringRef, internal::hasAnyOperatorNameFunc>
5650 hasAnyOperatorName;
5651
5652/// Matches all kinds of assignment operators.
5653///
5654/// Example 1: matches a += b (matcher = binaryOperator(isAssignmentOperator()))
5655/// \code
5656/// if (a == b)
5657/// a += b;
5658/// \endcode
5659///
5660/// Example 2: matches s1 = s2
5661/// (matcher = cxxOperatorCallExpr(isAssignmentOperator()))
5662/// \code
5663/// struct S { S& operator=(const S&); };
5664/// void x() { S s1, s2; s1 = s2; }
5665/// \endcode
5666AST_POLYMORPHIC_MATCHER(namespace internal { template <typename NodeType> class
matcher_isAssignmentOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isAssignmentOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isAssignmentOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isAssignmentOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isAssignmentOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5667 isAssignmentOperator,namespace internal { template <typename NodeType> class
matcher_isAssignmentOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isAssignmentOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isAssignmentOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isAssignmentOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isAssignmentOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5668 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType> class
matcher_isAssignmentOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isAssignmentOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isAssignmentOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isAssignmentOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isAssignmentOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5669 CXXRewrittenBinaryOperator))namespace internal { template <typename NodeType> class
matcher_isAssignmentOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isAssignmentOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isAssignmentOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isAssignmentOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isAssignmentOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5670 return Node.isAssignmentOp();
5671}
5672
5673/// Matches comparison operators.
5674///
5675/// Example 1: matches a == b (matcher = binaryOperator(isComparisonOperator()))
5676/// \code
5677/// if (a == b)
5678/// a += b;
5679/// \endcode
5680///
5681/// Example 2: matches s1 < s2
5682/// (matcher = cxxOperatorCallExpr(isComparisonOperator()))
5683/// \code
5684/// struct S { bool operator<(const S& other); };
5685/// void x(S s1, S s2) { bool b1 = s1 < s2; }
5686/// \endcode
5687AST_POLYMORPHIC_MATCHER(namespace internal { template <typename NodeType> class
matcher_isComparisonOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isComparisonOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isComparisonOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isComparisonOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isComparisonOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5688 isComparisonOperator,namespace internal { template <typename NodeType> class
matcher_isComparisonOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isComparisonOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isComparisonOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isComparisonOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isComparisonOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5689 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType> class
matcher_isComparisonOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isComparisonOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isComparisonOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isComparisonOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isComparisonOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5690 CXXRewrittenBinaryOperator))namespace internal { template <typename NodeType> class
matcher_isComparisonOperatorMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isComparisonOperatorMatcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>)> isComparisonOperator
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isComparisonOperatorMatcher, void(::clang
::ast_matchers::internal::TypeList<BinaryOperator, CXXOperatorCallExpr
, CXXRewrittenBinaryOperator>)>(); } template <typename
NodeType> bool internal::matcher_isComparisonOperatorMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5691 return Node.isComparisonOp();
5692}
5693
5694/// Matches the left hand side of binary operator expressions.
5695///
5696/// Example matches a (matcher = binaryOperator(hasLHS()))
5697/// \code
5698/// a || b
5699/// \endcode
5700AST_POLYMORPHIC_MATCHER_P(hasLHS,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasLHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasLHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasLHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasLHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasLHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasLHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasLHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasLHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5701 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasLHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasLHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasLHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasLHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasLHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasLHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasLHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasLHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5702 BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasLHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasLHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasLHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasLHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasLHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasLHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasLHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasLHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5703 CXXRewrittenBinaryOperator, ArraySubscriptExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasLHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasLHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasLHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasLHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasLHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasLHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasLHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasLHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5704 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasLHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasLHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasLHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasLHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasLHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasLHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasLHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasLHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
5705 const Expr *LeftHandSide = internal::getLHS(Node);
5706 return (LeftHandSide != nullptr &&
5707 InnerMatcher.matches(*LeftHandSide, Finder, Builder));
5708}
5709
5710/// Matches the right hand side of binary operator expressions.
5711///
5712/// Example matches b (matcher = binaryOperator(hasRHS()))
5713/// \code
5714/// a || b
5715/// \endcode
5716AST_POLYMORPHIC_MATCHER_P(hasRHS,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasRHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasRHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasRHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasRHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasRHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasRHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasRHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasRHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5717 AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasRHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasRHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasRHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasRHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasRHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasRHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasRHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasRHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5718 BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasRHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasRHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasRHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasRHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasRHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasRHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasRHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasRHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5719 CXXRewrittenBinaryOperator, ArraySubscriptExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasRHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasRHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasRHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasRHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasRHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasRHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasRHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasRHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
5720 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasRHS0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasRHS0Matcher( internal::Matcher<Expr> const &
AInnerMatcher) : InnerMatcher(AInnerMatcher) {} bool matches(
const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasRHS0Matcher, void
(::clang::ast_matchers::internal::TypeList<BinaryOperator,
CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> > hasRHS(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasRHS0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasRHS0Matcher, void(::clang::ast_matchers::internal
::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
, ArraySubscriptExpr>), internal::Matcher<Expr> >
(&hasRHS_Type0)(internal::Matcher<Expr> const &
InnerMatcher); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasRHS0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
5721 const Expr *RightHandSide = internal::getRHS(Node);
5722 return (RightHandSide != nullptr &&
5723 InnerMatcher.matches(*RightHandSide, Finder, Builder));
5724}
5725
5726/// Matches if either the left hand side or the right hand side of a
5727/// binary operator matches.
5728AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasEitherOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasEitherOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > hasEitherOperand(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > (&hasEitherOperand_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasEitherOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5729 hasEitherOperand,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasEitherOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasEitherOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > hasEitherOperand(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > (&hasEitherOperand_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasEitherOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5730 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasEitherOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasEitherOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > hasEitherOperand(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > (&hasEitherOperand_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasEitherOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5731 CXXRewrittenBinaryOperator),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasEitherOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasEitherOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > hasEitherOperand(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > (&hasEitherOperand_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasEitherOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5732 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasEitherOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasEitherOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > hasEitherOperand(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasEitherOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr> > (&hasEitherOperand_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasEitherOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5733 return internal::VariadicDynCastAllOfMatcher<Stmt, NodeType>()(
5734 anyOf(hasLHS(InnerMatcher), hasRHS(InnerMatcher)))
5735 .matches(Node, Finder, Builder);
5736}
5737
5738/// Matches if both matchers match with opposite sides of the binary operator.
5739///
5740/// Example matcher = binaryOperator(hasOperands(integerLiteral(equals(1),
5741/// integerLiteral(equals(2)))
5742/// \code
5743/// 1 + 2 // Match
5744/// 2 + 1 // Match
5745/// 1 + 1 // No match
5746/// 2 + 2 // No match
5747/// \endcode
5748AST_POLYMORPHIC_MATCHER_P2(namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasOperands0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasOperands0Matcher(internal::
Matcher<Expr> const &AMatcher1, internal::Matcher<
Expr> const &AMatcher2) : Matcher1(AMatcher1), Matcher2
(AMatcher2) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> Matcher1; internal::Matcher<
Expr> Matcher2; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> > hasOperands
(internal::Matcher<Expr> const &Matcher1, internal::
Matcher<Expr> const &Matcher2) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> >(Matcher1
, Matcher2); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperands0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
>), internal::Matcher<Expr>, internal::Matcher<Expr
> > (&hasOperands_Type0)( internal::Matcher<Expr
> const &Matcher1, internal::Matcher<Expr> const
&Matcher2); template <typename NodeType, typename ParamT1
, typename ParamT2> bool internal::matcher_hasOperands0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5749 hasOperands,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasOperands0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasOperands0Matcher(internal::
Matcher<Expr> const &AMatcher1, internal::Matcher<
Expr> const &AMatcher2) : Matcher1(AMatcher1), Matcher2
(AMatcher2) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> Matcher1; internal::Matcher<
Expr> Matcher2; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> > hasOperands
(internal::Matcher<Expr> const &Matcher1, internal::
Matcher<Expr> const &Matcher2) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> >(Matcher1
, Matcher2); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperands0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
>), internal::Matcher<Expr>, internal::Matcher<Expr
> > (&hasOperands_Type0)( internal::Matcher<Expr
> const &Matcher1, internal::Matcher<Expr> const
&Matcher2); template <typename NodeType, typename ParamT1
, typename ParamT2> bool internal::matcher_hasOperands0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5750 AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasOperands0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasOperands0Matcher(internal::
Matcher<Expr> const &AMatcher1, internal::Matcher<
Expr> const &AMatcher2) : Matcher1(AMatcher1), Matcher2
(AMatcher2) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> Matcher1; internal::Matcher<
Expr> Matcher2; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> > hasOperands
(internal::Matcher<Expr> const &Matcher1, internal::
Matcher<Expr> const &Matcher2) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> >(Matcher1
, Matcher2); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperands0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
>), internal::Matcher<Expr>, internal::Matcher<Expr
> > (&hasOperands_Type0)( internal::Matcher<Expr
> const &Matcher1, internal::Matcher<Expr> const
&Matcher2); template <typename NodeType, typename ParamT1
, typename ParamT2> bool internal::matcher_hasOperands0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5751 CXXRewrittenBinaryOperator),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasOperands0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasOperands0Matcher(internal::
Matcher<Expr> const &AMatcher1, internal::Matcher<
Expr> const &AMatcher2) : Matcher1(AMatcher1), Matcher2
(AMatcher2) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> Matcher1; internal::Matcher<
Expr> Matcher2; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> > hasOperands
(internal::Matcher<Expr> const &Matcher1, internal::
Matcher<Expr> const &Matcher2) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> >(Matcher1
, Matcher2); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperands0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
>), internal::Matcher<Expr>, internal::Matcher<Expr
> > (&hasOperands_Type0)( internal::Matcher<Expr
> const &Matcher1, internal::Matcher<Expr> const
&Matcher2); template <typename NodeType, typename ParamT1
, typename ParamT2> bool internal::matcher_hasOperands0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5752 internal::Matcher<Expr>, Matcher1, internal::Matcher<Expr>, Matcher2)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasOperands0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasOperands0Matcher(internal::
Matcher<Expr> const &AMatcher1, internal::Matcher<
Expr> const &AMatcher2) : Matcher1(AMatcher1), Matcher2
(AMatcher2) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> Matcher1; internal::Matcher<
Expr> Matcher2; }; } inline ::clang::ast_matchers::internal
::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> > hasOperands
(internal::Matcher<Expr> const &Matcher1, internal::
Matcher<Expr> const &Matcher2) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasOperands0Matcher
, void(::clang::ast_matchers::internal::TypeList<BinaryOperator
, CXXOperatorCallExpr, CXXRewrittenBinaryOperator>), internal
::Matcher<Expr>, internal::Matcher<Expr> >(Matcher1
, Matcher2); } typedef ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasOperands0Matcher, void(::clang::ast_matchers
::internal::TypeList<BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator
>), internal::Matcher<Expr>, internal::Matcher<Expr
> > (&hasOperands_Type0)( internal::Matcher<Expr
> const &Matcher1, internal::Matcher<Expr> const
&Matcher2); template <typename NodeType, typename ParamT1
, typename ParamT2> bool internal::matcher_hasOperands0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5753 return internal::VariadicDynCastAllOfMatcher<Stmt, NodeType>()(
5754 anyOf(allOf(hasLHS(Matcher1), hasRHS(Matcher2)),
5755 allOf(hasLHS(Matcher2), hasRHS(Matcher1))))
5756 .matches(Node, Finder, Builder);
5757}
5758
5759/// Matches if the operand of a unary operator matches.
5760///
5761/// Example matches true (matcher = hasUnaryOperand(
5762/// cxxBoolLiteral(equals(true))))
5763/// \code
5764/// !true
5765/// \endcode
5766AST_POLYMORPHIC_MATCHER_P(hasUnaryOperand,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasUnaryOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasUnaryOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasUnaryOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<UnaryOperator
, CXXOperatorCallExpr>), internal::Matcher<Expr> >
hasUnaryOperand(internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasUnaryOperand0Matcher, void(::clang::
ast_matchers::internal::TypeList<UnaryOperator, CXXOperatorCallExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasUnaryOperand0Matcher, void(::clang::ast_matchers
::internal::TypeList<UnaryOperator, CXXOperatorCallExpr>
), internal::Matcher<Expr> > (&hasUnaryOperand_Type0
)(internal::Matcher<Expr> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasUnaryOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5767 AST_POLYMORPHIC_SUPPORTED_TYPES(UnaryOperator,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasUnaryOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasUnaryOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasUnaryOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<UnaryOperator
, CXXOperatorCallExpr>), internal::Matcher<Expr> >
hasUnaryOperand(internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasUnaryOperand0Matcher, void(::clang::
ast_matchers::internal::TypeList<UnaryOperator, CXXOperatorCallExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasUnaryOperand0Matcher, void(::clang::ast_matchers
::internal::TypeList<UnaryOperator, CXXOperatorCallExpr>
), internal::Matcher<Expr> > (&hasUnaryOperand_Type0
)(internal::Matcher<Expr> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasUnaryOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5768 CXXOperatorCallExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasUnaryOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasUnaryOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasUnaryOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<UnaryOperator
, CXXOperatorCallExpr>), internal::Matcher<Expr> >
hasUnaryOperand(internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasUnaryOperand0Matcher, void(::clang::
ast_matchers::internal::TypeList<UnaryOperator, CXXOperatorCallExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasUnaryOperand0Matcher, void(::clang::ast_matchers
::internal::TypeList<UnaryOperator, CXXOperatorCallExpr>
), internal::Matcher<Expr> > (&hasUnaryOperand_Type0
)(internal::Matcher<Expr> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasUnaryOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5769 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasUnaryOperand0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<NodeType>
{ public: explicit matcher_hasUnaryOperand0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasUnaryOperand0Matcher
, void(::clang::ast_matchers::internal::TypeList<UnaryOperator
, CXXOperatorCallExpr>), internal::Matcher<Expr> >
hasUnaryOperand(internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasUnaryOperand0Matcher, void(::clang::
ast_matchers::internal::TypeList<UnaryOperator, CXXOperatorCallExpr
>), internal::Matcher<Expr> >(InnerMatcher); } typedef
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasUnaryOperand0Matcher, void(::clang::ast_matchers
::internal::TypeList<UnaryOperator, CXXOperatorCallExpr>
), internal::Matcher<Expr> > (&hasUnaryOperand_Type0
)(internal::Matcher<Expr> const &InnerMatcher); template
<typename NodeType, typename ParamT> bool internal:: matcher_hasUnaryOperand0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5770 const Expr *const Operand = internal::getSubExpr(Node);
5771 return (Operand != nullptr &&
5772 InnerMatcher.matches(*Operand, Finder, Builder));
5773}
5774
5775/// Matches if the cast's source expression
5776/// or opaque value's source expression matches the given matcher.
5777///
5778/// Example 1: matches "a string"
5779/// (matcher = castExpr(hasSourceExpression(cxxConstructExpr())))
5780/// \code
5781/// class URL { URL(string); };
5782/// URL url = "a string";
5783/// \endcode
5784///
5785/// Example 2: matches 'b' (matcher =
5786/// opaqueValueExpr(hasSourceExpression(implicitCastExpr(declRefExpr())))
5787/// \code
5788/// int a = b ?: 1;
5789/// \endcode
5790AST_POLYMORPHIC_MATCHER_P(hasSourceExpression,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSourceExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasSourceExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > hasSourceExpression
(internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSourceExpression0Matcher, void(::clang::ast_matchers
::internal::TypeList<CastExpr, OpaqueValueExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > (&
hasSourceExpression_Type0)(internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasSourceExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5791 AST_POLYMORPHIC_SUPPORTED_TYPES(CastExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSourceExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasSourceExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > hasSourceExpression
(internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSourceExpression0Matcher, void(::clang::ast_matchers
::internal::TypeList<CastExpr, OpaqueValueExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > (&
hasSourceExpression_Type0)(internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasSourceExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5792 OpaqueValueExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSourceExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasSourceExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > hasSourceExpression
(internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSourceExpression0Matcher, void(::clang::ast_matchers
::internal::TypeList<CastExpr, OpaqueValueExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > (&
hasSourceExpression_Type0)(internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasSourceExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
5793 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSourceExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasSourceExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > hasSourceExpression
(internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSourceExpression0Matcher, void(::clang::ast_matchers
::internal::TypeList<CastExpr, OpaqueValueExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasSourceExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<CastExpr,
OpaqueValueExpr>), internal::Matcher<Expr> > (&
hasSourceExpression_Type0)(internal::Matcher<Expr> const
&InnerMatcher); template <typename NodeType, typename
ParamT> bool internal:: matcher_hasSourceExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
5794 const Expr *const SubExpression =
5795 internal::GetSourceExpressionMatcher<NodeType>::get(Node);
5796 return (SubExpression != nullptr &&
5797 InnerMatcher.matches(*SubExpression, Finder, Builder));
5798}
5799
5800/// Matches casts that has a given cast kind.
5801///
5802/// Example: matches the implicit cast around \c 0
5803/// (matcher = castExpr(hasCastKind(CK_NullToPointer)))
5804/// \code
5805/// int *p = 0;
5806/// \endcode
5807///
5808/// If the matcher is use from clang-query, CastKind parameter
5809/// should be passed as a quoted string. e.g., hasCastKind("CK_NullToPointer").
5810AST_MATCHER_P(CastExpr, hasCastKind, CastKind, Kind)namespace internal { class matcher_hasCastKind0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CastExpr
> { public: explicit matcher_hasCastKind0Matcher( CastKind
const &AKind) : Kind(AKind) {} bool matches(const CastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: CastKind Kind; }; } inline
::clang::ast_matchers::internal::Matcher<CastExpr> hasCastKind
( CastKind const &Kind) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_hasCastKind0Matcher(Kind
)); } typedef ::clang::ast_matchers::internal::Matcher<CastExpr
> ( &hasCastKind_Type0)(CastKind const &Kind); inline
bool internal::matcher_hasCastKind0Matcher::matches( const CastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5811 return Node.getCastKind() == Kind;
5812}
5813
5814/// Matches casts whose destination type matches a given matcher.
5815///
5816/// (Note: Clang's AST refers to other conversions as "casts" too, and calls
5817/// actual casts "explicit" casts.)
5818AST_MATCHER_P(ExplicitCastExpr, hasDestinationType,namespace internal { class matcher_hasDestinationType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ExplicitCastExpr> { public: explicit matcher_hasDestinationType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const ExplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ExplicitCastExpr> hasDestinationType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasDestinationType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<ExplicitCastExpr> ( &hasDestinationType_Type0)(internal
::Matcher<QualType> const &InnerMatcher); inline bool
internal::matcher_hasDestinationType0Matcher::matches( const
ExplicitCastExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5819 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_hasDestinationType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ExplicitCastExpr> { public: explicit matcher_hasDestinationType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const ExplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ExplicitCastExpr> hasDestinationType( internal
::Matcher<QualType> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasDestinationType0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<ExplicitCastExpr> ( &hasDestinationType_Type0)(internal
::Matcher<QualType> const &InnerMatcher); inline bool
internal::matcher_hasDestinationType0Matcher::matches( const
ExplicitCastExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5820 const QualType NodeType = Node.getTypeAsWritten();
5821 return InnerMatcher.matches(NodeType, Finder, Builder);
5822}
5823
5824/// Matches implicit casts whose destination type matches a given
5825/// matcher.
5826AST_MATCHER_P(ImplicitCastExpr, hasImplicitDestinationType,namespace internal { class matcher_hasImplicitDestinationType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ImplicitCastExpr> { public: explicit matcher_hasImplicitDestinationType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const ImplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ImplicitCastExpr> hasImplicitDestinationType(
internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasImplicitDestinationType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<ImplicitCastExpr
> ( &hasImplicitDestinationType_Type0)(internal::Matcher
<QualType> const &InnerMatcher); inline bool internal
::matcher_hasImplicitDestinationType0Matcher::matches( const ImplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5827 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_hasImplicitDestinationType0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
ImplicitCastExpr> { public: explicit matcher_hasImplicitDestinationType0Matcher
( internal::Matcher<QualType> const &AInnerMatcher)
: InnerMatcher(AInnerMatcher) {} bool matches(const ImplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<QualType
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ImplicitCastExpr> hasImplicitDestinationType(
internal::Matcher<QualType> const &InnerMatcher) {
return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasImplicitDestinationType0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<ImplicitCastExpr
> ( &hasImplicitDestinationType_Type0)(internal::Matcher
<QualType> const &InnerMatcher); inline bool internal
::matcher_hasImplicitDestinationType0Matcher::matches( const ImplicitCastExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5828 return InnerMatcher.matches(Node.getType(), Finder, Builder);
5829}
5830
5831/// Matches TagDecl object that are spelled with "struct."
5832///
5833/// Example matches S, but not C, U or E.
5834/// \code
5835/// struct S {};
5836/// class C {};
5837/// union U {};
5838/// enum E {};
5839/// \endcode
5840AST_MATCHER(TagDecl, isStruct)namespace internal { class matcher_isStructMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<TagDecl>
{ public: explicit matcher_isStructMatcher() = default; bool
matches(const TagDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<TagDecl> isStruct() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_isStructMatcher
()); } inline bool internal::matcher_isStructMatcher::matches
( const TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5841 return Node.isStruct();
5842}
5843
5844/// Matches TagDecl object that are spelled with "union."
5845///
5846/// Example matches U, but not C, S or E.
5847/// \code
5848/// struct S {};
5849/// class C {};
5850/// union U {};
5851/// enum E {};
5852/// \endcode
5853AST_MATCHER(TagDecl, isUnion)namespace internal { class matcher_isUnionMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<TagDecl>
{ public: explicit matcher_isUnionMatcher() = default; bool matches
(const TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<TagDecl> isUnion() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_isUnionMatcher
()); } inline bool internal::matcher_isUnionMatcher::matches(
const TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5854 return Node.isUnion();
5855}
5856
5857/// Matches TagDecl object that are spelled with "class."
5858///
5859/// Example matches C, but not S, U or E.
5860/// \code
5861/// struct S {};
5862/// class C {};
5863/// union U {};
5864/// enum E {};
5865/// \endcode
5866AST_MATCHER(TagDecl, isClass)namespace internal { class matcher_isClassMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<TagDecl>
{ public: explicit matcher_isClassMatcher() = default; bool matches
(const TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<TagDecl> isClass() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_isClassMatcher
()); } inline bool internal::matcher_isClassMatcher::matches(
const TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5867 return Node.isClass();
5868}
5869
5870/// Matches TagDecl object that are spelled with "enum."
5871///
5872/// Example matches E, but not C, S or U.
5873/// \code
5874/// struct S {};
5875/// class C {};
5876/// union U {};
5877/// enum E {};
5878/// \endcode
5879AST_MATCHER(TagDecl, isEnum)namespace internal { class matcher_isEnumMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<TagDecl> { public
: explicit matcher_isEnumMatcher() = default; bool matches(const
TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<TagDecl> isEnum() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_isEnumMatcher(
)); } inline bool internal::matcher_isEnumMatcher::matches( const
TagDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5880 return Node.isEnum();
5881}
5882
5883/// Matches the true branch expression of a conditional operator.
5884///
5885/// Example 1 (conditional ternary operator): matches a
5886/// \code
5887/// condition ? a : b
5888/// \endcode
5889///
5890/// Example 2 (conditional binary operator): matches opaqueValueExpr(condition)
5891/// \code
5892/// condition ?: b
5893/// \endcode
5894AST_MATCHER_P(AbstractConditionalOperator, hasTrueExpression,namespace internal { class matcher_hasTrueExpression0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
AbstractConditionalOperator> { public: explicit matcher_hasTrueExpression0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const AbstractConditionalOperator
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<AbstractConditionalOperator> hasTrueExpression
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasTrueExpression0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<AbstractConditionalOperator
> ( &hasTrueExpression_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasTrueExpression0Matcher
::matches( const AbstractConditionalOperator &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5895 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasTrueExpression0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
AbstractConditionalOperator> { public: explicit matcher_hasTrueExpression0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const AbstractConditionalOperator
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<AbstractConditionalOperator> hasTrueExpression
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasTrueExpression0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<AbstractConditionalOperator
> ( &hasTrueExpression_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasTrueExpression0Matcher
::matches( const AbstractConditionalOperator &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5896 const Expr *Expression = Node.getTrueExpr();
5897 return (Expression != nullptr &&
5898 InnerMatcher.matches(*Expression, Finder, Builder));
5899}
5900
5901/// Matches the false branch expression of a conditional operator
5902/// (binary or ternary).
5903///
5904/// Example matches b
5905/// \code
5906/// condition ? a : b
5907/// condition ?: b
5908/// \endcode
5909AST_MATCHER_P(AbstractConditionalOperator, hasFalseExpression,namespace internal { class matcher_hasFalseExpression0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
AbstractConditionalOperator> { public: explicit matcher_hasFalseExpression0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const AbstractConditionalOperator
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<AbstractConditionalOperator> hasFalseExpression
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasFalseExpression0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<AbstractConditionalOperator
> ( &hasFalseExpression_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasFalseExpression0Matcher
::matches( const AbstractConditionalOperator &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
5910 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasFalseExpression0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
AbstractConditionalOperator> { public: explicit matcher_hasFalseExpression0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const AbstractConditionalOperator
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<Expr
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<AbstractConditionalOperator> hasFalseExpression
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasFalseExpression0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<AbstractConditionalOperator
> ( &hasFalseExpression_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasFalseExpression0Matcher
::matches( const AbstractConditionalOperator &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
5911 const Expr *Expression = Node.getFalseExpr();
5912 return (Expression != nullptr &&
5913 InnerMatcher.matches(*Expression, Finder, Builder));
5914}
5915
5916/// Matches if a declaration has a body attached.
5917///
5918/// Example matches A, va, fa
5919/// \code
5920/// class A {};
5921/// class B; // Doesn't match, as it has no body.
5922/// int va;
5923/// extern int vb; // Doesn't match, as it doesn't define the variable.
5924/// void fa() {}
5925/// void fb(); // Doesn't match, as it has no body.
5926/// @interface X
5927/// - (void)ma; // Doesn't match, interface is declaration.
5928/// @end
5929/// @implementation X
5930/// - (void)ma {}
5931/// @end
5932/// \endcode
5933///
5934/// Usable as: Matcher<TagDecl>, Matcher<VarDecl>, Matcher<FunctionDecl>,
5935/// Matcher<ObjCMethodDecl>
5936AST_POLYMORPHIC_MATCHER(isDefinition,namespace internal { template <typename NodeType> class
matcher_isDefinitionMatcher : public ::clang::ast_matchers::
internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDefinitionMatcher
, void(::clang::ast_matchers::internal::TypeList<TagDecl, VarDecl
, ObjCMethodDecl, FunctionDecl>)> isDefinition() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDefinitionMatcher, void(::clang::ast_matchers::internal
::TypeList<TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl>
)>(); } template <typename NodeType> bool internal::
matcher_isDefinitionMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5937 AST_POLYMORPHIC_SUPPORTED_TYPES(TagDecl, VarDecl,namespace internal { template <typename NodeType> class
matcher_isDefinitionMatcher : public ::clang::ast_matchers::
internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDefinitionMatcher
, void(::clang::ast_matchers::internal::TypeList<TagDecl, VarDecl
, ObjCMethodDecl, FunctionDecl>)> isDefinition() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDefinitionMatcher, void(::clang::ast_matchers::internal
::TypeList<TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl>
)>(); } template <typename NodeType> bool internal::
matcher_isDefinitionMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5938 ObjCMethodDecl,namespace internal { template <typename NodeType> class
matcher_isDefinitionMatcher : public ::clang::ast_matchers::
internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDefinitionMatcher
, void(::clang::ast_matchers::internal::TypeList<TagDecl, VarDecl
, ObjCMethodDecl, FunctionDecl>)> isDefinition() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDefinitionMatcher, void(::clang::ast_matchers::internal
::TypeList<TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl>
)>(); } template <typename NodeType> bool internal::
matcher_isDefinitionMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
5939 FunctionDecl))namespace internal { template <typename NodeType> class
matcher_isDefinitionMatcher : public ::clang::ast_matchers::
internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isDefinitionMatcher
, void(::clang::ast_matchers::internal::TypeList<TagDecl, VarDecl
, ObjCMethodDecl, FunctionDecl>)> isDefinition() { return
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isDefinitionMatcher, void(::clang::ast_matchers::internal
::TypeList<TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl>
)>(); } template <typename NodeType> bool internal::
matcher_isDefinitionMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
5940 return Node.isThisDeclarationADefinition();
5941}
5942
5943/// Matches if a function declaration is variadic.
5944///
5945/// Example matches f, but not g or h. The function i will not match, even when
5946/// compiled in C mode.
5947/// \code
5948/// void f(...);
5949/// void g(int);
5950/// template <typename... Ts> void h(Ts...);
5951/// void i();
5952/// \endcode
5953AST_MATCHER(FunctionDecl, isVariadic)namespace internal { class matcher_isVariadicMatcher : public
::clang::ast_matchers::internal::MatcherInterface<FunctionDecl
> { public: explicit matcher_isVariadicMatcher() = default
; bool matches(const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<FunctionDecl>
isVariadic() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isVariadicMatcher()); } inline bool internal
::matcher_isVariadicMatcher::matches( const FunctionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5954 return Node.isVariadic();
5955}
5956
5957/// Matches the class declaration that the given method declaration
5958/// belongs to.
5959///
5960/// FIXME: Generalize this for other kinds of declarations.
5961/// FIXME: What other kind of declarations would we need to generalize
5962/// this to?
5963///
5964/// Example matches A() in the last line
5965/// (matcher = cxxConstructExpr(hasDeclaration(cxxMethodDecl(
5966/// ofClass(hasName("A"))))))
5967/// \code
5968/// class A {
5969/// public:
5970/// A();
5971/// };
5972/// A a = A();
5973/// \endcode
5974AST_MATCHER_P(CXXMethodDecl, ofClass,namespace internal { class matcher_ofClass0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXMethodDecl
> { public: explicit matcher_ofClass0Matcher( internal::Matcher
<CXXRecordDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMethodDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<CXXRecordDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXMethodDecl> ofClass( internal::Matcher<
CXXRecordDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_ofClass0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMethodDecl> ( &ofClass_Type0)(internal::Matcher
<CXXRecordDecl> const &InnerMatcher); inline bool internal
::matcher_ofClass0Matcher::matches( const CXXMethodDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
5975 internal::Matcher<CXXRecordDecl>, InnerMatcher)namespace internal { class matcher_ofClass0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXMethodDecl
> { public: explicit matcher_ofClass0Matcher( internal::Matcher
<CXXRecordDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXMethodDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<CXXRecordDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXMethodDecl> ofClass( internal::Matcher<
CXXRecordDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_ofClass0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMethodDecl> ( &ofClass_Type0)(internal::Matcher
<CXXRecordDecl> const &InnerMatcher); inline bool internal
::matcher_ofClass0Matcher::matches( const CXXMethodDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
5976
5977 ASTChildrenNotSpelledInSourceScope RAII(Finder, false);
5978
5979 const CXXRecordDecl *Parent = Node.getParent();
5980 return (Parent != nullptr &&
5981 InnerMatcher.matches(*Parent, Finder, Builder));
5982}
5983
5984/// Matches each method overridden by the given method. This matcher may
5985/// produce multiple matches.
5986///
5987/// Given
5988/// \code
5989/// class A { virtual void f(); };
5990/// class B : public A { void f(); };
5991/// class C : public B { void f(); };
5992/// \endcode
5993/// cxxMethodDecl(ofClass(hasName("C")),
5994/// forEachOverridden(cxxMethodDecl().bind("b"))).bind("d")
5995/// matches once, with "b" binding "A::f" and "d" binding "C::f" (Note
5996/// that B::f is not overridden by C::f).
5997///
5998/// The check can produce multiple matches in case of multiple inheritance, e.g.
5999/// \code
6000/// class A1 { virtual void f(); };
6001/// class A2 { virtual void f(); };
6002/// class C : public A1, public A2 { void f(); };
6003/// \endcode
6004/// cxxMethodDecl(ofClass(hasName("C")),
6005/// forEachOverridden(cxxMethodDecl().bind("b"))).bind("d")
6006/// matches twice, once with "b" binding "A1::f" and "d" binding "C::f", and
6007/// once with "b" binding "A2::f" and "d" binding "C::f".
6008AST_MATCHER_P(CXXMethodDecl, forEachOverridden,namespace internal { class matcher_forEachOverridden0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXMethodDecl> { public: explicit matcher_forEachOverridden0Matcher
( internal::Matcher<CXXMethodDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXMethodDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXMethodDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXMethodDecl> forEachOverridden( internal::Matcher
<CXXMethodDecl> const &InnerMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_forEachOverridden0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMethodDecl> ( &forEachOverridden_Type0)(internal
::Matcher<CXXMethodDecl> const &InnerMatcher); inline
bool internal::matcher_forEachOverridden0Matcher::matches( const
CXXMethodDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6009 internal::Matcher<CXXMethodDecl>, InnerMatcher)namespace internal { class matcher_forEachOverridden0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXMethodDecl> { public: explicit matcher_forEachOverridden0Matcher
( internal::Matcher<CXXMethodDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXMethodDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXMethodDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXMethodDecl> forEachOverridden( internal::Matcher
<CXXMethodDecl> const &InnerMatcher) { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_forEachOverridden0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<CXXMethodDecl> ( &forEachOverridden_Type0)(internal
::Matcher<CXXMethodDecl> const &InnerMatcher); inline
bool internal::matcher_forEachOverridden0Matcher::matches( const
CXXMethodDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6010 BoundNodesTreeBuilder Result;
6011 bool Matched = false;
6012 for (const auto *Overridden : Node.overridden_methods()) {
6013 BoundNodesTreeBuilder OverriddenBuilder(*Builder);
6014 const bool OverriddenMatched =
6015 InnerMatcher.matches(*Overridden, Finder, &OverriddenBuilder);
6016 if (OverriddenMatched) {
6017 Matched = true;
6018 Result.addMatch(OverriddenBuilder);
6019 }
6020 }
6021 *Builder = std::move(Result);
6022 return Matched;
6023}
6024
6025/// Matches declarations of virtual methods and C++ base specifers that specify
6026/// virtual inheritance.
6027///
6028/// Example:
6029/// \code
6030/// class A {
6031/// public:
6032/// virtual void x(); // matches x
6033/// };
6034/// \endcode
6035///
6036/// Example:
6037/// \code
6038/// class Base {};
6039/// class DirectlyDerived : virtual Base {}; // matches Base
6040/// class IndirectlyDerived : DirectlyDerived, Base {}; // matches Base
6041/// \endcode
6042///
6043/// Usable as: Matcher<CXXMethodDecl>, Matcher<CXXBaseSpecifier>
6044AST_POLYMORPHIC_MATCHER(isVirtual,namespace internal { template <typename NodeType> class
matcher_isVirtualMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)> isVirtual() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)>(); } template <typename NodeType
> bool internal::matcher_isVirtualMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6045 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXMethodDecl,namespace internal { template <typename NodeType> class
matcher_isVirtualMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)> isVirtual() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)>(); } template <typename NodeType
> bool internal::matcher_isVirtualMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6046 CXXBaseSpecifier))namespace internal { template <typename NodeType> class
matcher_isVirtualMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)> isVirtual() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isVirtualMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXMethodDecl
, CXXBaseSpecifier>)>(); } template <typename NodeType
> bool internal::matcher_isVirtualMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6047 return Node.isVirtual();
6048}
6049
6050/// Matches if the given method declaration has an explicit "virtual".
6051///
6052/// Given
6053/// \code
6054/// class A {
6055/// public:
6056/// virtual void x();
6057/// };
6058/// class B : public A {
6059/// public:
6060/// void x();
6061/// };
6062/// \endcode
6063/// matches A::x but not B::x
6064AST_MATCHER(CXXMethodDecl, isVirtualAsWritten)namespace internal { class matcher_isVirtualAsWrittenMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXMethodDecl> { public: explicit matcher_isVirtualAsWrittenMatcher
() = default; bool matches(const CXXMethodDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<CXXMethodDecl
> isVirtualAsWritten() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_isVirtualAsWrittenMatcher
()); } inline bool internal::matcher_isVirtualAsWrittenMatcher
::matches( const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6065 return Node.isVirtualAsWritten();
6066}
6067
6068AST_MATCHER(CXXConstructorDecl, isInheritingConstructor)namespace internal { class matcher_isInheritingConstructorMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_isInheritingConstructorMatcher
() = default; bool matches(const CXXConstructorDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> isInheritingConstructor()
{ return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_isInheritingConstructorMatcher()); } inline bool internal
::matcher_isInheritingConstructorMatcher::matches( const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6069 return Node.isInheritingConstructor();
6070}
6071
6072/// Matches if the given method or class declaration is final.
6073///
6074/// Given:
6075/// \code
6076/// class A final {};
6077///
6078/// struct B {
6079/// virtual void f();
6080/// };
6081///
6082/// struct C : B {
6083/// void f() final;
6084/// };
6085/// \endcode
6086/// matches A and C::f, but not B, C, or B::f
6087AST_POLYMORPHIC_MATCHER(isFinal,namespace internal { template <typename NodeType> class
matcher_isFinalMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)> isFinal() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)>(); } template <typename NodeType>
bool internal::matcher_isFinalMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6088 AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl,namespace internal { template <typename NodeType> class
matcher_isFinalMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)> isFinal() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)>(); } template <typename NodeType>
bool internal::matcher_isFinalMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6089 CXXMethodDecl))namespace internal { template <typename NodeType> class
matcher_isFinalMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)> isFinal() { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_isFinalMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXRecordDecl
, CXXMethodDecl>)>(); } template <typename NodeType>
bool internal::matcher_isFinalMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6090 return Node.template hasAttr<FinalAttr>();
6091}
6092
6093/// Matches if the given method declaration is pure.
6094///
6095/// Given
6096/// \code
6097/// class A {
6098/// public:
6099/// virtual void x() = 0;
6100/// };
6101/// \endcode
6102/// matches A::x
6103AST_MATCHER(CXXMethodDecl, isPure)namespace internal { class matcher_isPureMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<CXXMethodDecl>
{ public: explicit matcher_isPureMatcher() = default; bool matches
(const CXXMethodDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<CXXMethodDecl> isPure() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isPureMatcher
()); } inline bool internal::matcher_isPureMatcher::matches( const
CXXMethodDecl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6104 return Node.isPure();
6105}
6106
6107/// Matches if the given method declaration is const.
6108///
6109/// Given
6110/// \code
6111/// struct A {
6112/// void foo() const;
6113/// void bar();
6114/// };
6115/// \endcode
6116///
6117/// cxxMethodDecl(isConst()) matches A::foo() but not A::bar()
6118AST_MATCHER(CXXMethodDecl, isConst)namespace internal { class matcher_isConstMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXMethodDecl
> { public: explicit matcher_isConstMatcher() = default; bool
matches(const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXMethodDecl>
isConst() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isConstMatcher()); } inline bool internal
::matcher_isConstMatcher::matches( const CXXMethodDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6119 return Node.isConst();
6120}
6121
6122/// Matches if the given method declaration declares a copy assignment
6123/// operator.
6124///
6125/// Given
6126/// \code
6127/// struct A {
6128/// A &operator=(const A &);
6129/// A &operator=(A &&);
6130/// };
6131/// \endcode
6132///
6133/// cxxMethodDecl(isCopyAssignmentOperator()) matches the first method but not
6134/// the second one.
6135AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator)namespace internal { class matcher_isCopyAssignmentOperatorMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXMethodDecl> { public: explicit matcher_isCopyAssignmentOperatorMatcher
() = default; bool matches(const CXXMethodDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<CXXMethodDecl
> isCopyAssignmentOperator() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_isCopyAssignmentOperatorMatcher
()); } inline bool internal::matcher_isCopyAssignmentOperatorMatcher
::matches( const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6136 return Node.isCopyAssignmentOperator();
6137}
6138
6139/// Matches if the given method declaration declares a move assignment
6140/// operator.
6141///
6142/// Given
6143/// \code
6144/// struct A {
6145/// A &operator=(const A &);
6146/// A &operator=(A &&);
6147/// };
6148/// \endcode
6149///
6150/// cxxMethodDecl(isMoveAssignmentOperator()) matches the second method but not
6151/// the first one.
6152AST_MATCHER(CXXMethodDecl, isMoveAssignmentOperator)namespace internal { class matcher_isMoveAssignmentOperatorMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXMethodDecl> { public: explicit matcher_isMoveAssignmentOperatorMatcher
() = default; bool matches(const CXXMethodDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<CXXMethodDecl
> isMoveAssignmentOperator() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_isMoveAssignmentOperatorMatcher
()); } inline bool internal::matcher_isMoveAssignmentOperatorMatcher
::matches( const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6153 return Node.isMoveAssignmentOperator();
6154}
6155
6156/// Matches if the given method declaration overrides another method.
6157///
6158/// Given
6159/// \code
6160/// class A {
6161/// public:
6162/// virtual void x();
6163/// };
6164/// class B : public A {
6165/// public:
6166/// virtual void x();
6167/// };
6168/// \endcode
6169/// matches B::x
6170AST_MATCHER(CXXMethodDecl, isOverride)namespace internal { class matcher_isOverrideMatcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMethodDecl
> { public: explicit matcher_isOverrideMatcher() = default
; bool matches(const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXMethodDecl>
isOverride() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isOverrideMatcher()); } inline bool internal
::matcher_isOverrideMatcher::matches( const CXXMethodDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6171 return Node.size_overridden_methods() > 0 || Node.hasAttr<OverrideAttr>();
6172}
6173
6174/// Matches method declarations that are user-provided.
6175///
6176/// Given
6177/// \code
6178/// struct S {
6179/// S(); // #1
6180/// S(const S &) = default; // #2
6181/// S(S &&) = delete; // #3
6182/// };
6183/// \endcode
6184/// cxxConstructorDecl(isUserProvided()) will match #1, but not #2 or #3.
6185AST_MATCHER(CXXMethodDecl, isUserProvided)namespace internal { class matcher_isUserProvidedMatcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXMethodDecl
> { public: explicit matcher_isUserProvidedMatcher() = default
; bool matches(const CXXMethodDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXMethodDecl>
isUserProvided() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isUserProvidedMatcher()); } inline bool
internal::matcher_isUserProvidedMatcher::matches( const CXXMethodDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6186 return Node.isUserProvided();
6187}
6188
6189/// Matches member expressions that are called with '->' as opposed
6190/// to '.'.
6191///
6192/// Member calls on the implicit this pointer match as called with '->'.
6193///
6194/// Given
6195/// \code
6196/// class Y {
6197/// void x() { this->x(); x(); Y y; y.x(); a; this->b; Y::b; }
6198/// template <class T> void f() { this->f<T>(); f<T>(); }
6199/// int a;
6200/// static int b;
6201/// };
6202/// template <class T>
6203/// class Z {
6204/// void x() { this->m; }
6205/// };
6206/// \endcode
6207/// memberExpr(isArrow())
6208/// matches this->x, x, y.x, a, this->b
6209/// cxxDependentScopeMemberExpr(isArrow())
6210/// matches this->m
6211/// unresolvedMemberExpr(isArrow())
6212/// matches this->f<T>, f<T>
6213AST_POLYMORPHIC_MATCHER(namespace internal { template <typename NodeType> class
matcher_isArrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isArrowMatcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>)> isArrow
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isArrowMatcher, void(::clang::ast_matchers
::internal::TypeList<MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr
>)>(); } template <typename NodeType> bool internal
::matcher_isArrowMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6214 isArrow, AST_POLYMORPHIC_SUPPORTED_TYPES(MemberExpr, UnresolvedMemberExpr,namespace internal { template <typename NodeType> class
matcher_isArrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isArrowMatcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>)> isArrow
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isArrowMatcher, void(::clang::ast_matchers
::internal::TypeList<MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr
>)>(); } template <typename NodeType> bool internal
::matcher_isArrowMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6215 CXXDependentScopeMemberExpr))namespace internal { template <typename NodeType> class
matcher_isArrowMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isArrowMatcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>)> isArrow
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isArrowMatcher, void(::clang::ast_matchers
::internal::TypeList<MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr
>)>(); } template <typename NodeType> bool internal
::matcher_isArrowMatcher<NodeType>::matches( const NodeType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6216 return Node.isArrow();
6217}
6218
6219/// Matches QualType nodes that are of integer type.
6220///
6221/// Given
6222/// \code
6223/// void a(int);
6224/// void b(long);
6225/// void c(double);
6226/// \endcode
6227/// functionDecl(hasAnyParameter(hasType(isInteger())))
6228/// matches "a(int)", "b(long)", but not "c(double)".
6229AST_MATCHER(QualType, isInteger)namespace internal { class matcher_isIntegerMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<QualType>
{ public: explicit matcher_isIntegerMatcher() = default; bool
matches(const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<QualType> isInteger() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isIntegerMatcher
()); } inline bool internal::matcher_isIntegerMatcher::matches
( const QualType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6230 return Node->isIntegerType();
6231}
6232
6233/// Matches QualType nodes that are of unsigned integer type.
6234///
6235/// Given
6236/// \code
6237/// void a(int);
6238/// void b(unsigned long);
6239/// void c(double);
6240/// \endcode
6241/// functionDecl(hasAnyParameter(hasType(isUnsignedInteger())))
6242/// matches "b(unsigned long)", but not "a(int)" and "c(double)".
6243AST_MATCHER(QualType, isUnsignedInteger)namespace internal { class matcher_isUnsignedIntegerMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualType> { public: explicit matcher_isUnsignedIntegerMatcher
() = default; bool matches(const QualType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<QualType
> isUnsignedInteger() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_isUnsignedIntegerMatcher
()); } inline bool internal::matcher_isUnsignedIntegerMatcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6244 return Node->isUnsignedIntegerType();
6245}
6246
6247/// Matches QualType nodes that are of signed integer type.
6248///
6249/// Given
6250/// \code
6251/// void a(int);
6252/// void b(unsigned long);
6253/// void c(double);
6254/// \endcode
6255/// functionDecl(hasAnyParameter(hasType(isSignedInteger())))
6256/// matches "a(int)", but not "b(unsigned long)" and "c(double)".
6257AST_MATCHER(QualType, isSignedInteger)namespace internal { class matcher_isSignedIntegerMatcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_isSignedIntegerMatcher() = default
; bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> isSignedInteger
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isSignedIntegerMatcher()); } inline bool internal
::matcher_isSignedIntegerMatcher::matches( const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6258 return Node->isSignedIntegerType();
6259}
6260
6261/// Matches QualType nodes that are of character type.
6262///
6263/// Given
6264/// \code
6265/// void a(char);
6266/// void b(wchar_t);
6267/// void c(double);
6268/// \endcode
6269/// functionDecl(hasAnyParameter(hasType(isAnyCharacter())))
6270/// matches "a(char)", "b(wchar_t)", but not "c(double)".
6271AST_MATCHER(QualType, isAnyCharacter)namespace internal { class matcher_isAnyCharacterMatcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_isAnyCharacterMatcher() = default
; bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> isAnyCharacter
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isAnyCharacterMatcher()); } inline bool internal
::matcher_isAnyCharacterMatcher::matches( const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6272 return Node->isAnyCharacterType();
6273}
6274
6275/// Matches QualType nodes that are of any pointer type; this includes
6276/// the Objective-C object pointer type, which is different despite being
6277/// syntactically similar.
6278///
6279/// Given
6280/// \code
6281/// int *i = nullptr;
6282///
6283/// @interface Foo
6284/// @end
6285/// Foo *f;
6286///
6287/// int j;
6288/// \endcode
6289/// varDecl(hasType(isAnyPointer()))
6290/// matches "int *i" and "Foo *f", but not "int j".
6291AST_MATCHER(QualType, isAnyPointer)namespace internal { class matcher_isAnyPointerMatcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_isAnyPointerMatcher() = default
; bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> isAnyPointer
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isAnyPointerMatcher()); } inline bool internal
::matcher_isAnyPointerMatcher::matches( const QualType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6292 return Node->isAnyPointerType();
6293}
6294
6295/// Matches QualType nodes that are const-qualified, i.e., that
6296/// include "top-level" const.
6297///
6298/// Given
6299/// \code
6300/// void a(int);
6301/// void b(int const);
6302/// void c(const int);
6303/// void d(const int*);
6304/// void e(int const) {};
6305/// \endcode
6306/// functionDecl(hasAnyParameter(hasType(isConstQualified())))
6307/// matches "void b(int const)", "void c(const int)" and
6308/// "void e(int const) {}". It does not match d as there
6309/// is no top-level const on the parameter type "const int *".
6310AST_MATCHER(QualType, isConstQualified)namespace internal { class matcher_isConstQualifiedMatcher : public
::clang::ast_matchers::internal::MatcherInterface<QualType
> { public: explicit matcher_isConstQualifiedMatcher() = default
; bool matches(const QualType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<QualType> isConstQualified
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isConstQualifiedMatcher()); } inline bool internal
::matcher_isConstQualifiedMatcher::matches( const QualType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6311 return Node.isConstQualified();
6312}
6313
6314/// Matches QualType nodes that are volatile-qualified, i.e., that
6315/// include "top-level" volatile.
6316///
6317/// Given
6318/// \code
6319/// void a(int);
6320/// void b(int volatile);
6321/// void c(volatile int);
6322/// void d(volatile int*);
6323/// void e(int volatile) {};
6324/// \endcode
6325/// functionDecl(hasAnyParameter(hasType(isVolatileQualified())))
6326/// matches "void b(int volatile)", "void c(volatile int)" and
6327/// "void e(int volatile) {}". It does not match d as there
6328/// is no top-level volatile on the parameter type "volatile int *".
6329AST_MATCHER(QualType, isVolatileQualified)namespace internal { class matcher_isVolatileQualifiedMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
QualType> { public: explicit matcher_isVolatileQualifiedMatcher
() = default; bool matches(const QualType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<QualType
> isVolatileQualified() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_isVolatileQualifiedMatcher
()); } inline bool internal::matcher_isVolatileQualifiedMatcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6330 return Node.isVolatileQualified();
6331}
6332
6333/// Matches QualType nodes that have local CV-qualifiers attached to
6334/// the node, not hidden within a typedef.
6335///
6336/// Given
6337/// \code
6338/// typedef const int const_int;
6339/// const_int i;
6340/// int *const j;
6341/// int *volatile k;
6342/// int m;
6343/// \endcode
6344/// \c varDecl(hasType(hasLocalQualifiers())) matches only \c j and \c k.
6345/// \c i is const-qualified but the qualifier is not local.
6346AST_MATCHER(QualType, hasLocalQualifiers)namespace internal { class matcher_hasLocalQualifiersMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualType> { public: explicit matcher_hasLocalQualifiersMatcher
() = default; bool matches(const QualType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<QualType
> hasLocalQualifiers() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_hasLocalQualifiersMatcher
()); } inline bool internal::matcher_hasLocalQualifiersMatcher
::matches( const QualType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6347 return Node.hasLocalQualifiers();
6348}
6349
6350/// Matches a member expression where the member is matched by a
6351/// given matcher.
6352///
6353/// Given
6354/// \code
6355/// struct { int first, second; } first, second;
6356/// int i(second.first);
6357/// int j(first.second);
6358/// \endcode
6359/// memberExpr(member(hasName("first")))
6360/// matches second.first
6361/// but not first.second (because the member name there is "second").
6362AST_MATCHER_P(MemberExpr, member,namespace internal { class matcher_member0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<MemberExpr
> { public: explicit matcher_member0Matcher( internal::Matcher
<ValueDecl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const MemberExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<ValueDecl> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<MemberExpr> member( internal
::Matcher<ValueDecl> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_member0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<MemberExpr> ( &member_Type0)(internal::Matcher<
ValueDecl> const &InnerMatcher); inline bool internal::
matcher_member0Matcher::matches( const MemberExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
6363 internal::Matcher<ValueDecl>, InnerMatcher)namespace internal { class matcher_member0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<MemberExpr
> { public: explicit matcher_member0Matcher( internal::Matcher
<ValueDecl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const MemberExpr &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<ValueDecl> InnerMatcher; }; } inline ::clang::
ast_matchers::internal::Matcher<MemberExpr> member( internal
::Matcher<ValueDecl> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_member0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<MemberExpr> ( &member_Type0)(internal::Matcher<
ValueDecl> const &InnerMatcher); inline bool internal::
matcher_member0Matcher::matches( const MemberExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
6364 return InnerMatcher.matches(*Node.getMemberDecl(), Finder, Builder);
6365}
6366
6367/// Matches a member expression where the object expression is matched by a
6368/// given matcher. Implicit object expressions are included; that is, it matches
6369/// use of implicit `this`.
6370///
6371/// Given
6372/// \code
6373/// struct X {
6374/// int m;
6375/// int f(X x) { x.m; return m; }
6376/// };
6377/// \endcode
6378/// memberExpr(hasObjectExpression(hasType(cxxRecordDecl(hasName("X")))))
6379/// matches `x.m`, but not `m`; however,
6380/// memberExpr(hasObjectExpression(hasType(pointsTo(
6381// cxxRecordDecl(hasName("X"))))))
6382/// matches `m` (aka. `this->m`), but not `x.m`.
6383AST_POLYMORPHIC_MATCHER_P(namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasObjectExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasObjectExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > hasObjectExpression(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > (&hasObjectExpression_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasObjectExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
6384 hasObjectExpression,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasObjectExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasObjectExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > hasObjectExpression(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > (&hasObjectExpression_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasObjectExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
6385 AST_POLYMORPHIC_SUPPORTED_TYPES(MemberExpr, UnresolvedMemberExpr,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasObjectExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasObjectExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > hasObjectExpression(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > (&hasObjectExpression_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasObjectExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
6386 CXXDependentScopeMemberExpr),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasObjectExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasObjectExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > hasObjectExpression(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > (&hasObjectExpression_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasObjectExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
6387 internal::Matcher<Expr>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasObjectExpression0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NodeType
> { public: explicit matcher_hasObjectExpression0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > hasObjectExpression(internal::Matcher
<Expr> const &InnerMatcher) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> >(InnerMatcher); } typedef ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_hasObjectExpression0Matcher
, void(::clang::ast_matchers::internal::TypeList<MemberExpr
, UnresolvedMemberExpr, CXXDependentScopeMemberExpr>), internal
::Matcher<Expr> > (&hasObjectExpression_Type0)(internal
::Matcher<Expr> const &InnerMatcher); template <
typename NodeType, typename ParamT> bool internal:: matcher_hasObjectExpression0Matcher
<NodeType, ParamT>::matches( const NodeType &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
{
6388 if (const auto *E = dyn_cast<UnresolvedMemberExpr>(&Node))
6389 if (E->isImplicitAccess())
6390 return false;
6391 if (const auto *E = dyn_cast<CXXDependentScopeMemberExpr>(&Node))
6392 if (E->isImplicitAccess())
6393 return false;
6394 return InnerMatcher.matches(*Node.getBase(), Finder, Builder);
6395}
6396
6397/// Matches any using shadow declaration.
6398///
6399/// Given
6400/// \code
6401/// namespace X { void b(); }
6402/// using X::b;
6403/// \endcode
6404/// usingDecl(hasAnyUsingShadowDecl(hasName("b"))))
6405/// matches \code using X::b \endcode
6406AST_MATCHER_P(BaseUsingDecl, hasAnyUsingShadowDecl,namespace internal { class matcher_hasAnyUsingShadowDecl0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
BaseUsingDecl> { public: explicit matcher_hasAnyUsingShadowDecl0Matcher
( internal::Matcher<UsingShadowDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const BaseUsingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<UsingShadowDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<BaseUsingDecl> hasAnyUsingShadowDecl( internal
::Matcher<UsingShadowDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasAnyUsingShadowDecl0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<BaseUsingDecl>
( &hasAnyUsingShadowDecl_Type0)(internal::Matcher<UsingShadowDecl
> const &InnerMatcher); inline bool internal::matcher_hasAnyUsingShadowDecl0Matcher
::matches( const BaseUsingDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6407 internal::Matcher<UsingShadowDecl>, InnerMatcher)namespace internal { class matcher_hasAnyUsingShadowDecl0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
BaseUsingDecl> { public: explicit matcher_hasAnyUsingShadowDecl0Matcher
( internal::Matcher<UsingShadowDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const BaseUsingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<UsingShadowDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<BaseUsingDecl> hasAnyUsingShadowDecl( internal
::Matcher<UsingShadowDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasAnyUsingShadowDecl0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<BaseUsingDecl>
( &hasAnyUsingShadowDecl_Type0)(internal::Matcher<UsingShadowDecl
> const &InnerMatcher); inline bool internal::matcher_hasAnyUsingShadowDecl0Matcher
::matches( const BaseUsingDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6408 return matchesFirstInPointerRange(InnerMatcher, Node.shadow_begin(),
6409 Node.shadow_end(), Finder,
6410 Builder) != Node.shadow_end();
6411}
6412
6413/// Matches a using shadow declaration where the target declaration is
6414/// matched by the given matcher.
6415///
6416/// Given
6417/// \code
6418/// namespace X { int a; void b(); }
6419/// using X::a;
6420/// using X::b;
6421/// \endcode
6422/// usingDecl(hasAnyUsingShadowDecl(hasTargetDecl(functionDecl())))
6423/// matches \code using X::b \endcode
6424/// but not \code using X::a \endcode
6425AST_MATCHER_P(UsingShadowDecl, hasTargetDecl,namespace internal { class matcher_hasTargetDecl0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<UsingShadowDecl
> { public: explicit matcher_hasTargetDecl0Matcher( internal
::Matcher<NamedDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const UsingShadowDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<NamedDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<UsingShadowDecl> hasTargetDecl( internal::Matcher<NamedDecl
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasTargetDecl0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<UsingShadowDecl> ( &hasTargetDecl_Type0)(internal::
Matcher<NamedDecl> const &InnerMatcher); inline bool
internal::matcher_hasTargetDecl0Matcher::matches( const UsingShadowDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6426 internal::Matcher<NamedDecl>, InnerMatcher)namespace internal { class matcher_hasTargetDecl0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<UsingShadowDecl
> { public: explicit matcher_hasTargetDecl0Matcher( internal
::Matcher<NamedDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const UsingShadowDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<NamedDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<UsingShadowDecl> hasTargetDecl( internal::Matcher<NamedDecl
> const &InnerMatcher) { return ::clang::ast_matchers::
internal::makeMatcher( new internal::matcher_hasTargetDecl0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<UsingShadowDecl> ( &hasTargetDecl_Type0)(internal::
Matcher<NamedDecl> const &InnerMatcher); inline bool
internal::matcher_hasTargetDecl0Matcher::matches( const UsingShadowDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6427 return InnerMatcher.matches(*Node.getTargetDecl(), Finder, Builder);
6428}
6429
6430/// Matches template instantiations of function, class, or static
6431/// member variable template instantiations.
6432///
6433/// Given
6434/// \code
6435/// template <typename T> class X {}; class A {}; X<A> x;
6436/// \endcode
6437/// or
6438/// \code
6439/// template <typename T> class X {}; class A {}; template class X<A>;
6440/// \endcode
6441/// or
6442/// \code
6443/// template <typename T> class X {}; class A {}; extern template class X<A>;
6444/// \endcode
6445/// cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
6446/// matches the template instantiation of X<A>.
6447///
6448/// But given
6449/// \code
6450/// template <typename T> class X {}; class A {};
6451/// template <> class X<A> {}; X<A> x;
6452/// \endcode
6453/// cxxRecordDecl(hasName("::X"), isTemplateInstantiation())
6454/// does not match, as X<A> is an explicit template specialization.
6455///
6456/// Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl>
6457AST_POLYMORPHIC_MATCHER(isTemplateInstantiation,namespace internal { template <typename NodeType> class
matcher_isTemplateInstantiationMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isTemplateInstantiationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)> isTemplateInstantiation() {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isTemplateInstantiationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)>(); } template <typename NodeType> bool internal
::matcher_isTemplateInstantiationMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6458 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl,namespace internal { template <typename NodeType> class
matcher_isTemplateInstantiationMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isTemplateInstantiationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)> isTemplateInstantiation() {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isTemplateInstantiationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)>(); } template <typename NodeType> bool internal
::matcher_isTemplateInstantiationMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6459 CXXRecordDecl))namespace internal { template <typename NodeType> class
matcher_isTemplateInstantiationMatcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: bool matches
(const NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isTemplateInstantiationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)> isTemplateInstantiation() {
return ::clang::ast_matchers::internal::PolymorphicMatcher<
internal::matcher_isTemplateInstantiationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)>(); } template <typename NodeType> bool internal
::matcher_isTemplateInstantiationMatcher<NodeType>::matches
( const NodeType &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6460 return (Node.getTemplateSpecializationKind() == TSK_ImplicitInstantiation ||
6461 Node.getTemplateSpecializationKind() ==
6462 TSK_ExplicitInstantiationDefinition ||
6463 Node.getTemplateSpecializationKind() ==
6464 TSK_ExplicitInstantiationDeclaration);
6465}
6466
6467/// Matches declarations that are template instantiations or are inside
6468/// template instantiations.
6469///
6470/// Given
6471/// \code
6472/// template<typename T> void A(T t) { T i; }
6473/// A(0);
6474/// A(0U);
6475/// \endcode
6476/// functionDecl(isInstantiated())
6477/// matches 'A(int) {...};' and 'A(unsigned) {...}'.
6478AST_MATCHER_FUNCTION(internal::Matcher<Decl>, isInstantiated)inline internal::Matcher<Decl> isInstantiated_getInstance
(); inline internal::Matcher<Decl> isInstantiated() { return
::clang::ast_matchers::internal::MemoizedMatcher< internal
::Matcher<Decl>, isInstantiated_getInstance>::getInstance
(); } inline internal::Matcher<Decl> isInstantiated_getInstance
()
{
6479 auto IsInstantiation = decl(anyOf(cxxRecordDecl(isTemplateInstantiation()),
6480 functionDecl(isTemplateInstantiation())));
6481 return decl(anyOf(IsInstantiation, hasAncestor(IsInstantiation)));
6482}
6483
6484/// Matches statements inside of a template instantiation.
6485///
6486/// Given
6487/// \code
6488/// int j;
6489/// template<typename T> void A(T t) { T i; j += 42;}
6490/// A(0);
6491/// A(0U);
6492/// \endcode
6493/// declStmt(isInTemplateInstantiation())
6494/// matches 'int i;' and 'unsigned i'.
6495/// unless(stmt(isInTemplateInstantiation()))
6496/// will NOT match j += 42; as it's shared between the template definition and
6497/// instantiation.
6498AST_MATCHER_FUNCTION(internal::Matcher<Stmt>, isInTemplateInstantiation)inline internal::Matcher<Stmt> isInTemplateInstantiation_getInstance
(); inline internal::Matcher<Stmt> isInTemplateInstantiation
() { return ::clang::ast_matchers::internal::MemoizedMatcher<
internal::Matcher<Stmt>, isInTemplateInstantiation_getInstance
>::getInstance(); } inline internal::Matcher<Stmt> isInTemplateInstantiation_getInstance
()
{
6499 return stmt(
6500 hasAncestor(decl(anyOf(cxxRecordDecl(isTemplateInstantiation()),
6501 functionDecl(isTemplateInstantiation())))));
6502}
6503
6504/// Matches explicit template specializations of function, class, or
6505/// static member variable template instantiations.
6506///
6507/// Given
6508/// \code
6509/// template<typename T> void A(T t) { }
6510/// template<> void A(int N) { }
6511/// \endcode
6512/// functionDecl(isExplicitTemplateSpecialization())
6513/// matches the specialization A<int>().
6514///
6515/// Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl>
6516AST_POLYMORPHIC_MATCHER(isExplicitTemplateSpecialization,namespace internal { template <typename NodeType> class
matcher_isExplicitTemplateSpecializationMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isExplicitTemplateSpecializationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)> isExplicitTemplateSpecialization() { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExplicitTemplateSpecializationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitTemplateSpecializationMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
6517 AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl,namespace internal { template <typename NodeType> class
matcher_isExplicitTemplateSpecializationMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isExplicitTemplateSpecializationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)> isExplicitTemplateSpecialization() { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExplicitTemplateSpecializationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitTemplateSpecializationMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
6518 CXXRecordDecl))namespace internal { template <typename NodeType> class
matcher_isExplicitTemplateSpecializationMatcher : public ::clang
::ast_matchers::internal::MatcherInterface<NodeType> { public
: bool matches(const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_isExplicitTemplateSpecializationMatcher, void(::clang
::ast_matchers::internal::TypeList<FunctionDecl, VarDecl, CXXRecordDecl
>)> isExplicitTemplateSpecialization() { return ::clang
::ast_matchers::internal::PolymorphicMatcher< internal::matcher_isExplicitTemplateSpecializationMatcher
, void(::clang::ast_matchers::internal::TypeList<FunctionDecl
, VarDecl, CXXRecordDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitTemplateSpecializationMatcher
<NodeType>::matches( const NodeType &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const
{
6519 return (Node.getTemplateSpecializationKind() == TSK_ExplicitSpecialization);
6520}
6521
6522/// Matches \c TypeLocs for which the given inner
6523/// QualType-matcher matches.
6524AST_MATCHER_FUNCTION_P_OVERLOAD(internal::BindableMatcher<TypeLoc>, loc,inline internal::BindableMatcher<TypeLoc> loc(internal::
Matcher<QualType> const &InnerMatcher); typedef internal
::BindableMatcher<TypeLoc> (&loc_Type0)(internal::Matcher
<QualType> const &); inline internal::BindableMatcher
<TypeLoc> loc(internal::Matcher<QualType> const &
InnerMatcher)
6525 internal::Matcher<QualType>, InnerMatcher, 0)inline internal::BindableMatcher<TypeLoc> loc(internal::
Matcher<QualType> const &InnerMatcher); typedef internal
::BindableMatcher<TypeLoc> (&loc_Type0)(internal::Matcher
<QualType> const &); inline internal::BindableMatcher
<TypeLoc> loc(internal::Matcher<QualType> const &
InnerMatcher)
{
6526 return internal::BindableMatcher<TypeLoc>(
6527 new internal::TypeLocTypeMatcher(InnerMatcher));
6528}
6529
6530/// Matches `QualifiedTypeLoc`s in the clang AST.
6531///
6532/// Given
6533/// \code
6534/// const int x = 0;
6535/// \endcode
6536/// qualifiedTypeLoc()
6537/// matches `const int`.
6538extern const internal::VariadicDynCastAllOfMatcher<TypeLoc, QualifiedTypeLoc>
6539 qualifiedTypeLoc;
6540
6541/// Matches `QualifiedTypeLoc`s that have an unqualified `TypeLoc` matching
6542/// `InnerMatcher`.
6543///
6544/// Given
6545/// \code
6546/// int* const x;
6547/// const int y;
6548/// \endcode
6549/// qualifiedTypeLoc(hasUnqualifiedLoc(pointerTypeLoc()))
6550/// matches the `TypeLoc` of the variable declaration of `x`, but not `y`.
6551AST_MATCHER_P(QualifiedTypeLoc, hasUnqualifiedLoc, internal::Matcher<TypeLoc>,namespace internal { class matcher_hasUnqualifiedLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualifiedTypeLoc> { public: explicit matcher_hasUnqualifiedLoc0Matcher
( internal::Matcher<TypeLoc> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const QualifiedTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<QualifiedTypeLoc> hasUnqualifiedLoc( internal
::Matcher<TypeLoc> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasUnqualifiedLoc0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualifiedTypeLoc> ( &hasUnqualifiedLoc_Type0)(internal
::Matcher<TypeLoc> const &InnerMatcher); inline bool
internal::matcher_hasUnqualifiedLoc0Matcher::matches( const QualifiedTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6552 InnerMatcher)namespace internal { class matcher_hasUnqualifiedLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
QualifiedTypeLoc> { public: explicit matcher_hasUnqualifiedLoc0Matcher
( internal::Matcher<TypeLoc> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const QualifiedTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<QualifiedTypeLoc> hasUnqualifiedLoc( internal
::Matcher<TypeLoc> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_hasUnqualifiedLoc0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<QualifiedTypeLoc> ( &hasUnqualifiedLoc_Type0)(internal
::Matcher<TypeLoc> const &InnerMatcher); inline bool
internal::matcher_hasUnqualifiedLoc0Matcher::matches( const QualifiedTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6553 return InnerMatcher.matches(Node.getUnqualifiedLoc(), Finder, Builder);
6554}
6555
6556/// Matches a function declared with the specified return `TypeLoc`.
6557///
6558/// Given
6559/// \code
6560/// int f() { return 5; }
6561/// void g() {}
6562/// \endcode
6563/// functionDecl(hasReturnTypeLoc(loc(asString("int"))))
6564/// matches the declaration of `f`, but not `g`.
6565AST_MATCHER_P(FunctionDecl, hasReturnTypeLoc, internal::Matcher<TypeLoc>,namespace internal { class matcher_hasReturnTypeLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
FunctionDecl> { public: explicit matcher_hasReturnTypeLoc0Matcher
( internal::Matcher<TypeLoc> const &AReturnMatcher)
: ReturnMatcher(AReturnMatcher) {} bool matches(const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> ReturnMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<FunctionDecl> hasReturnTypeLoc( internal::Matcher
<TypeLoc> const &ReturnMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasReturnTypeLoc0Matcher
(ReturnMatcher)); } typedef ::clang::ast_matchers::internal::
Matcher<FunctionDecl> ( &hasReturnTypeLoc_Type0)(internal
::Matcher<TypeLoc> const &ReturnMatcher); inline bool
internal::matcher_hasReturnTypeLoc0Matcher::matches( const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6566 ReturnMatcher)namespace internal { class matcher_hasReturnTypeLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
FunctionDecl> { public: explicit matcher_hasReturnTypeLoc0Matcher
( internal::Matcher<TypeLoc> const &AReturnMatcher)
: ReturnMatcher(AReturnMatcher) {} bool matches(const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> ReturnMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<FunctionDecl> hasReturnTypeLoc( internal::Matcher
<TypeLoc> const &ReturnMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasReturnTypeLoc0Matcher
(ReturnMatcher)); } typedef ::clang::ast_matchers::internal::
Matcher<FunctionDecl> ( &hasReturnTypeLoc_Type0)(internal
::Matcher<TypeLoc> const &ReturnMatcher); inline bool
internal::matcher_hasReturnTypeLoc0Matcher::matches( const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6567 auto Loc = Node.getFunctionTypeLoc();
6568 return Loc && ReturnMatcher.matches(Loc.getReturnLoc(), Finder, Builder);
6569}
6570
6571/// Matches pointer `TypeLoc`s.
6572///
6573/// Given
6574/// \code
6575/// int* x;
6576/// \endcode
6577/// pointerTypeLoc()
6578/// matches `int*`.
6579extern const internal::VariadicDynCastAllOfMatcher<TypeLoc, PointerTypeLoc>
6580 pointerTypeLoc;
6581
6582/// Matches pointer `TypeLoc`s that have a pointee `TypeLoc` matching
6583/// `PointeeMatcher`.
6584///
6585/// Given
6586/// \code
6587/// int* x;
6588/// \endcode
6589/// pointerTypeLoc(hasPointeeLoc(loc(asString("int"))))
6590/// matches `int*`.
6591AST_MATCHER_P(PointerTypeLoc, hasPointeeLoc, internal::Matcher<TypeLoc>,namespace internal { class matcher_hasPointeeLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<PointerTypeLoc
> { public: explicit matcher_hasPointeeLoc0Matcher( internal
::Matcher<TypeLoc> const &APointeeMatcher) : PointeeMatcher
(APointeeMatcher) {} bool matches(const PointerTypeLoc &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> PointeeMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<PointerTypeLoc
> hasPointeeLoc( internal::Matcher<TypeLoc> const &
PointeeMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasPointeeLoc0Matcher(PointeeMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<PointerTypeLoc
> ( &hasPointeeLoc_Type0)(internal::Matcher<TypeLoc
> const &PointeeMatcher); inline bool internal::matcher_hasPointeeLoc0Matcher
::matches( const PointerTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6592 PointeeMatcher)namespace internal { class matcher_hasPointeeLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<PointerTypeLoc
> { public: explicit matcher_hasPointeeLoc0Matcher( internal
::Matcher<TypeLoc> const &APointeeMatcher) : PointeeMatcher
(APointeeMatcher) {} bool matches(const PointerTypeLoc &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> PointeeMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<PointerTypeLoc
> hasPointeeLoc( internal::Matcher<TypeLoc> const &
PointeeMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasPointeeLoc0Matcher(PointeeMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<PointerTypeLoc
> ( &hasPointeeLoc_Type0)(internal::Matcher<TypeLoc
> const &PointeeMatcher); inline bool internal::matcher_hasPointeeLoc0Matcher
::matches( const PointerTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6593 return PointeeMatcher.matches(Node.getPointeeLoc(), Finder, Builder);
6594}
6595
6596/// Matches reference `TypeLoc`s.
6597///
6598/// Given
6599/// \code
6600/// int x = 3;
6601/// int& l = x;
6602/// int&& r = 3;
6603/// \endcode
6604/// referenceTypeLoc()
6605/// matches `int&` and `int&&`.
6606extern const internal::VariadicDynCastAllOfMatcher<TypeLoc, ReferenceTypeLoc>
6607 referenceTypeLoc;
6608
6609/// Matches reference `TypeLoc`s that have a referent `TypeLoc` matching
6610/// `ReferentMatcher`.
6611///
6612/// Given
6613/// \code
6614/// int x = 3;
6615/// int& xx = x;
6616/// \endcode
6617/// referenceTypeLoc(hasReferentLoc(loc(asString("int"))))
6618/// matches `int&`.
6619AST_MATCHER_P(ReferenceTypeLoc, hasReferentLoc, internal::Matcher<TypeLoc>,namespace internal { class matcher_hasReferentLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ReferenceTypeLoc
> { public: explicit matcher_hasReferentLoc0Matcher( internal
::Matcher<TypeLoc> const &AReferentMatcher) : ReferentMatcher
(AReferentMatcher) {} bool matches(const ReferenceTypeLoc &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> ReferentMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ReferenceTypeLoc
> hasReferentLoc( internal::Matcher<TypeLoc> const &
ReferentMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasReferentLoc0Matcher(ReferentMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<ReferenceTypeLoc
> ( &hasReferentLoc_Type0)(internal::Matcher<TypeLoc
> const &ReferentMatcher); inline bool internal::matcher_hasReferentLoc0Matcher
::matches( const ReferenceTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6620 ReferentMatcher)namespace internal { class matcher_hasReferentLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ReferenceTypeLoc
> { public: explicit matcher_hasReferentLoc0Matcher( internal
::Matcher<TypeLoc> const &AReferentMatcher) : ReferentMatcher
(AReferentMatcher) {} bool matches(const ReferenceTypeLoc &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> ReferentMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ReferenceTypeLoc
> hasReferentLoc( internal::Matcher<TypeLoc> const &
ReferentMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasReferentLoc0Matcher(ReferentMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<ReferenceTypeLoc
> ( &hasReferentLoc_Type0)(internal::Matcher<TypeLoc
> const &ReferentMatcher); inline bool internal::matcher_hasReferentLoc0Matcher
::matches( const ReferenceTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6621 return ReferentMatcher.matches(Node.getPointeeLoc(), Finder, Builder);
6622}
6623
6624/// Matches template specialization `TypeLoc`s.
6625///
6626/// Given
6627/// \code
6628/// template <typename T> class C {};
6629/// C<char> var;
6630/// \endcode
6631/// varDecl(hasTypeLoc(templateSpecializationTypeLoc(typeLoc())))
6632/// matches `C<char> var`.
6633extern const internal::VariadicDynCastAllOfMatcher<
6634 TypeLoc, TemplateSpecializationTypeLoc>
6635 templateSpecializationTypeLoc;
6636
6637/// Matches template specialization `TypeLoc`s that have at least one
6638/// `TemplateArgumentLoc` matching the given `InnerMatcher`.
6639///
6640/// Given
6641/// \code
6642/// template<typename T> class A {};
6643/// A<int> a;
6644/// \endcode
6645/// varDecl(hasTypeLoc(templateSpecializationTypeLoc(hasAnyTemplateArgumentLoc(
6646/// hasTypeLoc(loc(asString("int")))))))
6647/// matches `A<int> a`.
6648AST_MATCHER_P(TemplateSpecializationTypeLoc, hasAnyTemplateArgumentLoc,namespace internal { class matcher_hasAnyTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateSpecializationTypeLoc> { public: explicit matcher_hasAnyTemplateArgumentLoc0Matcher
( internal::Matcher<TemplateArgumentLoc> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const TemplateSpecializationTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgumentLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateSpecializationTypeLoc> hasAnyTemplateArgumentLoc
( internal::Matcher<TemplateArgumentLoc> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyTemplateArgumentLoc0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<TemplateSpecializationTypeLoc
> ( &hasAnyTemplateArgumentLoc_Type0)(internal::Matcher
<TemplateArgumentLoc> const &InnerMatcher); inline bool
internal::matcher_hasAnyTemplateArgumentLoc0Matcher::matches
( const TemplateSpecializationTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6649 internal::Matcher<TemplateArgumentLoc>, InnerMatcher)namespace internal { class matcher_hasAnyTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
TemplateSpecializationTypeLoc> { public: explicit matcher_hasAnyTemplateArgumentLoc0Matcher
( internal::Matcher<TemplateArgumentLoc> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const TemplateSpecializationTypeLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TemplateArgumentLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<TemplateSpecializationTypeLoc> hasAnyTemplateArgumentLoc
( internal::Matcher<TemplateArgumentLoc> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasAnyTemplateArgumentLoc0Matcher(InnerMatcher)); }
typedef ::clang::ast_matchers::internal::Matcher<TemplateSpecializationTypeLoc
> ( &hasAnyTemplateArgumentLoc_Type0)(internal::Matcher
<TemplateArgumentLoc> const &InnerMatcher); inline bool
internal::matcher_hasAnyTemplateArgumentLoc0Matcher::matches
( const TemplateSpecializationTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6650 for (unsigned Index = 0, N = Node.getNumArgs(); Index < N; ++Index) {
6651 clang::ast_matchers::internal::BoundNodesTreeBuilder Result(*Builder);
6652 if (InnerMatcher.matches(Node.getArgLoc(Index), Finder, &Result)) {
6653 *Builder = std::move(Result);
6654 return true;
6655 }
6656 }
6657 return false;
6658}
6659
6660/// Matches template specialization `TypeLoc`s where the n'th
6661/// `TemplateArgumentLoc` matches the given `InnerMatcher`.
6662///
6663/// Given
6664/// \code
6665/// template<typename T, typename U> class A {};
6666/// A<double, int> b;
6667/// A<int, double> c;
6668/// \endcode
6669/// varDecl(hasTypeLoc(templateSpecializationTypeLoc(hasTemplateArgumentLoc(0,
6670/// hasTypeLoc(loc(asString("double")))))))
6671/// matches `A<double, int> b`, but not `A<int, double> c`.
6672AST_POLYMORPHIC_MATCHER_P2(namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgumentLoc0Matcher
(unsigned const &AIndex, internal::Matcher<TemplateArgumentLoc
> const &AInnerMatcher) : Index(AIndex), InnerMatcher(
AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: unsigned Index; internal::Matcher<TemplateArgumentLoc>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
> hasTemplateArgumentLoc(unsigned const &Index, internal
::Matcher<TemplateArgumentLoc> const &InnerMatcher)
{ return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
>(Index, InnerMatcher); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasTemplateArgumentLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, TemplateSpecializationTypeLoc>), unsigned, internal::Matcher
<TemplateArgumentLoc> > (&hasTemplateArgumentLoc_Type0
)( unsigned const &Index, internal::Matcher<TemplateArgumentLoc
> const &InnerMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_hasTemplateArgumentLoc0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
6673 hasTemplateArgumentLoc,namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgumentLoc0Matcher
(unsigned const &AIndex, internal::Matcher<TemplateArgumentLoc
> const &AInnerMatcher) : Index(AIndex), InnerMatcher(
AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: unsigned Index; internal::Matcher<TemplateArgumentLoc>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
> hasTemplateArgumentLoc(unsigned const &Index, internal
::Matcher<TemplateArgumentLoc> const &InnerMatcher)
{ return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
>(Index, InnerMatcher); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasTemplateArgumentLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, TemplateSpecializationTypeLoc>), unsigned, internal::Matcher
<TemplateArgumentLoc> > (&hasTemplateArgumentLoc_Type0
)( unsigned const &Index, internal::Matcher<TemplateArgumentLoc
> const &InnerMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_hasTemplateArgumentLoc0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
6674 AST_POLYMORPHIC_SUPPORTED_TYPES(DeclRefExpr, TemplateSpecializationTypeLoc),namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgumentLoc0Matcher
(unsigned const &AIndex, internal::Matcher<TemplateArgumentLoc
> const &AInnerMatcher) : Index(AIndex), InnerMatcher(
AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: unsigned Index; internal::Matcher<TemplateArgumentLoc>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
> hasTemplateArgumentLoc(unsigned const &Index, internal
::Matcher<TemplateArgumentLoc> const &InnerMatcher)
{ return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
>(Index, InnerMatcher); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasTemplateArgumentLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, TemplateSpecializationTypeLoc>), unsigned, internal::Matcher
<TemplateArgumentLoc> > (&hasTemplateArgumentLoc_Type0
)( unsigned const &Index, internal::Matcher<TemplateArgumentLoc
> const &InnerMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_hasTemplateArgumentLoc0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
6675 unsigned, Index, internal::Matcher<TemplateArgumentLoc>, InnerMatcher)namespace internal { template <typename NodeType, typename
ParamT1, typename ParamT2> class matcher_hasTemplateArgumentLoc0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NodeType> { public: matcher_hasTemplateArgumentLoc0Matcher
(unsigned const &AIndex, internal::Matcher<TemplateArgumentLoc
> const &AInnerMatcher) : Index(AIndex), InnerMatcher(
AInnerMatcher) {} bool matches(const NodeType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: unsigned Index; internal::Matcher<TemplateArgumentLoc>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
> hasTemplateArgumentLoc(unsigned const &Index, internal
::Matcher<TemplateArgumentLoc> const &InnerMatcher)
{ return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_hasTemplateArgumentLoc0Matcher, void(::
clang::ast_matchers::internal::TypeList<DeclRefExpr, TemplateSpecializationTypeLoc
>), unsigned, internal::Matcher<TemplateArgumentLoc>
>(Index, InnerMatcher); } typedef ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_hasTemplateArgumentLoc0Matcher
, void(::clang::ast_matchers::internal::TypeList<DeclRefExpr
, TemplateSpecializationTypeLoc>), unsigned, internal::Matcher
<TemplateArgumentLoc> > (&hasTemplateArgumentLoc_Type0
)( unsigned const &Index, internal::Matcher<TemplateArgumentLoc
> const &InnerMatcher); template <typename NodeType
, typename ParamT1, typename ParamT2> bool internal::matcher_hasTemplateArgumentLoc0Matcher
< NodeType, ParamT1, ParamT2>:: matches(const NodeType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
6676 return internal::MatchTemplateArgLocAt(Node, Index, InnerMatcher, Finder,
6677 Builder);
6678}
6679
6680/// Matches C or C++ elaborated `TypeLoc`s.
6681///
6682/// Given
6683/// \code
6684/// struct s {};
6685/// struct s ss;
6686/// \endcode
6687/// elaboratedTypeLoc()
6688/// matches the `TypeLoc` of the variable declaration of `ss`.
6689extern const internal::VariadicDynCastAllOfMatcher<TypeLoc, ElaboratedTypeLoc>
6690 elaboratedTypeLoc;
6691
6692/// Matches elaborated `TypeLoc`s that have a named `TypeLoc` matching
6693/// `InnerMatcher`.
6694///
6695/// Given
6696/// \code
6697/// template <typename T>
6698/// class C {};
6699/// class C<int> c;
6700///
6701/// class D {};
6702/// class D d;
6703/// \endcode
6704/// elaboratedTypeLoc(hasNamedTypeLoc(templateSpecializationTypeLoc()));
6705/// matches the `TypeLoc` of the variable declaration of `c`, but not `d`.
6706AST_MATCHER_P(ElaboratedTypeLoc, hasNamedTypeLoc, internal::Matcher<TypeLoc>,namespace internal { class matcher_hasNamedTypeLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedTypeLoc
> { public: explicit matcher_hasNamedTypeLoc0Matcher( internal
::Matcher<TypeLoc> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ElaboratedTypeLoc &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ElaboratedTypeLoc
> hasNamedTypeLoc( internal::Matcher<TypeLoc> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasNamedTypeLoc0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<ElaboratedTypeLoc
> ( &hasNamedTypeLoc_Type0)(internal::Matcher<TypeLoc
> const &InnerMatcher); inline bool internal::matcher_hasNamedTypeLoc0Matcher
::matches( const ElaboratedTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6707 InnerMatcher)namespace internal { class matcher_hasNamedTypeLoc0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedTypeLoc
> { public: explicit matcher_hasNamedTypeLoc0Matcher( internal
::Matcher<TypeLoc> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ElaboratedTypeLoc &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<TypeLoc> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ElaboratedTypeLoc
> hasNamedTypeLoc( internal::Matcher<TypeLoc> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasNamedTypeLoc0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<ElaboratedTypeLoc
> ( &hasNamedTypeLoc_Type0)(internal::Matcher<TypeLoc
> const &InnerMatcher); inline bool internal::matcher_hasNamedTypeLoc0Matcher
::matches( const ElaboratedTypeLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6708 return InnerMatcher.matches(Node.getNamedTypeLoc(), Finder, Builder);
6709}
6710
6711/// Matches type \c bool.
6712///
6713/// Given
6714/// \code
6715/// struct S { bool func(); };
6716/// \endcode
6717/// functionDecl(returns(booleanType()))
6718/// matches "bool func();"
6719AST_MATCHER(Type, booleanType)namespace internal { class matcher_booleanTypeMatcher : public
::clang::ast_matchers::internal::MatcherInterface<Type>
{ public: explicit matcher_booleanTypeMatcher() = default; bool
matches(const Type &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<Type> booleanType() { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_booleanTypeMatcher
()); } inline bool internal::matcher_booleanTypeMatcher::matches
( const Type &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6720 return Node.isBooleanType();
6721}
6722
6723/// Matches type \c void.
6724///
6725/// Given
6726/// \code
6727/// struct S { void func(); };
6728/// \endcode
6729/// functionDecl(returns(voidType()))
6730/// matches "void func();"
6731AST_MATCHER(Type, voidType)namespace internal { class matcher_voidTypeMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<Type> {
public: explicit matcher_voidTypeMatcher() = default; bool matches
(const Type &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<Type> voidType() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_voidTypeMatcher
()); } inline bool internal::matcher_voidTypeMatcher::matches
( const Type &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6732 return Node.isVoidType();
6733}
6734
6735template <typename NodeType>
6736using AstTypeMatcher = internal::VariadicDynCastAllOfMatcher<Type, NodeType>;
6737
6738/// Matches builtin Types.
6739///
6740/// Given
6741/// \code
6742/// struct A {};
6743/// A a;
6744/// int b;
6745/// float c;
6746/// bool d;
6747/// \endcode
6748/// builtinType()
6749/// matches "int b", "float c" and "bool d"
6750extern const AstTypeMatcher<BuiltinType> builtinType;
6751
6752/// Matches all kinds of arrays.
6753///
6754/// Given
6755/// \code
6756/// int a[] = { 2, 3 };
6757/// int b[4];
6758/// void f() { int c[a[0]]; }
6759/// \endcode
6760/// arrayType()
6761/// matches "int a[]", "int b[4]" and "int c[a[0]]";
6762extern const AstTypeMatcher<ArrayType> arrayType;
6763
6764/// Matches C99 complex types.
6765///
6766/// Given
6767/// \code
6768/// _Complex float f;
6769/// \endcode
6770/// complexType()
6771/// matches "_Complex float f"
6772extern const AstTypeMatcher<ComplexType> complexType;
6773
6774/// Matches any real floating-point type (float, double, long double).
6775///
6776/// Given
6777/// \code
6778/// int i;
6779/// float f;
6780/// \endcode
6781/// realFloatingPointType()
6782/// matches "float f" but not "int i"
6783AST_MATCHER(Type, realFloatingPointType)namespace internal { class matcher_realFloatingPointTypeMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Type> { public: explicit matcher_realFloatingPointTypeMatcher
() = default; bool matches(const Type &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<Type> realFloatingPointType
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_realFloatingPointTypeMatcher()); } inline bool
internal::matcher_realFloatingPointTypeMatcher::matches( const
Type &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6784 return Node.isRealFloatingType();
6785}
6786
6787/// Matches arrays and C99 complex types that have a specific element
6788/// type.
6789///
6790/// Given
6791/// \code
6792/// struct A {};
6793/// A a[7];
6794/// int b[7];
6795/// \endcode
6796/// arrayType(hasElementType(builtinType()))
6797/// matches "int b[7]"
6798///
6799/// Usable as: Matcher<ArrayType>, Matcher<ComplexType>
6800AST_TYPELOC_TRAVERSE_MATCHER_DECL(hasElementType, getElement,namespace internal { template <typename T> struct TypeLocMatcherhasElementTypeGetter
{ static TypeLoc (T::*value())() const { return &T::getElementLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementTypeLoc; namespace internal { template
<typename T> struct TypeMatcherhasElementTypeGetter { static
QualType (T::*value())() const { return &T::getElementType
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementType
6801 AST_POLYMORPHIC_SUPPORTED_TYPES(ArrayType,namespace internal { template <typename T> struct TypeLocMatcherhasElementTypeGetter
{ static TypeLoc (T::*value())() const { return &T::getElementLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementTypeLoc; namespace internal { template
<typename T> struct TypeMatcherhasElementTypeGetter { static
QualType (T::*value())() const { return &T::getElementType
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementType
6802 ComplexType))namespace internal { template <typename T> struct TypeLocMatcherhasElementTypeGetter
{ static TypeLoc (T::*value())() const { return &T::getElementLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementTypeLoc; namespace internal { template
<typename T> struct TypeMatcherhasElementTypeGetter { static
QualType (T::*value())() const { return &T::getElementType
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasElementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<ArrayType, ComplexType
>)>::Func hasElementType
;
6803
6804/// Matches C arrays with a specified constant size.
6805///
6806/// Given
6807/// \code
6808/// void() {
6809/// int a[2];
6810/// int b[] = { 2, 3 };
6811/// int c[b[0]];
6812/// }
6813/// \endcode
6814/// constantArrayType()
6815/// matches "int a[2]"
6816extern const AstTypeMatcher<ConstantArrayType> constantArrayType;
6817
6818/// Matches nodes that have the specified size.
6819///
6820/// Given
6821/// \code
6822/// int a[42];
6823/// int b[2 * 21];
6824/// int c[41], d[43];
6825/// char *s = "abcd";
6826/// wchar_t *ws = L"abcd";
6827/// char *w = "a";
6828/// \endcode
6829/// constantArrayType(hasSize(42))
6830/// matches "int a[42]" and "int b[2 * 21]"
6831/// stringLiteral(hasSize(4))
6832/// matches "abcd", L"abcd"
6833AST_POLYMORPHIC_MATCHER_P(hasSize,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSize0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasSize0Matcher( unsigned const &AN) : N(AN) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSize0Matcher, void(::clang::ast_matchers::internal
::TypeList<ConstantArrayType, StringLiteral>), unsigned
> hasSize(unsigned const &N) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned> (&hasSize_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasSize0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6834 AST_POLYMORPHIC_SUPPORTED_TYPES(ConstantArrayType,namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSize0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasSize0Matcher( unsigned const &AN) : N(AN) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSize0Matcher, void(::clang::ast_matchers::internal
::TypeList<ConstantArrayType, StringLiteral>), unsigned
> hasSize(unsigned const &N) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned> (&hasSize_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasSize0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6835 StringLiteral),namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSize0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasSize0Matcher( unsigned const &AN) : N(AN) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSize0Matcher, void(::clang::ast_matchers::internal
::TypeList<ConstantArrayType, StringLiteral>), unsigned
> hasSize(unsigned const &N) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned> (&hasSize_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasSize0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
6836 unsigned, N)namespace internal { template <typename NodeType, typename
ParamT> class matcher_hasSize0Matcher : public ::clang::ast_matchers
::internal::MatcherInterface<NodeType> { public: explicit
matcher_hasSize0Matcher( unsigned const &AN) : N(AN) {} bool
matches(const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; }; } inline ::
clang::ast_matchers::internal::PolymorphicMatcher< internal
::matcher_hasSize0Matcher, void(::clang::ast_matchers::internal
::TypeList<ConstantArrayType, StringLiteral>), unsigned
> hasSize(unsigned const &N) { return ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned>(N); } typedef ::clang::ast_matchers
::internal::PolymorphicMatcher< internal::matcher_hasSize0Matcher
, void(::clang::ast_matchers::internal::TypeList<ConstantArrayType
, StringLiteral>), unsigned> (&hasSize_Type0)(unsigned
const &N); template <typename NodeType, typename ParamT
> bool internal:: matcher_hasSize0Matcher<NodeType, ParamT
>::matches( const NodeType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
6837 return internal::HasSizeMatcher<NodeType>::hasSize(Node, N);
6838}
6839
6840/// Matches C++ arrays whose size is a value-dependent expression.
6841///
6842/// Given
6843/// \code
6844/// template<typename T, int Size>
6845/// class array {
6846/// T data[Size];
6847/// };
6848/// \endcode
6849/// dependentSizedArrayType
6850/// matches "T data[Size]"
6851extern const AstTypeMatcher<DependentSizedArrayType> dependentSizedArrayType;
6852
6853/// Matches C arrays with unspecified size.
6854///
6855/// Given
6856/// \code
6857/// int a[] = { 2, 3 };
6858/// int b[42];
6859/// void f(int c[]) { int d[a[0]]; };
6860/// \endcode
6861/// incompleteArrayType()
6862/// matches "int a[]" and "int c[]"
6863extern const AstTypeMatcher<IncompleteArrayType> incompleteArrayType;
6864
6865/// Matches C arrays with a specified size that is not an
6866/// integer-constant-expression.
6867///
6868/// Given
6869/// \code
6870/// void f() {
6871/// int a[] = { 2, 3 }
6872/// int b[42];
6873/// int c[a[0]];
6874/// }
6875/// \endcode
6876/// variableArrayType()
6877/// matches "int c[a[0]]"
6878extern const AstTypeMatcher<VariableArrayType> variableArrayType;
6879
6880/// Matches \c VariableArrayType nodes that have a specific size
6881/// expression.
6882///
6883/// Given
6884/// \code
6885/// void f(int b) {
6886/// int a[b];
6887/// }
6888/// \endcode
6889/// variableArrayType(hasSizeExpr(ignoringImpCasts(declRefExpr(to(
6890/// varDecl(hasName("b")))))))
6891/// matches "int a[b]"
6892AST_MATCHER_P(VariableArrayType, hasSizeExpr,namespace internal { class matcher_hasSizeExpr0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<VariableArrayType
> { public: explicit matcher_hasSizeExpr0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const VariableArrayType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<VariableArrayType
> hasSizeExpr( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasSizeExpr0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<VariableArrayType> ( &
hasSizeExpr_Type0)(internal::Matcher<Expr> const &InnerMatcher
); inline bool internal::matcher_hasSizeExpr0Matcher::matches
( const VariableArrayType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
6893 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasSizeExpr0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<VariableArrayType
> { public: explicit matcher_hasSizeExpr0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const VariableArrayType &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<VariableArrayType
> hasSizeExpr( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasSizeExpr0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<VariableArrayType> ( &
hasSizeExpr_Type0)(internal::Matcher<Expr> const &InnerMatcher
); inline bool internal::matcher_hasSizeExpr0Matcher::matches
( const VariableArrayType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
6894 return InnerMatcher.matches(*Node.getSizeExpr(), Finder, Builder);
6895}
6896
6897/// Matches atomic types.
6898///
6899/// Given
6900/// \code
6901/// _Atomic(int) i;
6902/// \endcode
6903/// atomicType()
6904/// matches "_Atomic(int) i"
6905extern const AstTypeMatcher<AtomicType> atomicType;
6906
6907/// Matches atomic types with a specific value type.
6908///
6909/// Given
6910/// \code
6911/// _Atomic(int) i;
6912/// _Atomic(float) f;
6913/// \endcode
6914/// atomicType(hasValueType(isInteger()))
6915/// matches "_Atomic(int) i"
6916///
6917/// Usable as: Matcher<AtomicType>
6918AST_TYPELOC_TRAVERSE_MATCHER_DECL(hasValueType, getValue,namespace internal { template <typename T> struct TypeLocMatcherhasValueTypeGetter
{ static TypeLoc (T::*value())() const { return &T::getValueLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherhasValueTypeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<AtomicType>)
>::Func hasValueTypeLoc; namespace internal { template <
typename T> struct TypeMatcherhasValueTypeGetter { static QualType
(T::*value())() const { return &T::getValueType; } }; } extern
const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasValueTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<AtomicType>)>
::Func hasValueType
6919 AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType))namespace internal { template <typename T> struct TypeLocMatcherhasValueTypeGetter
{ static TypeLoc (T::*value())() const { return &T::getValueLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherhasValueTypeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<AtomicType>)
>::Func hasValueTypeLoc; namespace internal { template <
typename T> struct TypeMatcherhasValueTypeGetter { static QualType
(T::*value())() const { return &T::getValueType; } }; } extern
const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasValueTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<AtomicType>)>
::Func hasValueType
;
6920
6921/// Matches types nodes representing C++11 auto types.
6922///
6923/// Given:
6924/// \code
6925/// auto n = 4;
6926/// int v[] = { 2, 3 }
6927/// for (auto i : v) { }
6928/// \endcode
6929/// autoType()
6930/// matches "auto n" and "auto i"
6931extern const AstTypeMatcher<AutoType> autoType;
6932
6933/// Matches types nodes representing C++11 decltype(<expr>) types.
6934///
6935/// Given:
6936/// \code
6937/// short i = 1;
6938/// int j = 42;
6939/// decltype(i + j) result = i + j;
6940/// \endcode
6941/// decltypeType()
6942/// matches "decltype(i + j)"
6943extern const AstTypeMatcher<DecltypeType> decltypeType;
6944
6945/// Matches \c AutoType nodes where the deduced type is a specific type.
6946///
6947/// Note: There is no \c TypeLoc for the deduced type and thus no
6948/// \c getDeducedLoc() matcher.
6949///
6950/// Given
6951/// \code
6952/// auto a = 1;
6953/// auto b = 2.0;
6954/// \endcode
6955/// autoType(hasDeducedType(isInteger()))
6956/// matches "auto a"
6957///
6958/// Usable as: Matcher<AutoType>
6959AST_TYPE_TRAVERSE_MATCHER(hasDeducedType, getDeducedType,namespace internal { template <typename T> struct TypeMatcherhasDeducedTypeGetter
{ static QualType (T::*value())() const { return &T::getDeducedType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasDeducedTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<AutoType>)>
::Func hasDeducedType
6960 AST_POLYMORPHIC_SUPPORTED_TYPES(AutoType))namespace internal { template <typename T> struct TypeMatcherhasDeducedTypeGetter
{ static QualType (T::*value())() const { return &T::getDeducedType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasDeducedTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<AutoType>)>
::Func hasDeducedType
;
6961
6962/// Matches \c DecltypeType or \c UsingType nodes to find the underlying type.
6963///
6964/// Given
6965/// \code
6966/// decltype(1) a = 1;
6967/// decltype(2.0) b = 2.0;
6968/// \endcode
6969/// decltypeType(hasUnderlyingType(isInteger()))
6970/// matches the type of "a"
6971///
6972/// Usable as: Matcher<DecltypeType>, Matcher<UsingType>
6973AST_TYPE_TRAVERSE_MATCHER(hasUnderlyingType, getUnderlyingType,namespace internal { template <typename T> struct TypeMatcherhasUnderlyingTypeGetter
{ static QualType (T::*value())() const { return &T::getUnderlyingType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasUnderlyingTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<DecltypeType, UsingType
>)>::Func hasUnderlyingType
6974 AST_POLYMORPHIC_SUPPORTED_TYPES(DecltypeType,namespace internal { template <typename T> struct TypeMatcherhasUnderlyingTypeGetter
{ static QualType (T::*value())() const { return &T::getUnderlyingType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasUnderlyingTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<DecltypeType, UsingType
>)>::Func hasUnderlyingType
6975 UsingType))namespace internal { template <typename T> struct TypeMatcherhasUnderlyingTypeGetter
{ static QualType (T::*value())() const { return &T::getUnderlyingType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasUnderlyingTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<DecltypeType, UsingType
>)>::Func hasUnderlyingType
;
6976
6977/// Matches \c FunctionType nodes.
6978///
6979/// Given
6980/// \code
6981/// int (*f)(int);
6982/// void g();
6983/// \endcode
6984/// functionType()
6985/// matches "int (*f)(int)" and the type of "g".
6986extern const AstTypeMatcher<FunctionType> functionType;
6987
6988/// Matches \c FunctionProtoType nodes.
6989///
6990/// Given
6991/// \code
6992/// int (*f)(int);
6993/// void g();
6994/// \endcode
6995/// functionProtoType()
6996/// matches "int (*f)(int)" and the type of "g" in C++ mode.
6997/// In C mode, "g" is not matched because it does not contain a prototype.
6998extern const AstTypeMatcher<FunctionProtoType> functionProtoType;
6999
7000/// Matches \c ParenType nodes.
7001///
7002/// Given
7003/// \code
7004/// int (*ptr_to_array)[4];
7005/// int *array_of_ptrs[4];
7006/// \endcode
7007///
7008/// \c varDecl(hasType(pointsTo(parenType()))) matches \c ptr_to_array but not
7009/// \c array_of_ptrs.
7010extern const AstTypeMatcher<ParenType> parenType;
7011
7012/// Matches \c ParenType nodes where the inner type is a specific type.
7013///
7014/// Given
7015/// \code
7016/// int (*ptr_to_array)[4];
7017/// int (*ptr_to_func)(int);
7018/// \endcode
7019///
7020/// \c varDecl(hasType(pointsTo(parenType(innerType(functionType()))))) matches
7021/// \c ptr_to_func but not \c ptr_to_array.
7022///
7023/// Usable as: Matcher<ParenType>
7024AST_TYPE_TRAVERSE_MATCHER(innerType, getInnerType,namespace internal { template <typename T> struct TypeMatcherinnerTypeGetter
{ static QualType (T::*value())() const { return &T::getInnerType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherinnerTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<ParenType>)>
::Func innerType
7025 AST_POLYMORPHIC_SUPPORTED_TYPES(ParenType))namespace internal { template <typename T> struct TypeMatcherinnerTypeGetter
{ static QualType (T::*value())() const { return &T::getInnerType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherinnerTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<ParenType>)>
::Func innerType
;
7026
7027/// Matches block pointer types, i.e. types syntactically represented as
7028/// "void (^)(int)".
7029///
7030/// The \c pointee is always required to be a \c FunctionType.
7031extern const AstTypeMatcher<BlockPointerType> blockPointerType;
7032
7033/// Matches member pointer types.
7034/// Given
7035/// \code
7036/// struct A { int i; }
7037/// A::* ptr = A::i;
7038/// \endcode
7039/// memberPointerType()
7040/// matches "A::* ptr"
7041extern const AstTypeMatcher<MemberPointerType> memberPointerType;
7042
7043/// Matches pointer types, but does not match Objective-C object pointer
7044/// types.
7045///
7046/// Given
7047/// \code
7048/// int *a;
7049/// int &b = *a;
7050/// int c = 5;
7051///
7052/// @interface Foo
7053/// @end
7054/// Foo *f;
7055/// \endcode
7056/// pointerType()
7057/// matches "int *a", but does not match "Foo *f".
7058extern const AstTypeMatcher<PointerType> pointerType;
7059
7060/// Matches an Objective-C object pointer type, which is different from
7061/// a pointer type, despite being syntactically similar.
7062///
7063/// Given
7064/// \code
7065/// int *a;
7066///
7067/// @interface Foo
7068/// @end
7069/// Foo *f;
7070/// \endcode
7071/// pointerType()
7072/// matches "Foo *f", but does not match "int *a".
7073extern const AstTypeMatcher<ObjCObjectPointerType> objcObjectPointerType;
7074
7075/// Matches both lvalue and rvalue reference types.
7076///
7077/// Given
7078/// \code
7079/// int *a;
7080/// int &b = *a;
7081/// int &&c = 1;
7082/// auto &d = b;
7083/// auto &&e = c;
7084/// auto &&f = 2;
7085/// int g = 5;
7086/// \endcode
7087///
7088/// \c referenceType() matches the types of \c b, \c c, \c d, \c e, and \c f.
7089extern const AstTypeMatcher<ReferenceType> referenceType;
7090
7091/// Matches lvalue reference types.
7092///
7093/// Given:
7094/// \code
7095/// int *a;
7096/// int &b = *a;
7097/// int &&c = 1;
7098/// auto &d = b;
7099/// auto &&e = c;
7100/// auto &&f = 2;
7101/// int g = 5;
7102/// \endcode
7103///
7104/// \c lValueReferenceType() matches the types of \c b, \c d, and \c e. \c e is
7105/// matched since the type is deduced as int& by reference collapsing rules.
7106extern const AstTypeMatcher<LValueReferenceType> lValueReferenceType;
7107
7108/// Matches rvalue reference types.
7109///
7110/// Given:
7111/// \code
7112/// int *a;
7113/// int &b = *a;
7114/// int &&c = 1;
7115/// auto &d = b;
7116/// auto &&e = c;
7117/// auto &&f = 2;
7118/// int g = 5;
7119/// \endcode
7120///
7121/// \c rValueReferenceType() matches the types of \c c and \c f. \c e is not
7122/// matched as it is deduced to int& by reference collapsing rules.
7123extern const AstTypeMatcher<RValueReferenceType> rValueReferenceType;
7124
7125/// Narrows PointerType (and similar) matchers to those where the
7126/// \c pointee matches a given matcher.
7127///
7128/// Given
7129/// \code
7130/// int *a;
7131/// int const *b;
7132/// float const *f;
7133/// \endcode
7134/// pointerType(pointee(isConstQualified(), isInteger()))
7135/// matches "int const *b"
7136///
7137/// Usable as: Matcher<BlockPointerType>, Matcher<MemberPointerType>,
7138/// Matcher<PointerType>, Matcher<ReferenceType>
7139AST_TYPELOC_TRAVERSE_MATCHER_DECL(namespace internal { template <typename T> struct TypeLocMatcherpointeeGetter
{ static TypeLoc (T::*value())() const { return &T::getPointeeLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointeeLoc; namespace internal { template <typename T>
struct TypeMatcherpointeeGetter { static QualType (T::*value
())() const { return &T::getPointeeType; } }; } extern const
::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointee
7140 pointee, getPointee,namespace internal { template <typename T> struct TypeLocMatcherpointeeGetter
{ static TypeLoc (T::*value())() const { return &T::getPointeeLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointeeLoc; namespace internal { template <typename T>
struct TypeMatcherpointeeGetter { static QualType (T::*value
())() const { return &T::getPointeeType; } }; } extern const
::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointee
7141 AST_POLYMORPHIC_SUPPORTED_TYPES(BlockPointerType, MemberPointerType,namespace internal { template <typename T> struct TypeLocMatcherpointeeGetter
{ static TypeLoc (T::*value())() const { return &T::getPointeeLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointeeLoc; namespace internal { template <typename T>
struct TypeMatcherpointeeGetter { static QualType (T::*value
())() const { return &T::getPointeeType; } }; } extern const
::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointee
7142 PointerType, ReferenceType))namespace internal { template <typename T> struct TypeLocMatcherpointeeGetter
{ static TypeLoc (T::*value())() const { return &T::getPointeeLoc
; } }; } extern const ::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< TypeLoc, ::clang::ast_matchers::internal:: TypeLocMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeLocTraverseMatcher, void
(::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointeeLoc; namespace internal { template <typename T>
struct TypeMatcherpointeeGetter { static QualType (T::*value
())() const { return &T::getPointeeType; } }; } extern const
::clang::ast_matchers::internal:: TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherpointeeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<BlockPointerType
, MemberPointerType, PointerType, ReferenceType>)>::Func
pointee
;
7143
7144/// Matches typedef types.
7145///
7146/// Given
7147/// \code
7148/// typedef int X;
7149/// \endcode
7150/// typedefType()
7151/// matches "typedef int X"
7152extern const AstTypeMatcher<TypedefType> typedefType;
7153
7154/// Matches enum types.
7155///
7156/// Given
7157/// \code
7158/// enum C { Green };
7159/// enum class S { Red };
7160///
7161/// C c;
7162/// S s;
7163/// \endcode
7164//
7165/// \c enumType() matches the type of the variable declarations of both \c c and
7166/// \c s.
7167extern const AstTypeMatcher<EnumType> enumType;
7168
7169/// Matches template specialization types.
7170///
7171/// Given
7172/// \code
7173/// template <typename T>
7174/// class C { };
7175///
7176/// template class C<int>; // A
7177/// C<char> var; // B
7178/// \endcode
7179///
7180/// \c templateSpecializationType() matches the type of the explicit
7181/// instantiation in \c A and the type of the variable declaration in \c B.
7182extern const AstTypeMatcher<TemplateSpecializationType>
7183 templateSpecializationType;
7184
7185/// Matches C++17 deduced template specialization types, e.g. deduced class
7186/// template types.
7187///
7188/// Given
7189/// \code
7190/// template <typename T>
7191/// class C { public: C(T); };
7192///
7193/// C c(123);
7194/// \endcode
7195/// \c deducedTemplateSpecializationType() matches the type in the declaration
7196/// of the variable \c c.
7197extern const AstTypeMatcher<DeducedTemplateSpecializationType>
7198 deducedTemplateSpecializationType;
7199
7200/// Matches types nodes representing unary type transformations.
7201///
7202/// Given:
7203/// \code
7204/// typedef __underlying_type(T) type;
7205/// \endcode
7206/// unaryTransformType()
7207/// matches "__underlying_type(T)"
7208extern const AstTypeMatcher<UnaryTransformType> unaryTransformType;
7209
7210/// Matches record types (e.g. structs, classes).
7211///
7212/// Given
7213/// \code
7214/// class C {};
7215/// struct S {};
7216///
7217/// C c;
7218/// S s;
7219/// \endcode
7220///
7221/// \c recordType() matches the type of the variable declarations of both \c c
7222/// and \c s.
7223extern const AstTypeMatcher<RecordType> recordType;
7224
7225/// Matches tag types (record and enum types).
7226///
7227/// Given
7228/// \code
7229/// enum E {};
7230/// class C {};
7231///
7232/// E e;
7233/// C c;
7234/// \endcode
7235///
7236/// \c tagType() matches the type of the variable declarations of both \c e
7237/// and \c c.
7238extern const AstTypeMatcher<TagType> tagType;
7239
7240/// Matches types specified with an elaborated type keyword or with a
7241/// qualified name.
7242///
7243/// Given
7244/// \code
7245/// namespace N {
7246/// namespace M {
7247/// class D {};
7248/// }
7249/// }
7250/// class C {};
7251///
7252/// class C c;
7253/// N::M::D d;
7254/// \endcode
7255///
7256/// \c elaboratedType() matches the type of the variable declarations of both
7257/// \c c and \c d.
7258extern const AstTypeMatcher<ElaboratedType> elaboratedType;
7259
7260/// Matches ElaboratedTypes whose qualifier, a NestedNameSpecifier,
7261/// matches \c InnerMatcher if the qualifier exists.
7262///
7263/// Given
7264/// \code
7265/// namespace N {
7266/// namespace M {
7267/// class D {};
7268/// }
7269/// }
7270/// N::M::D d;
7271/// \endcode
7272///
7273/// \c elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N"))))
7274/// matches the type of the variable declaration of \c d.
7275AST_MATCHER_P(ElaboratedType, hasQualifier,namespace internal { class matcher_hasQualifier0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedType
> { public: explicit matcher_hasQualifier0Matcher( internal
::Matcher<NestedNameSpecifier> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const ElaboratedType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifier
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ElaboratedType> hasQualifier( internal::Matcher
<NestedNameSpecifier> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasQualifier0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ElaboratedType> ( &
hasQualifier_Type0)(internal::Matcher<NestedNameSpecifier>
const &InnerMatcher); inline bool internal::matcher_hasQualifier0Matcher
::matches( const ElaboratedType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7276 internal::Matcher<NestedNameSpecifier>, InnerMatcher)namespace internal { class matcher_hasQualifier0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedType
> { public: explicit matcher_hasQualifier0Matcher( internal
::Matcher<NestedNameSpecifier> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const ElaboratedType
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifier
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<ElaboratedType> hasQualifier( internal::Matcher
<NestedNameSpecifier> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasQualifier0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<ElaboratedType> ( &
hasQualifier_Type0)(internal::Matcher<NestedNameSpecifier>
const &InnerMatcher); inline bool internal::matcher_hasQualifier0Matcher
::matches( const ElaboratedType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7277 if (const NestedNameSpecifier *Qualifier = Node.getQualifier())
7278 return InnerMatcher.matches(*Qualifier, Finder, Builder);
7279
7280 return false;
7281}
7282
7283/// Matches ElaboratedTypes whose named type matches \c InnerMatcher.
7284///
7285/// Given
7286/// \code
7287/// namespace N {
7288/// namespace M {
7289/// class D {};
7290/// }
7291/// }
7292/// N::M::D d;
7293/// \endcode
7294///
7295/// \c elaboratedType(namesType(recordType(
7296/// hasDeclaration(namedDecl(hasName("D")))))) matches the type of the variable
7297/// declaration of \c d.
7298AST_MATCHER_P(ElaboratedType, namesType, internal::Matcher<QualType>,namespace internal { class matcher_namesType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedType
> { public: explicit matcher_namesType0Matcher( internal::
Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ElaboratedType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ElaboratedType
> namesType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_namesType0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<ElaboratedType>
( &namesType_Type0)(internal::Matcher<QualType> const
&InnerMatcher); inline bool internal::matcher_namesType0Matcher
::matches( const ElaboratedType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7299 InnerMatcher)namespace internal { class matcher_namesType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ElaboratedType
> { public: explicit matcher_namesType0Matcher( internal::
Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ElaboratedType &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ElaboratedType
> namesType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_namesType0Matcher(InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<ElaboratedType>
( &namesType_Type0)(internal::Matcher<QualType> const
&InnerMatcher); inline bool internal::matcher_namesType0Matcher
::matches( const ElaboratedType &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7300 return InnerMatcher.matches(Node.getNamedType(), Finder, Builder);
7301}
7302
7303/// Matches types specified through a using declaration.
7304///
7305/// Given
7306/// \code
7307/// namespace a { struct S {}; }
7308/// using a::S;
7309/// S s;
7310/// \endcode
7311///
7312/// \c usingType() matches the type of the variable declaration of \c s.
7313extern const AstTypeMatcher<UsingType> usingType;
7314
7315/// Matches types that represent the result of substituting a type for a
7316/// template type parameter.
7317///
7318/// Given
7319/// \code
7320/// template <typename T>
7321/// void F(T t) {
7322/// int i = 1 + t;
7323/// }
7324/// \endcode
7325///
7326/// \c substTemplateTypeParmType() matches the type of 't' but not '1'
7327extern const AstTypeMatcher<SubstTemplateTypeParmType>
7328 substTemplateTypeParmType;
7329
7330/// Matches template type parameter substitutions that have a replacement
7331/// type that matches the provided matcher.
7332///
7333/// Given
7334/// \code
7335/// template <typename T>
7336/// double F(T t);
7337/// int i;
7338/// double j = F(i);
7339/// \endcode
7340///
7341/// \c substTemplateTypeParmType(hasReplacementType(type())) matches int
7342AST_TYPE_TRAVERSE_MATCHER(namespace internal { template <typename T> struct TypeMatcherhasReplacementTypeGetter
{ static QualType (T::*value())() const { return &T::getReplacementType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasReplacementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<SubstTemplateTypeParmType
>)>::Func hasReplacementType
7343 hasReplacementType, getReplacementType,namespace internal { template <typename T> struct TypeMatcherhasReplacementTypeGetter
{ static QualType (T::*value())() const { return &T::getReplacementType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasReplacementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<SubstTemplateTypeParmType
>)>::Func hasReplacementType
7344 AST_POLYMORPHIC_SUPPORTED_TYPES(SubstTemplateTypeParmType))namespace internal { template <typename T> struct TypeMatcherhasReplacementTypeGetter
{ static QualType (T::*value())() const { return &T::getReplacementType
; } }; } const ::clang::ast_matchers::internal::TypeTraversePolymorphicMatcher
< QualType, ::clang::ast_matchers::internal::TypeMatcherhasReplacementTypeGetter
, ::clang::ast_matchers::internal::TypeTraverseMatcher, void(
::clang::ast_matchers::internal::TypeList<SubstTemplateTypeParmType
>)>::Func hasReplacementType
;
7345
7346/// Matches template type parameter types.
7347///
7348/// Example matches T, but not int.
7349/// (matcher = templateTypeParmType())
7350/// \code
7351/// template <typename T> void f(int i);
7352/// \endcode
7353extern const AstTypeMatcher<TemplateTypeParmType> templateTypeParmType;
7354
7355/// Matches injected class name types.
7356///
7357/// Example matches S s, but not S<T> s.
7358/// (matcher = parmVarDecl(hasType(injectedClassNameType())))
7359/// \code
7360/// template <typename T> struct S {
7361/// void f(S s);
7362/// void g(S<T> s);
7363/// };
7364/// \endcode
7365extern const AstTypeMatcher<InjectedClassNameType> injectedClassNameType;
7366
7367/// Matches decayed type
7368/// Example matches i[] in declaration of f.
7369/// (matcher = valueDecl(hasType(decayedType(hasDecayedType(pointerType())))))
7370/// Example matches i[1].
7371/// (matcher = expr(hasType(decayedType(hasDecayedType(pointerType())))))
7372/// \code
7373/// void f(int i[]) {
7374/// i[1] = 0;
7375/// }
7376/// \endcode
7377extern const AstTypeMatcher<DecayedType> decayedType;
7378
7379/// Matches the decayed type, whoes decayed type matches \c InnerMatcher
7380AST_MATCHER_P(DecayedType, hasDecayedType, internal::Matcher<QualType>,namespace internal { class matcher_hasDecayedType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecayedType
> { public: explicit matcher_hasDecayedType0Matcher( internal
::Matcher<QualType> const &AInnerType) : InnerType(
AInnerType) {} bool matches(const DecayedType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerType; }; } inline ::
clang::ast_matchers::internal::Matcher<DecayedType> hasDecayedType
( internal::Matcher<QualType> const &InnerType) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasDecayedType0Matcher(InnerType)); } typedef ::clang
::ast_matchers::internal::Matcher<DecayedType> ( &hasDecayedType_Type0
)(internal::Matcher<QualType> const &InnerType); inline
bool internal::matcher_hasDecayedType0Matcher::matches( const
DecayedType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7381 InnerType)namespace internal { class matcher_hasDecayedType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecayedType
> { public: explicit matcher_hasDecayedType0Matcher( internal
::Matcher<QualType> const &AInnerType) : InnerType(
AInnerType) {} bool matches(const DecayedType &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<QualType> InnerType; }; } inline ::
clang::ast_matchers::internal::Matcher<DecayedType> hasDecayedType
( internal::Matcher<QualType> const &InnerType) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasDecayedType0Matcher(InnerType)); } typedef ::clang
::ast_matchers::internal::Matcher<DecayedType> ( &hasDecayedType_Type0
)(internal::Matcher<QualType> const &InnerType); inline
bool internal::matcher_hasDecayedType0Matcher::matches( const
DecayedType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7382 return InnerType.matches(Node.getDecayedType(), Finder, Builder);
7383}
7384
7385/// Matches declarations whose declaration context, interpreted as a
7386/// Decl, matches \c InnerMatcher.
7387///
7388/// Given
7389/// \code
7390/// namespace N {
7391/// namespace M {
7392/// class D {};
7393/// }
7394/// }
7395/// \endcode
7396///
7397/// \c cxxRcordDecl(hasDeclContext(namedDecl(hasName("M")))) matches the
7398/// declaration of \c class \c D.
7399AST_MATCHER_P(Decl, hasDeclContext, internal::Matcher<Decl>, InnerMatcher)namespace internal { class matcher_hasDeclContext0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Decl>
{ public: explicit matcher_hasDeclContext0Matcher( internal::
Matcher<Decl> const &AInnerMatcher) : InnerMatcher(
AInnerMatcher) {} bool matches(const Decl &Node, ::clang::
ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Decl> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<Decl> hasDeclContext(
internal::Matcher<Decl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasDeclContext0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<Decl> ( &hasDeclContext_Type0
)(internal::Matcher<Decl> const &InnerMatcher); inline
bool internal::matcher_hasDeclContext0Matcher::matches( const
Decl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7400 const DeclContext *DC = Node.getDeclContext();
7401 if (!DC) return false;
7402 return InnerMatcher.matches(*Decl::castFromDeclContext(DC), Finder, Builder);
7403}
7404
7405/// Matches nested name specifiers.
7406///
7407/// Given
7408/// \code
7409/// namespace ns {
7410/// struct A { static void f(); };
7411/// void A::f() {}
7412/// void g() { A::f(); }
7413/// }
7414/// ns::A a;
7415/// \endcode
7416/// nestedNameSpecifier()
7417/// matches "ns::" and both "A::"
7418extern const internal::VariadicAllOfMatcher<NestedNameSpecifier>
7419 nestedNameSpecifier;
7420
7421/// Same as \c nestedNameSpecifier but matches \c NestedNameSpecifierLoc.
7422extern const internal::VariadicAllOfMatcher<NestedNameSpecifierLoc>
7423 nestedNameSpecifierLoc;
7424
7425/// Matches \c NestedNameSpecifierLocs for which the given inner
7426/// NestedNameSpecifier-matcher matches.
7427AST_MATCHER_FUNCTION_P_OVERLOAD(inline internal::BindableMatcher<NestedNameSpecifierLoc>
loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher); typedef internal::BindableMatcher<NestedNameSpecifierLoc
> (&loc_Type1)(internal::Matcher<NestedNameSpecifier
> const &); inline internal::BindableMatcher<NestedNameSpecifierLoc
> loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher)
7428 internal::BindableMatcher<NestedNameSpecifierLoc>, loc,inline internal::BindableMatcher<NestedNameSpecifierLoc>
loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher); typedef internal::BindableMatcher<NestedNameSpecifierLoc
> (&loc_Type1)(internal::Matcher<NestedNameSpecifier
> const &); inline internal::BindableMatcher<NestedNameSpecifierLoc
> loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher)
7429 internal::Matcher<NestedNameSpecifier>, InnerMatcher, 1)inline internal::BindableMatcher<NestedNameSpecifierLoc>
loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher); typedef internal::BindableMatcher<NestedNameSpecifierLoc
> (&loc_Type1)(internal::Matcher<NestedNameSpecifier
> const &); inline internal::BindableMatcher<NestedNameSpecifierLoc
> loc(internal::Matcher<NestedNameSpecifier> const &
InnerMatcher)
{
7430 return internal::BindableMatcher<NestedNameSpecifierLoc>(
7431 new internal::LocMatcher<NestedNameSpecifierLoc, NestedNameSpecifier>(
7432 InnerMatcher));
7433}
7434
7435/// Matches nested name specifiers that specify a type matching the
7436/// given \c QualType matcher without qualifiers.
7437///
7438/// Given
7439/// \code
7440/// struct A { struct B { struct C {}; }; };
7441/// A::B::C c;
7442/// \endcode
7443/// nestedNameSpecifier(specifiesType(
7444/// hasDeclaration(cxxRecordDecl(hasName("A")))
7445/// ))
7446/// matches "A::"
7447AST_MATCHER_P(NestedNameSpecifier, specifiesType,namespace internal { class matcher_specifiesType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifier
> { public: explicit matcher_specifiesType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NestedNameSpecifier &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> specifiesType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_specifiesType0Matcher(InnerMatcher));
} typedef ::clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> ( &specifiesType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_specifiesType0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7448 internal::Matcher<QualType>, InnerMatcher)namespace internal { class matcher_specifiesType0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifier
> { public: explicit matcher_specifiesType0Matcher( internal
::Matcher<QualType> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const NestedNameSpecifier &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<QualType> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> specifiesType( internal::Matcher<QualType> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_specifiesType0Matcher(InnerMatcher));
} typedef ::clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> ( &specifiesType_Type0)(internal::Matcher<QualType
> const &InnerMatcher); inline bool internal::matcher_specifiesType0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7449 if (!Node.getAsType())
7450 return false;
7451 return InnerMatcher.matches(QualType(Node.getAsType(), 0), Finder, Builder);
7452}
7453
7454/// Matches nested name specifier locs that specify a type matching the
7455/// given \c TypeLoc.
7456///
7457/// Given
7458/// \code
7459/// struct A { struct B { struct C {}; }; };
7460/// A::B::C c;
7461/// \endcode
7462/// nestedNameSpecifierLoc(specifiesTypeLoc(loc(type(
7463/// hasDeclaration(cxxRecordDecl(hasName("A")))))))
7464/// matches "A::"
7465AST_MATCHER_P(NestedNameSpecifierLoc, specifiesTypeLoc,namespace internal { class matcher_specifiesTypeLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NestedNameSpecifierLoc> { public: explicit matcher_specifiesTypeLoc0Matcher
( internal::Matcher<TypeLoc> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifierLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifierLoc> specifiesTypeLoc( internal
::Matcher<TypeLoc> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_specifiesTypeLoc0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<NestedNameSpecifierLoc> ( &specifiesTypeLoc_Type0)
(internal::Matcher<TypeLoc> const &InnerMatcher); inline
bool internal::matcher_specifiesTypeLoc0Matcher::matches( const
NestedNameSpecifierLoc &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7466 internal::Matcher<TypeLoc>, InnerMatcher)namespace internal { class matcher_specifiesTypeLoc0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
NestedNameSpecifierLoc> { public: explicit matcher_specifiesTypeLoc0Matcher
( internal::Matcher<TypeLoc> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifierLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<TypeLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifierLoc> specifiesTypeLoc( internal
::Matcher<TypeLoc> const &InnerMatcher) { return ::
clang::ast_matchers::internal::makeMatcher( new internal::matcher_specifiesTypeLoc0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<NestedNameSpecifierLoc> ( &specifiesTypeLoc_Type0)
(internal::Matcher<TypeLoc> const &InnerMatcher); inline
bool internal::matcher_specifiesTypeLoc0Matcher::matches( const
NestedNameSpecifierLoc &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7467 return Node && Node.getNestedNameSpecifier()->getAsType() &&
7468 InnerMatcher.matches(Node.getTypeLoc(), Finder, Builder);
7469}
7470
7471/// Matches on the prefix of a \c NestedNameSpecifier.
7472///
7473/// Given
7474/// \code
7475/// struct A { struct B { struct C {}; }; };
7476/// A::B::C c;
7477/// \endcode
7478/// nestedNameSpecifier(hasPrefix(specifiesType(asString("struct A")))) and
7479/// matches "A::"
7480AST_MATCHER_P_OVERLOAD(NestedNameSpecifier, hasPrefix,namespace internal { class matcher_hasPrefix0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifier
> { public: explicit matcher_hasPrefix0Matcher( internal::
Matcher<NestedNameSpecifier> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifier
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifier
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifier> hasPrefix( internal::Matcher
<NestedNameSpecifier> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasPrefix0Matcher(InnerMatcher)); } typedef ::clang::
ast_matchers::internal::Matcher<NestedNameSpecifier> ( &
hasPrefix_Type0)(internal::Matcher<NestedNameSpecifier>
const &InnerMatcher); inline bool internal::matcher_hasPrefix0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7481 internal::Matcher<NestedNameSpecifier>, InnerMatcher,namespace internal { class matcher_hasPrefix0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifier
> { public: explicit matcher_hasPrefix0Matcher( internal::
Matcher<NestedNameSpecifier> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifier
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifier
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifier> hasPrefix( internal::Matcher
<NestedNameSpecifier> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasPrefix0Matcher(InnerMatcher)); } typedef ::clang::
ast_matchers::internal::Matcher<NestedNameSpecifier> ( &
hasPrefix_Type0)(internal::Matcher<NestedNameSpecifier>
const &InnerMatcher); inline bool internal::matcher_hasPrefix0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7482 0)namespace internal { class matcher_hasPrefix0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifier
> { public: explicit matcher_hasPrefix0Matcher( internal::
Matcher<NestedNameSpecifier> const &AInnerMatcher) :
InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifier
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifier
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifier> hasPrefix( internal::Matcher
<NestedNameSpecifier> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasPrefix0Matcher(InnerMatcher)); } typedef ::clang::
ast_matchers::internal::Matcher<NestedNameSpecifier> ( &
hasPrefix_Type0)(internal::Matcher<NestedNameSpecifier>
const &InnerMatcher); inline bool internal::matcher_hasPrefix0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7483 const NestedNameSpecifier *NextNode = Node.getPrefix();
7484 if (!NextNode)
7485 return false;
7486 return InnerMatcher.matches(*NextNode, Finder, Builder);
7487}
7488
7489/// Matches on the prefix of a \c NestedNameSpecifierLoc.
7490///
7491/// Given
7492/// \code
7493/// struct A { struct B { struct C {}; }; };
7494/// A::B::C c;
7495/// \endcode
7496/// nestedNameSpecifierLoc(hasPrefix(loc(specifiesType(asString("struct A")))))
7497/// matches "A::"
7498AST_MATCHER_P_OVERLOAD(NestedNameSpecifierLoc, hasPrefix,namespace internal { class matcher_hasPrefix1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifierLoc
> { public: explicit matcher_hasPrefix1Matcher( internal::
Matcher<NestedNameSpecifierLoc> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifierLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifierLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifierLoc> hasPrefix( internal::
Matcher<NestedNameSpecifierLoc> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasPrefix1Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<NestedNameSpecifierLoc>
( &hasPrefix_Type1)(internal::Matcher<NestedNameSpecifierLoc
> const &InnerMatcher); inline bool internal::matcher_hasPrefix1Matcher
::matches( const NestedNameSpecifierLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7499 internal::Matcher<NestedNameSpecifierLoc>, InnerMatcher,namespace internal { class matcher_hasPrefix1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifierLoc
> { public: explicit matcher_hasPrefix1Matcher( internal::
Matcher<NestedNameSpecifierLoc> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifierLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifierLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifierLoc> hasPrefix( internal::
Matcher<NestedNameSpecifierLoc> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasPrefix1Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<NestedNameSpecifierLoc>
( &hasPrefix_Type1)(internal::Matcher<NestedNameSpecifierLoc
> const &InnerMatcher); inline bool internal::matcher_hasPrefix1Matcher
::matches( const NestedNameSpecifierLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7500 1)namespace internal { class matcher_hasPrefix1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<NestedNameSpecifierLoc
> { public: explicit matcher_hasPrefix1Matcher( internal::
Matcher<NestedNameSpecifierLoc> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifierLoc
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NestedNameSpecifierLoc
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifierLoc> hasPrefix( internal::
Matcher<NestedNameSpecifierLoc> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasPrefix1Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<NestedNameSpecifierLoc>
( &hasPrefix_Type1)(internal::Matcher<NestedNameSpecifierLoc
> const &InnerMatcher); inline bool internal::matcher_hasPrefix1Matcher
::matches( const NestedNameSpecifierLoc &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7501 NestedNameSpecifierLoc NextNode = Node.getPrefix();
7502 if (!NextNode)
7503 return false;
7504 return InnerMatcher.matches(NextNode, Finder, Builder);
7505}
7506
7507/// Matches nested name specifiers that specify a namespace matching the
7508/// given namespace matcher.
7509///
7510/// Given
7511/// \code
7512/// namespace ns { struct A {}; }
7513/// ns::A a;
7514/// \endcode
7515/// nestedNameSpecifier(specifiesNamespace(hasName("ns")))
7516/// matches "ns::"
7517AST_MATCHER_P(NestedNameSpecifier, specifiesNamespace,namespace internal { class matcher_specifiesNamespace0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NestedNameSpecifier> { public: explicit matcher_specifiesNamespace0Matcher
( internal::Matcher<NamespaceDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifier
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamespaceDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifier> specifiesNamespace( internal
::Matcher<NamespaceDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_specifiesNamespace0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> ( &specifiesNamespace_Type0)(internal::Matcher<NamespaceDecl
> const &InnerMatcher); inline bool internal::matcher_specifiesNamespace0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7518 internal::Matcher<NamespaceDecl>, InnerMatcher)namespace internal { class matcher_specifiesNamespace0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NestedNameSpecifier> { public: explicit matcher_specifiesNamespace0Matcher
( internal::Matcher<NamespaceDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const NestedNameSpecifier
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<NamespaceDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<NestedNameSpecifier> specifiesNamespace( internal
::Matcher<NamespaceDecl> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_specifiesNamespace0Matcher(InnerMatcher)); } typedef ::
clang::ast_matchers::internal::Matcher<NestedNameSpecifier
> ( &specifiesNamespace_Type0)(internal::Matcher<NamespaceDecl
> const &InnerMatcher); inline bool internal::matcher_specifiesNamespace0Matcher
::matches( const NestedNameSpecifier &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7519 if (!Node.getAsNamespace())
7520 return false;
7521 return InnerMatcher.matches(*Node.getAsNamespace(), Finder, Builder);
7522}
7523
7524/// Matches attributes.
7525/// Attributes may be attached with a variety of different syntaxes (including
7526/// keywords, C++11 attributes, GNU ``__attribute``` and MSVC `__declspec``,
7527/// and ``#pragma``s). They may also be implicit.
7528///
7529/// Given
7530/// \code
7531/// struct [[nodiscard]] Foo{};
7532/// void bar(int * __attribute__((nonnull)) );
7533/// __declspec(noinline) void baz();
7534///
7535/// #pragma omp declare simd
7536/// int min();
7537/// \endcode
7538/// attr()
7539/// matches "nodiscard", "nonnull", "noinline", and the whole "#pragma" line.
7540extern const internal::VariadicAllOfMatcher<Attr> attr;
7541
7542/// Overloads for the \c equalsNode matcher.
7543/// FIXME: Implement for other node types.
7544/// @{
7545
7546/// Matches if a node equals another node.
7547///
7548/// \c Decl has pointer identity in the AST.
7549AST_MATCHER_P_OVERLOAD(Decl, equalsNode, const Decl*, Other, 0)namespace internal { class matcher_equalsNode0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Decl>
{ public: explicit matcher_equalsNode0Matcher( const Decl* const
&AOther) : Other(AOther) {} bool matches(const Decl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: const Decl* Other; }; } inline ::clang
::ast_matchers::internal::Matcher<Decl> equalsNode( const
Decl* const &Other) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_equalsNode0Matcher(Other
)); } typedef ::clang::ast_matchers::internal::Matcher<Decl
> ( &equalsNode_Type0)(const Decl* const &Other); inline
bool internal::matcher_equalsNode0Matcher::matches( const Decl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7550 return &Node == Other;
7551}
7552/// Matches if a node equals another node.
7553///
7554/// \c Stmt has pointer identity in the AST.
7555AST_MATCHER_P_OVERLOAD(Stmt, equalsNode, const Stmt*, Other, 1)namespace internal { class matcher_equalsNode1Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Stmt>
{ public: explicit matcher_equalsNode1Matcher( const Stmt* const
&AOther) : Other(AOther) {} bool matches(const Stmt &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: const Stmt* Other; }; } inline ::clang
::ast_matchers::internal::Matcher<Stmt> equalsNode( const
Stmt* const &Other) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_equalsNode1Matcher(Other
)); } typedef ::clang::ast_matchers::internal::Matcher<Stmt
> ( &equalsNode_Type1)(const Stmt* const &Other); inline
bool internal::matcher_equalsNode1Matcher::matches( const Stmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7556 return &Node == Other;
7557}
7558/// Matches if a node equals another node.
7559///
7560/// \c Type has pointer identity in the AST.
7561AST_MATCHER_P_OVERLOAD(Type, equalsNode, const Type*, Other, 2)namespace internal { class matcher_equalsNode2Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Type>
{ public: explicit matcher_equalsNode2Matcher( const Type* const
&AOther) : Other(AOther) {} bool matches(const Type &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: const Type* Other; }; } inline ::clang
::ast_matchers::internal::Matcher<Type> equalsNode( const
Type* const &Other) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_equalsNode2Matcher(Other
)); } typedef ::clang::ast_matchers::internal::Matcher<Type
> ( &equalsNode_Type2)(const Type* const &Other); inline
bool internal::matcher_equalsNode2Matcher::matches( const Type
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7562 return &Node == Other;
7563}
7564
7565/// @}
7566
7567/// Matches each case or default statement belonging to the given switch
7568/// statement. This matcher may produce multiple matches.
7569///
7570/// Given
7571/// \code
7572/// switch (1) { case 1: case 2: default: switch (2) { case 3: case 4: ; } }
7573/// \endcode
7574/// switchStmt(forEachSwitchCase(caseStmt().bind("c"))).bind("s")
7575/// matches four times, with "c" binding each of "case 1:", "case 2:",
7576/// "case 3:" and "case 4:", and "s" respectively binding "switch (1)",
7577/// "switch (1)", "switch (2)" and "switch (2)".
7578AST_MATCHER_P(SwitchStmt, forEachSwitchCase, internal::Matcher<SwitchCase>,namespace internal { class matcher_forEachSwitchCase0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
SwitchStmt> { public: explicit matcher_forEachSwitchCase0Matcher
( internal::Matcher<SwitchCase> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const SwitchStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<SwitchCase
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<SwitchStmt> forEachSwitchCase( internal::Matcher
<SwitchCase> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_forEachSwitchCase0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<SwitchStmt> ( &forEachSwitchCase_Type0)(internal::
Matcher<SwitchCase> const &InnerMatcher); inline bool
internal::matcher_forEachSwitchCase0Matcher::matches( const SwitchStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7579 InnerMatcher)namespace internal { class matcher_forEachSwitchCase0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
SwitchStmt> { public: explicit matcher_forEachSwitchCase0Matcher
( internal::Matcher<SwitchCase> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const SwitchStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<SwitchCase
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<SwitchStmt> forEachSwitchCase( internal::Matcher
<SwitchCase> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_forEachSwitchCase0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<SwitchStmt> ( &forEachSwitchCase_Type0)(internal::
Matcher<SwitchCase> const &InnerMatcher); inline bool
internal::matcher_forEachSwitchCase0Matcher::matches( const SwitchStmt
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7580 BoundNodesTreeBuilder Result;
7581 // FIXME: getSwitchCaseList() does not necessarily guarantee a stable
7582 // iteration order. We should use the more general iterating matchers once
7583 // they are capable of expressing this matcher (for example, it should ignore
7584 // case statements belonging to nested switch statements).
7585 bool Matched = false;
7586 for (const SwitchCase *SC = Node.getSwitchCaseList(); SC;
7587 SC = SC->getNextSwitchCase()) {
7588 BoundNodesTreeBuilder CaseBuilder(*Builder);
7589 bool CaseMatched = InnerMatcher.matches(*SC, Finder, &CaseBuilder);
7590 if (CaseMatched) {
7591 Matched = true;
7592 Result.addMatch(CaseBuilder);
7593 }
7594 }
7595 *Builder = std::move(Result);
7596 return Matched;
7597}
7598
7599/// Matches each constructor initializer in a constructor definition.
7600///
7601/// Given
7602/// \code
7603/// class A { A() : i(42), j(42) {} int i; int j; };
7604/// \endcode
7605/// cxxConstructorDecl(forEachConstructorInitializer(
7606/// forField(decl().bind("x"))
7607/// ))
7608/// will trigger two matches, binding for 'i' and 'j' respectively.
7609AST_MATCHER_P(CXXConstructorDecl, forEachConstructorInitializer,namespace internal { class matcher_forEachConstructorInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_forEachConstructorInitializer0Matcher
( internal::Matcher<CXXCtorInitializer> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXCtorInitializer
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> forEachConstructorInitializer
( internal::Matcher<CXXCtorInitializer> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_forEachConstructorInitializer0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXConstructorDecl
> ( &forEachConstructorInitializer_Type0)(internal::Matcher
<CXXCtorInitializer> const &InnerMatcher); inline bool
internal::matcher_forEachConstructorInitializer0Matcher::matches
( const CXXConstructorDecl &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7610 internal::Matcher<CXXCtorInitializer>, InnerMatcher)namespace internal { class matcher_forEachConstructorInitializer0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_forEachConstructorInitializer0Matcher
( internal::Matcher<CXXCtorInitializer> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<CXXCtorInitializer
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> forEachConstructorInitializer
( internal::Matcher<CXXCtorInitializer> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_forEachConstructorInitializer0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<CXXConstructorDecl
> ( &forEachConstructorInitializer_Type0)(internal::Matcher
<CXXCtorInitializer> const &InnerMatcher); inline bool
internal::matcher_forEachConstructorInitializer0Matcher::matches
( const CXXConstructorDecl &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7611 BoundNodesTreeBuilder Result;
7612 bool Matched = false;
7613 for (const auto *I : Node.inits()) {
7614 if (Finder->isTraversalIgnoringImplicitNodes() && !I->isWritten())
7615 continue;
7616 BoundNodesTreeBuilder InitBuilder(*Builder);
7617 if (InnerMatcher.matches(*I, Finder, &InitBuilder)) {
7618 Matched = true;
7619 Result.addMatch(InitBuilder);
7620 }
7621 }
7622 *Builder = std::move(Result);
7623 return Matched;
7624}
7625
7626/// Matches constructor declarations that are copy constructors.
7627///
7628/// Given
7629/// \code
7630/// struct S {
7631/// S(); // #1
7632/// S(const S &); // #2
7633/// S(S &&); // #3
7634/// };
7635/// \endcode
7636/// cxxConstructorDecl(isCopyConstructor()) will match #2, but not #1 or #3.
7637AST_MATCHER(CXXConstructorDecl, isCopyConstructor)namespace internal { class matcher_isCopyConstructorMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_isCopyConstructorMatcher
() = default; bool matches(const CXXConstructorDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> isCopyConstructor() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isCopyConstructorMatcher()); } inline bool internal::
matcher_isCopyConstructorMatcher::matches( const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7638 return Node.isCopyConstructor();
7639}
7640
7641/// Matches constructor declarations that are move constructors.
7642///
7643/// Given
7644/// \code
7645/// struct S {
7646/// S(); // #1
7647/// S(const S &); // #2
7648/// S(S &&); // #3
7649/// };
7650/// \endcode
7651/// cxxConstructorDecl(isMoveConstructor()) will match #3, but not #1 or #2.
7652AST_MATCHER(CXXConstructorDecl, isMoveConstructor)namespace internal { class matcher_isMoveConstructorMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_isMoveConstructorMatcher
() = default; bool matches(const CXXConstructorDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> isMoveConstructor() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isMoveConstructorMatcher()); } inline bool internal::
matcher_isMoveConstructorMatcher::matches( const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7653 return Node.isMoveConstructor();
7654}
7655
7656/// Matches constructor declarations that are default constructors.
7657///
7658/// Given
7659/// \code
7660/// struct S {
7661/// S(); // #1
7662/// S(const S &); // #2
7663/// S(S &&); // #3
7664/// };
7665/// \endcode
7666/// cxxConstructorDecl(isDefaultConstructor()) will match #1, but not #2 or #3.
7667AST_MATCHER(CXXConstructorDecl, isDefaultConstructor)namespace internal { class matcher_isDefaultConstructorMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_isDefaultConstructorMatcher
() = default; bool matches(const CXXConstructorDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> isDefaultConstructor() { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_isDefaultConstructorMatcher()); } inline bool internal
::matcher_isDefaultConstructorMatcher::matches( const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7668 return Node.isDefaultConstructor();
7669}
7670
7671/// Matches constructors that delegate to another constructor.
7672///
7673/// Given
7674/// \code
7675/// struct S {
7676/// S(); // #1
7677/// S(int) {} // #2
7678/// S(S &&) : S() {} // #3
7679/// };
7680/// S::S() : S(0) {} // #4
7681/// \endcode
7682/// cxxConstructorDecl(isDelegatingConstructor()) will match #3 and #4, but not
7683/// #1 or #2.
7684AST_MATCHER(CXXConstructorDecl, isDelegatingConstructor)namespace internal { class matcher_isDelegatingConstructorMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXConstructorDecl> { public: explicit matcher_isDelegatingConstructorMatcher
() = default; bool matches(const CXXConstructorDecl &Node
, ::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::
clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<CXXConstructorDecl> isDelegatingConstructor()
{ return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_isDelegatingConstructorMatcher()); } inline bool internal
::matcher_isDelegatingConstructorMatcher::matches( const CXXConstructorDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7685 return Node.isDelegatingConstructor();
7686}
7687
7688/// Matches constructor, conversion function, and deduction guide declarations
7689/// that have an explicit specifier if this explicit specifier is resolved to
7690/// true.
7691///
7692/// Given
7693/// \code
7694/// template<bool b>
7695/// struct S {
7696/// S(int); // #1
7697/// explicit S(double); // #2
7698/// operator int(); // #3
7699/// explicit operator bool(); // #4
7700/// explicit(false) S(bool) // # 7
7701/// explicit(true) S(char) // # 8
7702/// explicit(b) S(S) // # 9
7703/// };
7704/// S(int) -> S<true> // #5
7705/// explicit S(double) -> S<false> // #6
7706/// \endcode
7707/// cxxConstructorDecl(isExplicit()) will match #2 and #8, but not #1, #7 or #9.
7708/// cxxConversionDecl(isExplicit()) will match #4, but not #3.
7709/// cxxDeductionGuideDecl(isExplicit()) will match #6, but not #5.
7710AST_POLYMORPHIC_MATCHER(isExplicit, AST_POLYMORPHIC_SUPPORTED_TYPES(namespace internal { template <typename NodeType> class
matcher_isExplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXConstructorDecl
, CXXConversionDecl, CXXDeductionGuideDecl>)> isExplicit
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExplicitMatcher, void(::clang::ast_matchers
::internal::TypeList<CXXConstructorDecl, CXXConversionDecl
, CXXDeductionGuideDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7711 CXXConstructorDecl, CXXConversionDecl,namespace internal { template <typename NodeType> class
matcher_isExplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXConstructorDecl
, CXXConversionDecl, CXXDeductionGuideDecl>)> isExplicit
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExplicitMatcher, void(::clang::ast_matchers
::internal::TypeList<CXXConstructorDecl, CXXConversionDecl
, CXXDeductionGuideDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7712 CXXDeductionGuideDecl))namespace internal { template <typename NodeType> class
matcher_isExplicitMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isExplicitMatcher
, void(::clang::ast_matchers::internal::TypeList<CXXConstructorDecl
, CXXConversionDecl, CXXDeductionGuideDecl>)> isExplicit
() { return ::clang::ast_matchers::internal::PolymorphicMatcher
< internal::matcher_isExplicitMatcher, void(::clang::ast_matchers
::internal::TypeList<CXXConstructorDecl, CXXConversionDecl
, CXXDeductionGuideDecl>)>(); } template <typename NodeType
> bool internal::matcher_isExplicitMatcher<NodeType>
::matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7713 return Node.isExplicit();
7714}
7715
7716/// Matches the expression in an explicit specifier if present in the given
7717/// declaration.
7718///
7719/// Given
7720/// \code
7721/// template<bool b>
7722/// struct S {
7723/// S(int); // #1
7724/// explicit S(double); // #2
7725/// operator int(); // #3
7726/// explicit operator bool(); // #4
7727/// explicit(false) S(bool) // # 7
7728/// explicit(true) S(char) // # 8
7729/// explicit(b) S(S) // # 9
7730/// };
7731/// S(int) -> S<true> // #5
7732/// explicit S(double) -> S<false> // #6
7733/// \endcode
7734/// cxxConstructorDecl(hasExplicitSpecifier(constantExpr())) will match #7, #8 and #9, but not #1 or #2.
7735/// cxxConversionDecl(hasExplicitSpecifier(constantExpr())) will not match #3 or #4.
7736/// cxxDeductionGuideDecl(hasExplicitSpecifier(constantExpr())) will not match #5 or #6.
7737AST_MATCHER_P(FunctionDecl, hasExplicitSpecifier, internal::Matcher<Expr>,namespace internal { class matcher_hasExplicitSpecifier0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
FunctionDecl> { public: explicit matcher_hasExplicitSpecifier0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const FunctionDecl &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FunctionDecl
> hasExplicitSpecifier( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasExplicitSpecifier0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FunctionDecl> ( &hasExplicitSpecifier_Type0)(internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasExplicitSpecifier0Matcher::matches( const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7738 InnerMatcher)namespace internal { class matcher_hasExplicitSpecifier0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
FunctionDecl> { public: explicit matcher_hasExplicitSpecifier0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const FunctionDecl &Node,
::clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<FunctionDecl
> hasExplicitSpecifier( internal::Matcher<Expr> const
&InnerMatcher) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_hasExplicitSpecifier0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<FunctionDecl> ( &hasExplicitSpecifier_Type0)(internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasExplicitSpecifier0Matcher::matches( const FunctionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7739 ExplicitSpecifier ES = ExplicitSpecifier::getFromDecl(&Node);
7740 if (!ES.getExpr())
7741 return false;
7742
7743 ASTChildrenNotSpelledInSourceScope RAII(Finder, false);
7744
7745 return InnerMatcher.matches(*ES.getExpr(), Finder, Builder);
7746}
7747
7748/// Matches functions, variables and namespace declarations that are marked with
7749/// the inline keyword.
7750///
7751/// Given
7752/// \code
7753/// inline void f();
7754/// void g();
7755/// namespace n {
7756/// inline namespace m {}
7757/// }
7758/// inline int Foo = 5;
7759/// \endcode
7760/// functionDecl(isInline()) will match ::f().
7761/// namespaceDecl(isInline()) will match n::m.
7762/// varDecl(isInline()) will match Foo;
7763AST_POLYMORPHIC_MATCHER(isInline, AST_POLYMORPHIC_SUPPORTED_TYPES(NamespaceDecl,namespace internal { template <typename NodeType> class
matcher_isInlineMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)> isInline() { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)>(); } template <typename NodeType
> bool internal::matcher_isInlineMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7764 FunctionDecl,namespace internal { template <typename NodeType> class
matcher_isInlineMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)> isInline() { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)>(); } template <typename NodeType
> bool internal::matcher_isInlineMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7765 VarDecl))namespace internal { template <typename NodeType> class
matcher_isInlineMatcher : public ::clang::ast_matchers::internal
::MatcherInterface<NodeType> { public: bool matches(const
NodeType &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)> isInline() { return ::clang::
ast_matchers::internal::PolymorphicMatcher< internal::matcher_isInlineMatcher
, void(::clang::ast_matchers::internal::TypeList<NamespaceDecl
, FunctionDecl, VarDecl>)>(); } template <typename NodeType
> bool internal::matcher_isInlineMatcher<NodeType>::
matches( const NodeType &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7766 // This is required because the spelling of the function used to determine
7767 // whether inline is specified or not differs between the polymorphic types.
7768 if (const auto *FD = dyn_cast<FunctionDecl>(&Node))
7769 return FD->isInlineSpecified();
7770 if (const auto *NSD = dyn_cast<NamespaceDecl>(&Node))
7771 return NSD->isInline();
7772 if (const auto *VD = dyn_cast<VarDecl>(&Node))
7773 return VD->isInline();
7774 llvm_unreachable("Not a valid polymorphic type")::llvm::llvm_unreachable_internal("Not a valid polymorphic type"
, "clang/include/clang/ASTMatchers/ASTMatchers.h", 7774)
;
7775}
7776
7777/// Matches anonymous namespace declarations.
7778///
7779/// Given
7780/// \code
7781/// namespace n {
7782/// namespace {} // #1
7783/// }
7784/// \endcode
7785/// namespaceDecl(isAnonymous()) will match #1 but not ::n.
7786AST_MATCHER(NamespaceDecl, isAnonymous)namespace internal { class matcher_isAnonymousMatcher : public
::clang::ast_matchers::internal::MatcherInterface<NamespaceDecl
> { public: explicit matcher_isAnonymousMatcher() = default
; bool matches(const NamespaceDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<NamespaceDecl>
isAnonymous() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isAnonymousMatcher()); } inline bool internal
::matcher_isAnonymousMatcher::matches( const NamespaceDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
7787 return Node.isAnonymousNamespace();
7788}
7789
7790/// Matches declarations in the namespace `std`, but not in nested namespaces.
7791///
7792/// Given
7793/// \code
7794/// class vector {};
7795/// namespace foo {
7796/// class vector {};
7797/// namespace std {
7798/// class vector {};
7799/// }
7800/// }
7801/// namespace std {
7802/// inline namespace __1 {
7803/// class vector {}; // #1
7804/// namespace experimental {
7805/// class vector {};
7806/// }
7807/// }
7808/// }
7809/// \endcode
7810/// cxxRecordDecl(hasName("vector"), isInStdNamespace()) will match only #1.
7811AST_MATCHER(Decl, isInStdNamespace)namespace internal { class matcher_isInStdNamespaceMatcher : public
::clang::ast_matchers::internal::MatcherInterface<Decl>
{ public: explicit matcher_isInStdNamespaceMatcher() = default
; bool matches(const Decl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<Decl> isInStdNamespace() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isInStdNamespaceMatcher
()); } inline bool internal::matcher_isInStdNamespaceMatcher::
matches( const Decl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{ return Node.isInStdNamespace(); }
7812
7813/// Matches declarations in an anonymous namespace.
7814///
7815/// Given
7816/// \code
7817/// class vector {};
7818/// namespace foo {
7819/// class vector {};
7820/// namespace {
7821/// class vector {}; // #1
7822/// }
7823/// }
7824/// namespace {
7825/// class vector {}; // #2
7826/// namespace foo {
7827/// class vector{}; // #3
7828/// }
7829/// }
7830/// \endcode
7831/// cxxRecordDecl(hasName("vector"), isInAnonymousNamespace()) will match
7832/// #1, #2 and #3.
7833AST_MATCHER(Decl, isInAnonymousNamespace)namespace internal { class matcher_isInAnonymousNamespaceMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Decl> { public: explicit matcher_isInAnonymousNamespaceMatcher
() = default; bool matches(const Decl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<Decl> isInAnonymousNamespace
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isInAnonymousNamespaceMatcher()); } inline
bool internal::matcher_isInAnonymousNamespaceMatcher::matches
( const Decl &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7834 return Node.isInAnonymousNamespace();
7835}
7836
7837/// If the given case statement does not use the GNU case range
7838/// extension, matches the constant given in the statement.
7839///
7840/// Given
7841/// \code
7842/// switch (1) { case 1: case 1+1: case 3 ... 4: ; }
7843/// \endcode
7844/// caseStmt(hasCaseConstant(integerLiteral()))
7845/// matches "case 1:"
7846AST_MATCHER_P(CaseStmt, hasCaseConstant, internal::Matcher<Expr>,namespace internal { class matcher_hasCaseConstant0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CaseStmt
> { public: explicit matcher_hasCaseConstant0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CaseStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<CaseStmt> hasCaseConstant
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasCaseConstant0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<CaseStmt> ( &hasCaseConstant_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasCaseConstant0Matcher::matches( const
CaseStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7847 InnerMatcher)namespace internal { class matcher_hasCaseConstant0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CaseStmt
> { public: explicit matcher_hasCaseConstant0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CaseStmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<Expr> InnerMatcher; }; } inline ::clang
::ast_matchers::internal::Matcher<CaseStmt> hasCaseConstant
( internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_hasCaseConstant0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<CaseStmt> ( &hasCaseConstant_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasCaseConstant0Matcher::matches( const
CaseStmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7848 if (Node.getRHS())
7849 return false;
7850
7851 return InnerMatcher.matches(*Node.getLHS(), Finder, Builder);
7852}
7853
7854/// Matches declaration that has a given attribute.
7855///
7856/// Given
7857/// \code
7858/// __attribute__((device)) void f() { ... }
7859/// \endcode
7860/// decl(hasAttr(clang::attr::CUDADevice)) matches the function declaration of
7861/// f. If the matcher is used from clang-query, attr::Kind parameter should be
7862/// passed as a quoted string. e.g., hasAttr("attr::CUDADevice").
7863AST_MATCHER_P(Decl, hasAttr, attr::Kind, AttrKind)namespace internal { class matcher_hasAttr0Matcher : public ::
clang::ast_matchers::internal::MatcherInterface<Decl> {
public: explicit matcher_hasAttr0Matcher( attr::Kind const &
AAttrKind) : AttrKind(AAttrKind) {} bool matches(const Decl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: attr::Kind AttrKind; }; } inline ::
clang::ast_matchers::internal::Matcher<Decl> hasAttr( attr
::Kind const &AttrKind) { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_hasAttr0Matcher(AttrKind
)); } typedef ::clang::ast_matchers::internal::Matcher<Decl
> ( &hasAttr_Type0)(attr::Kind const &AttrKind); inline
bool internal::matcher_hasAttr0Matcher::matches( const Decl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
7864 for (const auto *Attr : Node.attrs()) {
7865 if (Attr->getKind() == AttrKind)
7866 return true;
7867 }
7868 return false;
7869}
7870
7871/// Matches the return value expression of a return statement
7872///
7873/// Given
7874/// \code
7875/// return a + b;
7876/// \endcode
7877/// hasReturnValue(binaryOperator())
7878/// matches 'return a + b'
7879/// with binaryOperator()
7880/// matching 'a + b'
7881AST_MATCHER_P(ReturnStmt, hasReturnValue, internal::Matcher<Expr>,namespace internal { class matcher_hasReturnValue0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ReturnStmt
> { public: explicit matcher_hasReturnValue0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ReturnStmt &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ReturnStmt
> hasReturnValue( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasReturnValue0Matcher(InnerMatcher))
; } typedef ::clang::ast_matchers::internal::Matcher<ReturnStmt
> ( &hasReturnValue_Type0)(internal::Matcher<Expr>
const &InnerMatcher); inline bool internal::matcher_hasReturnValue0Matcher
::matches( const ReturnStmt &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
7882 InnerMatcher)namespace internal { class matcher_hasReturnValue0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<ReturnStmt
> { public: explicit matcher_hasReturnValue0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const ReturnStmt &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<ReturnStmt
> hasReturnValue( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasReturnValue0Matcher(InnerMatcher))
; } typedef ::clang::ast_matchers::internal::Matcher<ReturnStmt
> ( &hasReturnValue_Type0)(internal::Matcher<Expr>
const &InnerMatcher); inline bool internal::matcher_hasReturnValue0Matcher
::matches( const ReturnStmt &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
7883 if (const auto *RetValue = Node.getRetValue())
7884 return InnerMatcher.matches(*RetValue, Finder, Builder);
7885 return false;
7886}
7887
7888/// Matches CUDA kernel call expression.
7889///
7890/// Example matches,
7891/// \code
7892/// kernel<<<i,j>>>();
7893/// \endcode
7894extern const internal::VariadicDynCastAllOfMatcher<Stmt, CUDAKernelCallExpr>
7895 cudaKernelCallExpr;
7896
7897/// Matches expressions that resolve to a null pointer constant, such as
7898/// GNU's __null, C++11's nullptr, or C's NULL macro.
7899///
7900/// Given:
7901/// \code
7902/// void *v1 = NULL;
7903/// void *v2 = nullptr;
7904/// void *v3 = __null; // GNU extension
7905/// char *cp = (char *)0;
7906/// int *ip = 0;
7907/// int i = 0;
7908/// \endcode
7909/// expr(nullPointerConstant())
7910/// matches the initializer for v1, v2, v3, cp, and ip. Does not match the
7911/// initializer for i.
7912AST_MATCHER_FUNCTION(internal::Matcher<Expr>, nullPointerConstant)inline internal::Matcher<Expr> nullPointerConstant_getInstance
(); inline internal::Matcher<Expr> nullPointerConstant(
) { return ::clang::ast_matchers::internal::MemoizedMatcher<
internal::Matcher<Expr>, nullPointerConstant_getInstance
>::getInstance(); } inline internal::Matcher<Expr> nullPointerConstant_getInstance
()
{
7913 return anyOf(
7914 gnuNullExpr(), cxxNullPtrLiteralExpr(),
7915 integerLiteral(equals(0), hasParent(expr(hasType(pointerType())))));
7916}
7917
7918/// Matches the DecompositionDecl the binding belongs to.
7919///
7920/// For example, in:
7921/// \code
7922/// void foo()
7923/// {
7924/// int arr[3];
7925/// auto &[f, s, t] = arr;
7926///
7927/// f = 42;
7928/// }
7929/// \endcode
7930/// The matcher:
7931/// \code
7932/// bindingDecl(hasName("f"),
7933/// forDecomposition(decompositionDecl())
7934/// \endcode
7935/// matches 'f' in 'auto &[f, s, t]'.
7936AST_MATCHER_P(BindingDecl, forDecomposition, internal::Matcher<ValueDecl>,namespace internal { class matcher_forDecomposition0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
BindingDecl> { public: explicit matcher_forDecomposition0Matcher
( internal::Matcher<ValueDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const BindingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<ValueDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<BindingDecl> forDecomposition( internal::Matcher
<ValueDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_forDecomposition0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<BindingDecl> ( &forDecomposition_Type0)(internal::
Matcher<ValueDecl> const &InnerMatcher); inline bool
internal::matcher_forDecomposition0Matcher::matches( const BindingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7937 InnerMatcher)namespace internal { class matcher_forDecomposition0Matcher :
public ::clang::ast_matchers::internal::MatcherInterface<
BindingDecl> { public: explicit matcher_forDecomposition0Matcher
( internal::Matcher<ValueDecl> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const BindingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: internal::Matcher<ValueDecl
> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<BindingDecl> forDecomposition( internal::Matcher
<ValueDecl> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_forDecomposition0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<BindingDecl> ( &forDecomposition_Type0)(internal::
Matcher<ValueDecl> const &InnerMatcher); inline bool
internal::matcher_forDecomposition0Matcher::matches( const BindingDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7938 if (const ValueDecl *VD = Node.getDecomposedDecl())
7939 return InnerMatcher.matches(*VD, Finder, Builder);
7940 return false;
7941}
7942
7943/// Matches the Nth binding of a DecompositionDecl.
7944///
7945/// For example, in:
7946/// \code
7947/// void foo()
7948/// {
7949/// int arr[3];
7950/// auto &[f, s, t] = arr;
7951///
7952/// f = 42;
7953/// }
7954/// \endcode
7955/// The matcher:
7956/// \code
7957/// decompositionDecl(hasBinding(0,
7958/// bindingDecl(hasName("f").bind("fBinding"))))
7959/// \endcode
7960/// matches the decomposition decl with 'f' bound to "fBinding".
7961AST_MATCHER_P2(DecompositionDecl, hasBinding, unsigned, N,namespace internal { class matcher_hasBinding0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecompositionDecl
> { public: matcher_hasBinding0Matcher(unsigned const &
AN, internal::Matcher<BindingDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const DecompositionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<BindingDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<DecompositionDecl> hasBinding( unsigned
const &N, internal::Matcher<BindingDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasBinding0Matcher(N, InnerMatcher));
} typedef ::clang::ast_matchers::internal::Matcher<DecompositionDecl
> ( &hasBinding_Type0)(unsigned const &N, internal
::Matcher<BindingDecl> const &InnerMatcher); inline
bool internal::matcher_hasBinding0Matcher::matches( const DecompositionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7962 internal::Matcher<BindingDecl>, InnerMatcher)namespace internal { class matcher_hasBinding0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecompositionDecl
> { public: matcher_hasBinding0Matcher(unsigned const &
AN, internal::Matcher<BindingDecl> const &AInnerMatcher
) : N(AN), InnerMatcher(AInnerMatcher) {} bool matches(const DecompositionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned N; internal::Matcher
<BindingDecl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<DecompositionDecl> hasBinding( unsigned
const &N, internal::Matcher<BindingDecl> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasBinding0Matcher(N, InnerMatcher));
} typedef ::clang::ast_matchers::internal::Matcher<DecompositionDecl
> ( &hasBinding_Type0)(unsigned const &N, internal
::Matcher<BindingDecl> const &InnerMatcher); inline
bool internal::matcher_hasBinding0Matcher::matches( const DecompositionDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7963 if (Node.bindings().size() <= N)
7964 return false;
7965 return InnerMatcher.matches(*Node.bindings()[N], Finder, Builder);
7966}
7967
7968/// Matches any binding of a DecompositionDecl.
7969///
7970/// For example, in:
7971/// \code
7972/// void foo()
7973/// {
7974/// int arr[3];
7975/// auto &[f, s, t] = arr;
7976///
7977/// f = 42;
7978/// }
7979/// \endcode
7980/// The matcher:
7981/// \code
7982/// decompositionDecl(hasAnyBinding(bindingDecl(hasName("f").bind("fBinding"))))
7983/// \endcode
7984/// matches the decomposition decl with 'f' bound to "fBinding".
7985AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<BindingDecl>,namespace internal { class matcher_hasAnyBinding0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecompositionDecl
> { public: explicit matcher_hasAnyBinding0Matcher( internal
::Matcher<BindingDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const DecompositionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<BindingDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<DecompositionDecl> hasAnyBinding( internal::Matcher<
BindingDecl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasAnyBinding0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<DecompositionDecl> ( &hasAnyBinding_Type0)(internal
::Matcher<BindingDecl> const &InnerMatcher); inline
bool internal::matcher_hasAnyBinding0Matcher::matches( const
DecompositionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
7986 InnerMatcher)namespace internal { class matcher_hasAnyBinding0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<DecompositionDecl
> { public: explicit matcher_hasAnyBinding0Matcher( internal
::Matcher<BindingDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const DecompositionDecl &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<BindingDecl>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<DecompositionDecl> hasAnyBinding( internal::Matcher<
BindingDecl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasAnyBinding0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<DecompositionDecl> ( &hasAnyBinding_Type0)(internal
::Matcher<BindingDecl> const &InnerMatcher); inline
bool internal::matcher_hasAnyBinding0Matcher::matches( const
DecompositionDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
7987 return llvm::any_of(Node.bindings(), [&](const auto *Binding) {
7988 return InnerMatcher.matches(*Binding, Finder, Builder);
7989 });
7990}
7991
7992/// Matches declaration of the function the statement belongs to.
7993///
7994/// Deprecated. Use forCallable() to correctly handle the situation when
7995/// the declaration is not a function (but a block or an Objective-C method).
7996/// forFunction() not only fails to take non-functions into account but also
7997/// may match the wrong declaration in their presence.
7998///
7999/// Given:
8000/// \code
8001/// F& operator=(const F& o) {
8002/// std::copy_if(o.begin(), o.end(), begin(), [](V v) { return v > 0; });
8003/// return *this;
8004/// }
8005/// \endcode
8006/// returnStmt(forFunction(hasName("operator=")))
8007/// matches 'return *this'
8008/// but does not match 'return v > 0'
8009AST_MATCHER_P(Stmt, forFunction, internal::Matcher<FunctionDecl>,namespace internal { class matcher_forFunction0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Stmt>
{ public: explicit matcher_forFunction0Matcher( internal::Matcher
<FunctionDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Stmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<FunctionDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<Stmt> forFunction
( internal::Matcher<FunctionDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_forFunction0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<Stmt> ( &forFunction_Type0
)(internal::Matcher<FunctionDecl> const &InnerMatcher
); inline bool internal::matcher_forFunction0Matcher::matches
( const Stmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
8010 InnerMatcher)namespace internal { class matcher_forFunction0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Stmt>
{ public: explicit matcher_forFunction0Matcher( internal::Matcher
<FunctionDecl> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const Stmt &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; private
: internal::Matcher<FunctionDecl> InnerMatcher; }; } inline
::clang::ast_matchers::internal::Matcher<Stmt> forFunction
( internal::Matcher<FunctionDecl> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_forFunction0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<Stmt> ( &forFunction_Type0
)(internal::Matcher<FunctionDecl> const &InnerMatcher
); inline bool internal::matcher_forFunction0Matcher::matches
( const Stmt &Node, ::clang::ast_matchers::internal::ASTMatchFinder
*Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8011 const auto &Parents = Finder->getASTContext().getParents(Node);
8012
8013 llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end());
8014 while (!Stack.empty()) {
8015 const auto &CurNode = Stack.back();
8016 Stack.pop_back();
8017 if (const auto *FuncDeclNode = CurNode.get<FunctionDecl>()) {
8018 if (InnerMatcher.matches(*FuncDeclNode, Finder, Builder)) {
8019 return true;
8020 }
8021 } else if (const auto *LambdaExprNode = CurNode.get<LambdaExpr>()) {
8022 if (InnerMatcher.matches(*LambdaExprNode->getCallOperator(), Finder,
8023 Builder)) {
8024 return true;
8025 }
8026 } else {
8027 llvm::append_range(Stack, Finder->getASTContext().getParents(CurNode));
8028 }
8029 }
8030 return false;
8031}
8032
8033/// Matches declaration of the function, method, or block the statement
8034/// belongs to.
8035///
8036/// Given:
8037/// \code
8038/// F& operator=(const F& o) {
8039/// std::copy_if(o.begin(), o.end(), begin(), [](V v) { return v > 0; });
8040/// return *this;
8041/// }
8042/// \endcode
8043/// returnStmt(forCallable(functionDecl(hasName("operator="))))
8044/// matches 'return *this'
8045/// but does not match 'return v > 0'
8046///
8047/// Given:
8048/// \code
8049/// -(void) foo {
8050/// int x = 1;
8051/// dispatch_sync(queue, ^{ int y = 2; });
8052/// }
8053/// \endcode
8054/// declStmt(forCallable(objcMethodDecl()))
8055/// matches 'int x = 1'
8056/// but does not match 'int y = 2'.
8057/// whereas declStmt(forCallable(blockDecl()))
8058/// matches 'int y = 2'
8059/// but does not match 'int x = 1'.
8060AST_MATCHER_P(Stmt, forCallable, internal::Matcher<Decl>, InnerMatcher)namespace internal { class matcher_forCallable0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<Stmt>
{ public: explicit matcher_forCallable0Matcher( internal::Matcher
<Decl> const &AInnerMatcher) : InnerMatcher(AInnerMatcher
) {} bool matches(const Stmt &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: internal
::Matcher<Decl> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<Stmt> forCallable( internal::Matcher
<Decl> const &InnerMatcher) { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_forCallable0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<Stmt> ( &forCallable_Type0)(internal::Matcher<Decl
> const &InnerMatcher); inline bool internal::matcher_forCallable0Matcher
::matches( const Stmt &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8061 const auto &Parents = Finder->getASTContext().getParents(Node);
8062
8063 llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end());
8064 while (!Stack.empty()) {
8065 const auto &CurNode = Stack.back();
8066 Stack.pop_back();
8067 if (const auto *FuncDeclNode = CurNode.get<FunctionDecl>()) {
8068 if (InnerMatcher.matches(*FuncDeclNode, Finder, Builder)) {
8069 return true;
8070 }
8071 } else if (const auto *LambdaExprNode = CurNode.get<LambdaExpr>()) {
8072 if (InnerMatcher.matches(*LambdaExprNode->getCallOperator(), Finder,
8073 Builder)) {
8074 return true;
8075 }
8076 } else if (const auto *ObjCMethodDeclNode = CurNode.get<ObjCMethodDecl>()) {
8077 if (InnerMatcher.matches(*ObjCMethodDeclNode, Finder, Builder)) {
8078 return true;
8079 }
8080 } else if (const auto *BlockDeclNode = CurNode.get<BlockDecl>()) {
8081 if (InnerMatcher.matches(*BlockDeclNode, Finder, Builder)) {
8082 return true;
8083 }
8084 } else {
8085 llvm::append_range(Stack, Finder->getASTContext().getParents(CurNode));
8086 }
8087 }
8088 return false;
8089}
8090
8091/// Matches a declaration that has external formal linkage.
8092///
8093/// Example matches only z (matcher = varDecl(hasExternalFormalLinkage()))
8094/// \code
8095/// void f() {
8096/// int x;
8097/// static int y;
8098/// }
8099/// int z;
8100/// \endcode
8101///
8102/// Example matches f() because it has external formal linkage despite being
8103/// unique to the translation unit as though it has internal likage
8104/// (matcher = functionDecl(hasExternalFormalLinkage()))
8105///
8106/// \code
8107/// namespace {
8108/// void f() {}
8109/// }
8110/// \endcode
8111AST_MATCHER(NamedDecl, hasExternalFormalLinkage)namespace internal { class matcher_hasExternalFormalLinkageMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
NamedDecl> { public: explicit matcher_hasExternalFormalLinkageMatcher
() = default; bool matches(const NamedDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<NamedDecl
> hasExternalFormalLinkage() { return ::clang::ast_matchers
::internal::makeMatcher( new internal::matcher_hasExternalFormalLinkageMatcher
()); } inline bool internal::matcher_hasExternalFormalLinkageMatcher
::matches( const NamedDecl &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8112 return Node.hasExternalFormalLinkage();
8113}
8114
8115/// Matches a declaration that has default arguments.
8116///
8117/// Example matches y (matcher = parmVarDecl(hasDefaultArgument()))
8118/// \code
8119/// void x(int val) {}
8120/// void y(int val = 0) {}
8121/// \endcode
8122///
8123/// Deprecated. Use hasInitializer() instead to be able to
8124/// match on the contents of the default argument. For example:
8125///
8126/// \code
8127/// void x(int val = 7) {}
8128/// void y(int val = 42) {}
8129/// \endcode
8130/// parmVarDecl(hasInitializer(integerLiteral(equals(42))))
8131/// matches the parameter of y
8132///
8133/// A matcher such as
8134/// parmVarDecl(hasInitializer(anything()))
8135/// is equivalent to parmVarDecl(hasDefaultArgument()).
8136AST_MATCHER(ParmVarDecl, hasDefaultArgument)namespace internal { class matcher_hasDefaultArgumentMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
ParmVarDecl> { public: explicit matcher_hasDefaultArgumentMatcher
() = default; bool matches(const ParmVarDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<ParmVarDecl
> hasDefaultArgument() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_hasDefaultArgumentMatcher
()); } inline bool internal::matcher_hasDefaultArgumentMatcher
::matches( const ParmVarDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8137 return Node.hasDefaultArg();
8138}
8139
8140/// Matches array new expressions.
8141///
8142/// Given:
8143/// \code
8144/// MyClass *p1 = new MyClass[10];
8145/// \endcode
8146/// cxxNewExpr(isArray())
8147/// matches the expression 'new MyClass[10]'.
8148AST_MATCHER(CXXNewExpr, isArray)namespace internal { class matcher_isArrayMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<CXXNewExpr
> { public: explicit matcher_isArrayMatcher() = default; bool
matches(const CXXNewExpr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<CXXNewExpr> isArray() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isArrayMatcher
()); } inline bool internal::matcher_isArrayMatcher::matches(
const CXXNewExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8149 return Node.isArray();
8150}
8151
8152/// Matches placement new expression arguments.
8153///
8154/// Given:
8155/// \code
8156/// MyClass *p1 = new (Storage, 16) MyClass();
8157/// \endcode
8158/// cxxNewExpr(hasPlacementArg(1, integerLiteral(equals(16))))
8159/// matches the expression 'new (Storage, 16) MyClass()'.
8160AST_MATCHER_P2(CXXNewExpr, hasPlacementArg, unsigned, Index,namespace internal { class matcher_hasPlacementArg0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXNewExpr
> { public: matcher_hasPlacementArg0Matcher(unsigned const
&AIndex, internal::Matcher<Expr> const &AInnerMatcher
) : Index(AIndex), InnerMatcher(AInnerMatcher) {} bool matches
(const CXXNewExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned Index; internal::
Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<CXXNewExpr> hasPlacementArg( unsigned
const &Index, internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasPlacementArg0Matcher(Index, InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<CXXNewExpr> (
&hasPlacementArg_Type0)(unsigned const &Index, internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasPlacementArg0Matcher::matches( const CXXNewExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
8161 internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasPlacementArg0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXNewExpr
> { public: matcher_hasPlacementArg0Matcher(unsigned const
&AIndex, internal::Matcher<Expr> const &AInnerMatcher
) : Index(AIndex), InnerMatcher(AInnerMatcher) {} bool matches
(const CXXNewExpr &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; private: unsigned Index; internal::
Matcher<Expr> InnerMatcher; }; } inline ::clang::ast_matchers
::internal::Matcher<CXXNewExpr> hasPlacementArg( unsigned
const &Index, internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasPlacementArg0Matcher(Index, InnerMatcher)); } typedef
::clang::ast_matchers::internal::Matcher<CXXNewExpr> (
&hasPlacementArg_Type0)(unsigned const &Index, internal
::Matcher<Expr> const &InnerMatcher); inline bool internal
::matcher_hasPlacementArg0Matcher::matches( const CXXNewExpr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
8162 return Node.getNumPlacementArgs() > Index &&
8163 InnerMatcher.matches(*Node.getPlacementArg(Index), Finder, Builder);
8164}
8165
8166/// Matches any placement new expression arguments.
8167///
8168/// Given:
8169/// \code
8170/// MyClass *p1 = new (Storage) MyClass();
8171/// \endcode
8172/// cxxNewExpr(hasAnyPlacementArg(anything()))
8173/// matches the expression 'new (Storage, 16) MyClass()'.
8174AST_MATCHER_P(CXXNewExpr, hasAnyPlacementArg, internal::Matcher<Expr>,namespace internal { class matcher_hasAnyPlacementArg0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXNewExpr> { public: explicit matcher_hasAnyPlacementArg0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXNewExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXNewExpr
> hasAnyPlacementArg( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasAnyPlacementArg0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<CXXNewExpr
> ( &hasAnyPlacementArg_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasAnyPlacementArg0Matcher
::matches( const CXXNewExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
8175 InnerMatcher)namespace internal { class matcher_hasAnyPlacementArg0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
CXXNewExpr> { public: explicit matcher_hasAnyPlacementArg0Matcher
( internal::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXNewExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXNewExpr
> hasAnyPlacementArg( internal::Matcher<Expr> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasAnyPlacementArg0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<CXXNewExpr
> ( &hasAnyPlacementArg_Type0)(internal::Matcher<Expr
> const &InnerMatcher); inline bool internal::matcher_hasAnyPlacementArg0Matcher
::matches( const CXXNewExpr &Node, ::clang::ast_matchers::
internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8176 return llvm::any_of(Node.placement_arguments(), [&](const Expr *Arg) {
8177 return InnerMatcher.matches(*Arg, Finder, Builder);
8178 });
8179}
8180
8181/// Matches array new expressions with a given array size.
8182///
8183/// Given:
8184/// \code
8185/// MyClass *p1 = new MyClass[10];
8186/// \endcode
8187/// cxxNewExpr(hasArraySize(integerLiteral(equals(10))))
8188/// matches the expression 'new MyClass[10]'.
8189AST_MATCHER_P(CXXNewExpr, hasArraySize, internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_hasArraySize0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXNewExpr
> { public: explicit matcher_hasArraySize0Matcher( internal
::Matcher<Expr> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const CXXNewExpr &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; private: internal::Matcher<Expr> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<CXXNewExpr
> hasArraySize( internal::Matcher<Expr> const &InnerMatcher
) { return ::clang::ast_matchers::internal::makeMatcher( new internal
::matcher_hasArraySize0Matcher(InnerMatcher)); } typedef ::clang
::ast_matchers::internal::Matcher<CXXNewExpr> ( &hasArraySize_Type0
)(internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_hasArraySize0Matcher::matches( const CXXNewExpr
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8190 return Node.isArray() && *Node.getArraySize() &&
8191 InnerMatcher.matches(**Node.getArraySize(), Finder, Builder);
8192}
8193
8194/// Matches a class declaration that is defined.
8195///
8196/// Example matches x (matcher = cxxRecordDecl(hasDefinition()))
8197/// \code
8198/// class x {};
8199/// class y;
8200/// \endcode
8201AST_MATCHER(CXXRecordDecl, hasDefinition)namespace internal { class matcher_hasDefinitionMatcher : public
::clang::ast_matchers::internal::MatcherInterface<CXXRecordDecl
> { public: explicit matcher_hasDefinitionMatcher() = default
; bool matches(const CXXRecordDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<CXXRecordDecl>
hasDefinition() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasDefinitionMatcher()); } inline bool
internal::matcher_hasDefinitionMatcher::matches( const CXXRecordDecl
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8202 return Node.hasDefinition();
8203}
8204
8205/// Matches C++11 scoped enum declaration.
8206///
8207/// Example matches Y (matcher = enumDecl(isScoped()))
8208/// \code
8209/// enum X {};
8210/// enum class Y {};
8211/// \endcode
8212AST_MATCHER(EnumDecl, isScoped)namespace internal { class matcher_isScopedMatcher : public ::
clang::ast_matchers::internal::MatcherInterface<EnumDecl>
{ public: explicit matcher_isScopedMatcher() = default; bool
matches(const EnumDecl &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const override; }; } inline ::clang::ast_matchers::
internal::Matcher<EnumDecl> isScoped() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isScopedMatcher
()); } inline bool internal::matcher_isScopedMatcher::matches
( const EnumDecl &Node, ::clang::ast_matchers::internal::
ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8213 return Node.isScoped();
8214}
8215
8216/// Matches a function declared with a trailing return type.
8217///
8218/// Example matches Y (matcher = functionDecl(hasTrailingReturn()))
8219/// \code
8220/// int X() {}
8221/// auto Y() -> int {}
8222/// \endcode
8223AST_MATCHER(FunctionDecl, hasTrailingReturn)namespace internal { class matcher_hasTrailingReturnMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
FunctionDecl> { public: explicit matcher_hasTrailingReturnMatcher
() = default; bool matches(const FunctionDecl &Node, ::clang
::ast_matchers::internal::ASTMatchFinder *Finder, ::clang::ast_matchers
::internal::BoundNodesTreeBuilder *Builder) const override; }
; } inline ::clang::ast_matchers::internal::Matcher<FunctionDecl
> hasTrailingReturn() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_hasTrailingReturnMatcher
()); } inline bool internal::matcher_hasTrailingReturnMatcher
::matches( const FunctionDecl &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8224 if (const auto *F = Node.getType()->getAs<FunctionProtoType>())
8225 return F->hasTrailingReturn();
8226 return false;
8227}
8228
8229/// Matches expressions that match InnerMatcher that are possibly wrapped in an
8230/// elidable constructor and other corresponding bookkeeping nodes.
8231///
8232/// In C++17, elidable copy constructors are no longer being generated in the
8233/// AST as it is not permitted by the standard. They are, however, part of the
8234/// AST in C++14 and earlier. So, a matcher must abstract over these differences
8235/// to work in all language modes. This matcher skips elidable constructor-call
8236/// AST nodes, `ExprWithCleanups` nodes wrapping elidable constructor-calls and
8237/// various implicit nodes inside the constructor calls, all of which will not
8238/// appear in the C++17 AST.
8239///
8240/// Given
8241///
8242/// \code
8243/// struct H {};
8244/// H G();
8245/// void f() {
8246/// H D = G();
8247/// }
8248/// \endcode
8249///
8250/// ``varDecl(hasInitializer(ignoringElidableConstructorCall(callExpr())))``
8251/// matches ``H D = G()`` in C++11 through C++17 (and beyond).
8252AST_MATCHER_P(Expr, ignoringElidableConstructorCall,namespace internal { class matcher_ignoringElidableConstructorCall0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringElidableConstructorCall0Matcher
( ast_matchers::internal::Matcher<Expr> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const Expr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: ast_matchers::internal::Matcher<
Expr> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<Expr> ignoringElidableConstructorCall( ast_matchers
::internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringElidableConstructorCall0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<Expr
> ( &ignoringElidableConstructorCall_Type0)(ast_matchers
::internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringElidableConstructorCall0Matcher
::matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
8253 ast_matchers::internal::Matcher<Expr>, InnerMatcher)namespace internal { class matcher_ignoringElidableConstructorCall0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
Expr> { public: explicit matcher_ignoringElidableConstructorCall0Matcher
( ast_matchers::internal::Matcher<Expr> const &AInnerMatcher
) : InnerMatcher(AInnerMatcher) {} bool matches(const Expr &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: ast_matchers::internal::Matcher<
Expr> InnerMatcher; }; } inline ::clang::ast_matchers::internal
::Matcher<Expr> ignoringElidableConstructorCall( ast_matchers
::internal::Matcher<Expr> const &InnerMatcher) { return
::clang::ast_matchers::internal::makeMatcher( new internal::
matcher_ignoringElidableConstructorCall0Matcher(InnerMatcher)
); } typedef ::clang::ast_matchers::internal::Matcher<Expr
> ( &ignoringElidableConstructorCall_Type0)(ast_matchers
::internal::Matcher<Expr> const &InnerMatcher); inline
bool internal::matcher_ignoringElidableConstructorCall0Matcher
::matches( const Expr &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8254 // E tracks the node that we are examining.
8255 const Expr *E = &Node;
8256 // If present, remove an outer `ExprWithCleanups` corresponding to the
8257 // underlying `CXXConstructExpr`. This check won't cover all cases of added
8258 // `ExprWithCleanups` corresponding to `CXXConstructExpr` nodes (because the
8259 // EWC is placed on the outermost node of the expression, which this may not
8260 // be), but, it still improves the coverage of this matcher.
8261 if (const auto *CleanupsExpr = dyn_cast<ExprWithCleanups>(&Node))
8262 E = CleanupsExpr->getSubExpr();
8263 if (const auto *CtorExpr = dyn_cast<CXXConstructExpr>(E)) {
8264 if (CtorExpr->isElidable()) {
8265 if (const auto *MaterializeTemp =
8266 dyn_cast<MaterializeTemporaryExpr>(CtorExpr->getArg(0))) {
8267 return InnerMatcher.matches(*MaterializeTemp->getSubExpr(), Finder,
8268 Builder);
8269 }
8270 }
8271 }
8272 return InnerMatcher.matches(Node, Finder, Builder);
8273}
8274
8275//----------------------------------------------------------------------------//
8276// OpenMP handling.
8277//----------------------------------------------------------------------------//
8278
8279/// Matches any ``#pragma omp`` executable directive.
8280///
8281/// Given
8282///
8283/// \code
8284/// #pragma omp parallel
8285/// #pragma omp parallel default(none)
8286/// #pragma omp taskyield
8287/// \endcode
8288///
8289/// ``ompExecutableDirective()`` matches ``omp parallel``,
8290/// ``omp parallel default(none)`` and ``omp taskyield``.
8291extern const internal::VariadicDynCastAllOfMatcher<Stmt, OMPExecutableDirective>
8292 ompExecutableDirective;
8293
8294/// Matches standalone OpenMP directives,
8295/// i.e., directives that can't have a structured block.
8296///
8297/// Given
8298///
8299/// \code
8300/// #pragma omp parallel
8301/// {}
8302/// #pragma omp taskyield
8303/// \endcode
8304///
8305/// ``ompExecutableDirective(isStandaloneDirective()))`` matches
8306/// ``omp taskyield``.
8307AST_MATCHER(OMPExecutableDirective, isStandaloneDirective)namespace internal { class matcher_isStandaloneDirectiveMatcher
: public ::clang::ast_matchers::internal::MatcherInterface<
OMPExecutableDirective> { public: explicit matcher_isStandaloneDirectiveMatcher
() = default; bool matches(const OMPExecutableDirective &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; }; } inline ::clang::ast_matchers::internal
::Matcher<OMPExecutableDirective> isStandaloneDirective
() { return ::clang::ast_matchers::internal::makeMatcher( new
internal::matcher_isStandaloneDirectiveMatcher()); } inline bool
internal::matcher_isStandaloneDirectiveMatcher::matches( const
OMPExecutableDirective &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8308 return Node.isStandaloneDirective();
8309}
8310
8311/// Matches the structured-block of the OpenMP executable directive
8312///
8313/// Prerequisite: the executable directive must not be standalone directive.
8314/// If it is, it will never match.
8315///
8316/// Given
8317///
8318/// \code
8319/// #pragma omp parallel
8320/// ;
8321/// #pragma omp parallel
8322/// {}
8323/// \endcode
8324///
8325/// ``ompExecutableDirective(hasStructuredBlock(nullStmt()))`` will match ``;``
8326AST_MATCHER_P(OMPExecutableDirective, hasStructuredBlock,namespace internal { class matcher_hasStructuredBlock0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
OMPExecutableDirective> { public: explicit matcher_hasStructuredBlock0Matcher
( internal::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OMPExecutableDirective &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Stmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<OMPExecutableDirective
> hasStructuredBlock( internal::Matcher<Stmt> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasStructuredBlock0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<OMPExecutableDirective
> ( &hasStructuredBlock_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_hasStructuredBlock0Matcher
::matches( const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
8327 internal::Matcher<Stmt>, InnerMatcher)namespace internal { class matcher_hasStructuredBlock0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
OMPExecutableDirective> { public: explicit matcher_hasStructuredBlock0Matcher
( internal::Matcher<Stmt> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OMPExecutableDirective &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<Stmt> InnerMatcher
; }; } inline ::clang::ast_matchers::internal::Matcher<OMPExecutableDirective
> hasStructuredBlock( internal::Matcher<Stmt> const &
InnerMatcher) { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_hasStructuredBlock0Matcher(InnerMatcher
)); } typedef ::clang::ast_matchers::internal::Matcher<OMPExecutableDirective
> ( &hasStructuredBlock_Type0)(internal::Matcher<Stmt
> const &InnerMatcher); inline bool internal::matcher_hasStructuredBlock0Matcher
::matches( const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8328 if (Node.isStandaloneDirective())
8329 return false; // Standalone directives have no structured blocks.
8330 return InnerMatcher.matches(*Node.getStructuredBlock(), Finder, Builder);
8331}
8332
8333/// Matches any clause in an OpenMP directive.
8334///
8335/// Given
8336///
8337/// \code
8338/// #pragma omp parallel
8339/// #pragma omp parallel default(none)
8340/// \endcode
8341///
8342/// ``ompExecutableDirective(hasAnyClause(anything()))`` matches
8343/// ``omp parallel default(none)``.
8344AST_MATCHER_P(OMPExecutableDirective, hasAnyClause,namespace internal { class matcher_hasAnyClause0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<OMPExecutableDirective
> { public: explicit matcher_hasAnyClause0Matcher( internal
::Matcher<OMPClause> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OMPExecutableDirective &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<OMPClause>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<OMPExecutableDirective> hasAnyClause( internal::Matcher
<OMPClause> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasAnyClause0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<OMPExecutableDirective> ( &hasAnyClause_Type0)(internal
::Matcher<OMPClause> const &InnerMatcher); inline bool
internal::matcher_hasAnyClause0Matcher::matches( const OMPExecutableDirective
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
8345 internal::Matcher<OMPClause>, InnerMatcher)namespace internal { class matcher_hasAnyClause0Matcher : public
::clang::ast_matchers::internal::MatcherInterface<OMPExecutableDirective
> { public: explicit matcher_hasAnyClause0Matcher( internal
::Matcher<OMPClause> const &AInnerMatcher) : InnerMatcher
(AInnerMatcher) {} bool matches(const OMPExecutableDirective &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const override; private: internal::Matcher<OMPClause>
InnerMatcher; }; } inline ::clang::ast_matchers::internal::Matcher
<OMPExecutableDirective> hasAnyClause( internal::Matcher
<OMPClause> const &InnerMatcher) { return ::clang::
ast_matchers::internal::makeMatcher( new internal::matcher_hasAnyClause0Matcher
(InnerMatcher)); } typedef ::clang::ast_matchers::internal::Matcher
<OMPExecutableDirective> ( &hasAnyClause_Type0)(internal
::Matcher<OMPClause> const &InnerMatcher); inline bool
internal::matcher_hasAnyClause0Matcher::matches( const OMPExecutableDirective
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8346 ArrayRef<OMPClause *> Clauses = Node.clauses();
8347 return matchesFirstInPointerRange(InnerMatcher, Clauses.begin(),
8348 Clauses.end(), Finder,
8349 Builder) != Clauses.end();
8350}
8351
8352/// Matches OpenMP ``default`` clause.
8353///
8354/// Given
8355///
8356/// \code
8357/// #pragma omp parallel default(none)
8358/// #pragma omp parallel default(shared)
8359/// #pragma omp parallel default(private)
8360/// #pragma omp parallel default(firstprivate)
8361/// #pragma omp parallel
8362/// \endcode
8363///
8364/// ``ompDefaultClause()`` matches ``default(none)``, ``default(shared)``,
8365/// `` default(private)`` and ``default(firstprivate)``
8366extern const internal::VariadicDynCastAllOfMatcher<OMPClause, OMPDefaultClause>
8367 ompDefaultClause;
8368
8369/// Matches if the OpenMP ``default`` clause has ``none`` kind specified.
8370///
8371/// Given
8372///
8373/// \code
8374/// #pragma omp parallel
8375/// #pragma omp parallel default(none)
8376/// #pragma omp parallel default(shared)
8377/// #pragma omp parallel default(private)
8378/// #pragma omp parallel default(firstprivate)
8379/// \endcode
8380///
8381/// ``ompDefaultClause(isNoneKind())`` matches only ``default(none)``.
8382AST_MATCHER(OMPDefaultClause, isNoneKind)namespace internal { class matcher_isNoneKindMatcher : public
::clang::ast_matchers::internal::MatcherInterface<OMPDefaultClause
> { public: explicit matcher_isNoneKindMatcher() = default
; bool matches(const OMPDefaultClause &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<OMPDefaultClause
> isNoneKind() { return ::clang::ast_matchers::internal::makeMatcher
( new internal::matcher_isNoneKindMatcher()); } inline bool internal
::matcher_isNoneKindMatcher::matches( const OMPDefaultClause &
Node, ::clang::ast_matchers::internal::ASTMatchFinder *Finder
, ::clang::ast_matchers::internal::BoundNodesTreeBuilder *Builder
) const
{
8383 return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_none;
8384}
8385
8386/// Matches if the OpenMP ``default`` clause has ``shared`` kind specified.
8387///
8388/// Given
8389///
8390/// \code
8391/// #pragma omp parallel
8392/// #pragma omp parallel default(none)
8393/// #pragma omp parallel default(shared)
8394/// #pragma omp parallel default(private)
8395/// #pragma omp parallel default(firstprivate)
8396/// \endcode
8397///
8398/// ``ompDefaultClause(isSharedKind())`` matches only ``default(shared)``.
8399AST_MATCHER(OMPDefaultClause, isSharedKind)namespace internal { class matcher_isSharedKindMatcher : public
::clang::ast_matchers::internal::MatcherInterface<OMPDefaultClause
> { public: explicit matcher_isSharedKindMatcher() = default
; bool matches(const OMPDefaultClause &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<OMPDefaultClause
> isSharedKind() { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_isSharedKindMatcher()); } inline
bool internal::matcher_isSharedKindMatcher::matches( const OMPDefaultClause
&Node, ::clang::ast_matchers::internal::ASTMatchFinder *
Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8400 return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_shared;
8401}
8402
8403/// Matches if the OpenMP ``default`` clause has ``private`` kind
8404/// specified.
8405///
8406/// Given
8407///
8408/// \code
8409/// #pragma omp parallel
8410/// #pragma omp parallel default(none)
8411/// #pragma omp parallel default(shared)
8412/// #pragma omp parallel default(private)
8413/// #pragma omp parallel default(firstprivate)
8414/// \endcode
8415///
8416/// ``ompDefaultClause(isPrivateKind())`` matches only
8417/// ``default(private)``.
8418AST_MATCHER(OMPDefaultClause, isPrivateKind)namespace internal { class matcher_isPrivateKindMatcher : public
::clang::ast_matchers::internal::MatcherInterface<OMPDefaultClause
> { public: explicit matcher_isPrivateKindMatcher() = default
; bool matches(const OMPDefaultClause &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; }; } inline
::clang::ast_matchers::internal::Matcher<OMPDefaultClause
> isPrivateKind() { return ::clang::ast_matchers::internal
::makeMatcher( new internal::matcher_isPrivateKindMatcher());
} inline bool internal::matcher_isPrivateKindMatcher::matches
( const OMPDefaultClause &Node, ::clang::ast_matchers::internal
::ASTMatchFinder *Finder, ::clang::ast_matchers::internal::BoundNodesTreeBuilder
*Builder) const
{
8419 return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_private;
8420}
8421
8422/// Matches if the OpenMP ``default`` clause has ``firstprivate`` kind
8423/// specified.
8424///
8425/// Given
8426///
8427/// \code
8428/// #pragma omp parallel
8429/// #pragma omp parallel default(none)
8430/// #pragma omp parallel default(shared)
8431/// #pragma omp parallel default(private)
8432/// #pragma omp parallel default(firstprivate)
8433/// \endcode
8434///
8435/// ``ompDefaultClause(isFirstPrivateKind())`` matches only
8436/// ``default(firstprivate)``.
8437AST_MATCHER(OMPDefaultClause, isFirstPrivateKind)namespace internal { class matcher_isFirstPrivateKindMatcher :
public ::clang::ast_matchers::internal::MatcherInterface<
OMPDefaultClause> { public: explicit matcher_isFirstPrivateKindMatcher
() = default; bool matches(const OMPDefaultClause &Node, ::
clang::ast_matchers::internal::ASTMatchFinder *Finder, ::clang
::ast_matchers::internal::BoundNodesTreeBuilder *Builder) const
override; }; } inline ::clang::ast_matchers::internal::Matcher
<OMPDefaultClause> isFirstPrivateKind() { return ::clang
::ast_matchers::internal::makeMatcher( new internal::matcher_isFirstPrivateKindMatcher
()); } inline bool internal::matcher_isFirstPrivateKindMatcher
::matches( const OMPDefaultClause &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8438 return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_firstprivate;
8439}
8440
8441/// Matches if the OpenMP directive is allowed to contain the specified OpenMP
8442/// clause kind.
8443///
8444/// Given
8445///
8446/// \code
8447/// #pragma omp parallel
8448/// #pragma omp parallel for
8449/// #pragma omp for
8450/// \endcode
8451///
8452/// `ompExecutableDirective(isAllowedToContainClause(OMPC_default))`` matches
8453/// ``omp parallel`` and ``omp parallel for``.
8454///
8455/// If the matcher is use from clang-query, ``OpenMPClauseKind`` parameter
8456/// should be passed as a quoted string. e.g.,
8457/// ``isAllowedToContainClauseKind("OMPC_default").``
8458AST_MATCHER_P(OMPExecutableDirective, isAllowedToContainClauseKind,namespace internal { class matcher_isAllowedToContainClauseKind0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
OMPExecutableDirective> { public: explicit matcher_isAllowedToContainClauseKind0Matcher
( OpenMPClauseKind const &ACKind) : CKind(ACKind) {} bool
matches(const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: OpenMPClauseKind
CKind; }; } inline ::clang::ast_matchers::internal::Matcher<
OMPExecutableDirective> isAllowedToContainClauseKind( OpenMPClauseKind
const &CKind) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_isAllowedToContainClauseKind0Matcher
(CKind)); } typedef ::clang::ast_matchers::internal::Matcher<
OMPExecutableDirective> ( &isAllowedToContainClauseKind_Type0
)(OpenMPClauseKind const &CKind); inline bool internal::matcher_isAllowedToContainClauseKind0Matcher
::matches( const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
8459 OpenMPClauseKind, CKind)namespace internal { class matcher_isAllowedToContainClauseKind0Matcher
: public ::clang::ast_matchers::internal::MatcherInterface<
OMPExecutableDirective> { public: explicit matcher_isAllowedToContainClauseKind0Matcher
( OpenMPClauseKind const &ACKind) : CKind(ACKind) {} bool
matches(const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const override; private: OpenMPClauseKind
CKind; }; } inline ::clang::ast_matchers::internal::Matcher<
OMPExecutableDirective> isAllowedToContainClauseKind( OpenMPClauseKind
const &CKind) { return ::clang::ast_matchers::internal::
makeMatcher( new internal::matcher_isAllowedToContainClauseKind0Matcher
(CKind)); } typedef ::clang::ast_matchers::internal::Matcher<
OMPExecutableDirective> ( &isAllowedToContainClauseKind_Type0
)(OpenMPClauseKind const &CKind); inline bool internal::matcher_isAllowedToContainClauseKind0Matcher
::matches( const OMPExecutableDirective &Node, ::clang::ast_matchers
::internal::ASTMatchFinder *Finder, ::clang::ast_matchers::internal
::BoundNodesTreeBuilder *Builder) const
{
8460 return llvm::omp::isAllowedClauseForDirective(
8461 Node.getDirectiveKind(), CKind,
8462 Finder->getASTContext().getLangOpts().OpenMP);
8463}
8464
8465//----------------------------------------------------------------------------//
8466// End OpenMP handling.
8467//----------------------------------------------------------------------------//
8468
8469} // namespace ast_matchers
8470} // namespace clang
8471
8472#endif // LLVM_CLANG_ASTMATCHERS_ASTMATCHERS_H

/build/source/clang/include/clang/ASTMatchers/ASTMatchersInternal.h

1//===- ASTMatchersInternal.h - Structural query framework -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Implements the base layer of the matcher framework.
10//
11// Matchers are methods that return a Matcher<T> which provides a method
12// Matches(...) which is a predicate on an AST node. The Matches method's
13// parameters define the context of the match, which allows matchers to recurse
14// or store the current node as bound to a specific string, so that it can be
15// retrieved later.
16//
17// In general, matchers have two parts:
18// 1. A function Matcher<T> MatcherName(<arguments>) which returns a Matcher<T>
19// based on the arguments and optionally on template type deduction based
20// on the arguments. Matcher<T>s form an implicit reverse hierarchy
21// to clang's AST class hierarchy, meaning that you can use a Matcher<Base>
22// everywhere a Matcher<Derived> is required.
23// 2. An implementation of a class derived from MatcherInterface<T>.
24//
25// The matcher functions are defined in ASTMatchers.h. To make it possible
26// to implement both the matcher function and the implementation of the matcher
27// interface in one place, ASTMatcherMacros.h defines macros that allow
28// implementing a matcher in a single place.
29//
30// This file contains the base classes needed to construct the actual matchers.
31//
32//===----------------------------------------------------------------------===//
33
34#ifndef LLVM_CLANG_ASTMATCHERS_ASTMATCHERSINTERNAL_H
35#define LLVM_CLANG_ASTMATCHERS_ASTMATCHERSINTERNAL_H
36
37#include "clang/AST/ASTTypeTraits.h"
38#include "clang/AST/Decl.h"
39#include "clang/AST/DeclCXX.h"
40#include "clang/AST/DeclFriend.h"
41#include "clang/AST/DeclTemplate.h"
42#include "clang/AST/Expr.h"
43#include "clang/AST/ExprCXX.h"
44#include "clang/AST/ExprObjC.h"
45#include "clang/AST/NestedNameSpecifier.h"
46#include "clang/AST/Stmt.h"
47#include "clang/AST/TemplateName.h"
48#include "clang/AST/Type.h"
49#include "clang/AST/TypeLoc.h"
50#include "clang/Basic/LLVM.h"
51#include "clang/Basic/OperatorKinds.h"
52#include "llvm/ADT/APFloat.h"
53#include "llvm/ADT/ArrayRef.h"
54#include "llvm/ADT/IntrusiveRefCntPtr.h"
55#include "llvm/ADT/STLExtras.h"
56#include "llvm/ADT/SmallVector.h"
57#include "llvm/ADT/StringRef.h"
58#include "llvm/ADT/iterator.h"
59#include "llvm/Support/Casting.h"
60#include "llvm/Support/ManagedStatic.h"
61#include "llvm/Support/Regex.h"
62#include <algorithm>
63#include <cassert>
64#include <cstddef>
65#include <cstdint>
66#include <map>
67#include <memory>
68#include <optional>
69#include <string>
70#include <tuple>
71#include <type_traits>
72#include <utility>
73#include <vector>
74
75namespace clang {
76
77class ASTContext;
78
79namespace ast_matchers {
80
81class BoundNodes;
82
83namespace internal {
84
85/// A type-list implementation.
86///
87/// A "linked list" of types, accessible by using the ::head and ::tail
88/// typedefs.
89template <typename... Ts> struct TypeList {}; // Empty sentinel type list.
90
91template <typename T1, typename... Ts> struct TypeList<T1, Ts...> {
92 /// The first type on the list.
93 using head = T1;
94
95 /// A sublist with the tail. ie everything but the head.
96 ///
97 /// This type is used to do recursion. TypeList<>/EmptyTypeList indicates the
98 /// end of the list.
99 using tail = TypeList<Ts...>;
100};
101
102/// The empty type list.
103using EmptyTypeList = TypeList<>;
104
105/// Helper meta-function to determine if some type \c T is present or
106/// a parent type in the list.
107template <typename AnyTypeList, typename T> struct TypeListContainsSuperOf {
108 static const bool value =
109 std::is_base_of<typename AnyTypeList::head, T>::value ||
110 TypeListContainsSuperOf<typename AnyTypeList::tail, T>::value;
111};
112template <typename T> struct TypeListContainsSuperOf<EmptyTypeList, T> {
113 static const bool value = false;
114};
115
116/// Variadic function object.
117///
118/// Most of the functions below that use VariadicFunction could be implemented
119/// using plain C++11 variadic functions, but the function object allows us to
120/// capture it on the dynamic matcher registry.
121template <typename ResultT, typename ArgT,
122 ResultT (*Func)(ArrayRef<const ArgT *>)>
123struct VariadicFunction {
124 ResultT operator()() const { return Func(std::nullopt); }
125
126 template <typename... ArgsT>
127 ResultT operator()(const ArgT &Arg1, const ArgsT &... Args) const {
128 return Execute(Arg1, static_cast<const ArgT &>(Args)...);
129 }
130
131 // We also allow calls with an already created array, in case the caller
132 // already had it.
133 ResultT operator()(ArrayRef<ArgT> Args) const {
134 return Func(llvm::to_vector<8>(llvm::make_pointer_range(Args)));
135 }
136
137private:
138 // Trampoline function to allow for implicit conversions to take place
139 // before we make the array.
140 template <typename... ArgsT> ResultT Execute(const ArgsT &... Args) const {
141 const ArgT *const ArgsArray[] = {&Args...};
142 return Func(ArrayRef<const ArgT *>(ArgsArray, sizeof...(ArgsT)));
143 }
144};
145
146/// Unifies obtaining the underlying type of a regular node through
147/// `getType` and a TypedefNameDecl node through `getUnderlyingType`.
148inline QualType getUnderlyingType(const Expr &Node) { return Node.getType(); }
149
150inline QualType getUnderlyingType(const ValueDecl &Node) {
151 return Node.getType();
152}
153inline QualType getUnderlyingType(const TypedefNameDecl &Node) {
154 return Node.getUnderlyingType();
155}
156inline QualType getUnderlyingType(const FriendDecl &Node) {
157 if (const TypeSourceInfo *TSI = Node.getFriendType())
158 return TSI->getType();
159 return QualType();
160}
161inline QualType getUnderlyingType(const CXXBaseSpecifier &Node) {
162 return Node.getType();
163}
164
165/// Unifies obtaining a `TypeSourceInfo` from different node types.
166template <typename T,
167 std::enable_if_t<TypeListContainsSuperOf<
168 TypeList<CXXBaseSpecifier, CXXCtorInitializer,
169 CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr,
170 CompoundLiteralExpr, DeclaratorDecl, ObjCPropertyDecl,
171 TemplateArgumentLoc, TypedefNameDecl>,
172 T>::value> * = nullptr>
173inline TypeSourceInfo *GetTypeSourceInfo(const T &Node) {
174 return Node.getTypeSourceInfo();
175}
176template <typename T,
177 std::enable_if_t<TypeListContainsSuperOf<
178 TypeList<CXXFunctionalCastExpr, ExplicitCastExpr>, T>::value> * =
179 nullptr>
180inline TypeSourceInfo *GetTypeSourceInfo(const T &Node) {
181 return Node.getTypeInfoAsWritten();
182}
183inline TypeSourceInfo *GetTypeSourceInfo(const BlockDecl &Node) {
184 return Node.getSignatureAsWritten();
185}
186inline TypeSourceInfo *GetTypeSourceInfo(const CXXNewExpr &Node) {
187 return Node.getAllocatedTypeSourceInfo();
188}
189inline TypeSourceInfo *
190GetTypeSourceInfo(const ClassTemplateSpecializationDecl &Node) {
191 return Node.getTypeAsWritten();
192}
193
194/// Unifies obtaining the FunctionProtoType pointer from both
195/// FunctionProtoType and FunctionDecl nodes..
196inline const FunctionProtoType *
197getFunctionProtoType(const FunctionProtoType &Node) {
198 return &Node;
199}
200
201inline const FunctionProtoType *getFunctionProtoType(const FunctionDecl &Node) {
202 return Node.getType()->getAs<FunctionProtoType>();
203}
204
205/// Unifies obtaining the access specifier from Decl and CXXBaseSpecifier nodes.
206inline clang::AccessSpecifier getAccessSpecifier(const Decl &Node) {
207 return Node.getAccess();
208}
209
210inline clang::AccessSpecifier getAccessSpecifier(const CXXBaseSpecifier &Node) {
211 return Node.getAccessSpecifier();
212}
213
214/// Internal version of BoundNodes. Holds all the bound nodes.
215class BoundNodesMap {
216public:
217 /// Adds \c Node to the map with key \c ID.
218 ///
219 /// The node's base type should be in NodeBaseType or it will be unaccessible.
220 void addNode(StringRef ID, const DynTypedNode &DynNode) {
221 NodeMap[std::string(ID)] = DynNode;
222 }
223
224 /// Returns the AST node bound to \c ID.
225 ///
226 /// Returns NULL if there was no node bound to \c ID or if there is a node but
227 /// it cannot be converted to the specified type.
228 template <typename T>
229 const T *getNodeAs(StringRef ID) const {
230 IDToNodeMap::const_iterator It = NodeMap.find(ID);
231 if (It == NodeMap.end()) {
4
Taking false branch
19
Taking true branch
26
Taking true branch
34
Taking false branch
232 return nullptr;
20
Returning null pointer, which participates in a condition later
27
Returning null pointer, which participates in a condition later
233 }
234 return It->second.get<T>();
5
Calling 'DynTypedNode::get'
12
Returning from 'DynTypedNode::get'
13
Returning null pointer, which participates in a condition later
35
Calling 'DynTypedNode::get'
42
Returning from 'DynTypedNode::get'
43
Returning pointer, which participates in a condition later
235 }
236
237 DynTypedNode getNode(StringRef ID) const {
238 IDToNodeMap::const_iterator It = NodeMap.find(ID);
239 if (It == NodeMap.end()) {
240 return DynTypedNode();
241 }
242 return It->second;
243 }
244
245 /// Imposes an order on BoundNodesMaps.
246 bool operator<(const BoundNodesMap &Other) const {
247 return NodeMap < Other.NodeMap;
248 }
249
250 /// A map from IDs to the bound nodes.
251 ///
252 /// Note that we're using std::map here, as for memoization:
253 /// - we need a comparison operator
254 /// - we need an assignment operator
255 using IDToNodeMap = std::map<std::string, DynTypedNode, std::less<>>;
256
257 const IDToNodeMap &getMap() const {
258 return NodeMap;
259 }
260
261 /// Returns \c true if this \c BoundNodesMap can be compared, i.e. all
262 /// stored nodes have memoization data.
263 bool isComparable() const {
264 for (const auto &IDAndNode : NodeMap) {
265 if (!IDAndNode.second.getMemoizationData())
266 return false;
267 }
268 return true;
269 }
270
271private:
272 IDToNodeMap NodeMap;
273};
274
275/// Creates BoundNodesTree objects.
276///
277/// The tree builder is used during the matching process to insert the bound
278/// nodes from the Id matcher.
279class BoundNodesTreeBuilder {
280public:
281 /// A visitor interface to visit all BoundNodes results for a
282 /// BoundNodesTree.
283 class Visitor {
284 public:
285 virtual ~Visitor() = default;
286
287 /// Called multiple times during a single call to VisitMatches(...).
288 ///
289 /// 'BoundNodesView' contains the bound nodes for a single match.
290 virtual void visitMatch(const BoundNodes& BoundNodesView) = 0;
291 };
292
293 /// Add a binding from an id to a node.
294 void setBinding(StringRef Id, const DynTypedNode &DynNode) {
295 if (Bindings.empty())
296 Bindings.emplace_back();
297 for (BoundNodesMap &Binding : Bindings)
298 Binding.addNode(Id, DynNode);
299 }
300
301 /// Adds a branch in the tree.
302 void addMatch(const BoundNodesTreeBuilder &Bindings);
303
304 /// Visits all matches that this BoundNodesTree represents.
305 ///
306 /// The ownership of 'ResultVisitor' remains at the caller.
307 void visitMatches(Visitor* ResultVisitor);
308
309 template <typename ExcludePredicate>
310 bool removeBindings(const ExcludePredicate &Predicate) {
311 llvm::erase_if(Bindings, Predicate);
312 return !Bindings.empty();
313 }
314
315 /// Imposes an order on BoundNodesTreeBuilders.
316 bool operator<(const BoundNodesTreeBuilder &Other) const {
317 return Bindings < Other.Bindings;
318 }
319
320 /// Returns \c true if this \c BoundNodesTreeBuilder can be compared,
321 /// i.e. all stored node maps have memoization data.
322 bool isComparable() const {
323 for (const BoundNodesMap &NodesMap : Bindings) {
324 if (!NodesMap.isComparable())
325 return false;
326 }
327 return true;
328 }
329
330private:
331 SmallVector<BoundNodesMap, 1> Bindings;
332};
333
334class ASTMatchFinder;
335
336/// Generic interface for all matchers.
337///
338/// Used by the implementation of Matcher<T> and DynTypedMatcher.
339/// In general, implement MatcherInterface<T> or SingleNodeMatcherInterface<T>
340/// instead.
341class DynMatcherInterface
342 : public llvm::ThreadSafeRefCountedBase<DynMatcherInterface> {
343public:
344 virtual ~DynMatcherInterface() = default;
345
346 /// Returns true if \p DynNode can be matched.
347 ///
348 /// May bind \p DynNode to an ID via \p Builder, or recurse into
349 /// the AST via \p Finder.
350 virtual bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
351 BoundNodesTreeBuilder *Builder) const = 0;
352
353 virtual std::optional<clang::TraversalKind> TraversalKind() const {
354 return std::nullopt;
355 }
356};
357
358/// Generic interface for matchers on an AST node of type T.
359///
360/// Implement this if your matcher may need to inspect the children or
361/// descendants of the node or bind matched nodes to names. If you are
362/// writing a simple matcher that only inspects properties of the
363/// current node and doesn't care about its children or descendants,
364/// implement SingleNodeMatcherInterface instead.
365template <typename T>
366class MatcherInterface : public DynMatcherInterface {
367public:
368 /// Returns true if 'Node' can be matched.
369 ///
370 /// May bind 'Node' to an ID via 'Builder', or recurse into
371 /// the AST via 'Finder'.
372 virtual bool matches(const T &Node,
373 ASTMatchFinder *Finder,
374 BoundNodesTreeBuilder *Builder) const = 0;
375
376 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
377 BoundNodesTreeBuilder *Builder) const override {
378 return matches(DynNode.getUnchecked<T>(), Finder, Builder);
379 }
380};
381
382/// Interface for matchers that only evaluate properties on a single
383/// node.
384template <typename T>
385class SingleNodeMatcherInterface : public MatcherInterface<T> {
386public:
387 /// Returns true if the matcher matches the provided node.
388 ///
389 /// A subclass must implement this instead of Matches().
390 virtual bool matchesNode(const T &Node) const = 0;
391
392private:
393 /// Implements MatcherInterface::Matches.
394 bool matches(const T &Node,
395 ASTMatchFinder * /* Finder */,
396 BoundNodesTreeBuilder * /* Builder */) const override {
397 return matchesNode(Node);
398 }
399};
400
401template <typename> class Matcher;
402
403/// Matcher that works on a \c DynTypedNode.
404///
405/// It is constructed from a \c Matcher<T> object and redirects most calls to
406/// underlying matcher.
407/// It checks whether the \c DynTypedNode is convertible into the type of the
408/// underlying matcher and then do the actual match on the actual node, or
409/// return false if it is not convertible.
410class DynTypedMatcher {
411public:
412 /// Takes ownership of the provided implementation pointer.
413 template <typename T>
414 DynTypedMatcher(MatcherInterface<T> *Implementation)
415 : SupportedKind(ASTNodeKind::getFromNodeKind<T>()),
416 RestrictKind(SupportedKind), Implementation(Implementation) {}
417
418 /// Construct from a variadic function.
419 enum VariadicOperator {
420 /// Matches nodes for which all provided matchers match.
421 VO_AllOf,
422
423 /// Matches nodes for which at least one of the provided matchers
424 /// matches.
425 VO_AnyOf,
426
427 /// Matches nodes for which at least one of the provided matchers
428 /// matches, but doesn't stop at the first match.
429 VO_EachOf,
430
431 /// Matches any node but executes all inner matchers to find result
432 /// bindings.
433 VO_Optionally,
434
435 /// Matches nodes that do not match the provided matcher.
436 ///
437 /// Uses the variadic matcher interface, but fails if
438 /// InnerMatchers.size() != 1.
439 VO_UnaryNot
440 };
441
442 static DynTypedMatcher
443 constructVariadic(VariadicOperator Op, ASTNodeKind SupportedKind,
444 std::vector<DynTypedMatcher> InnerMatchers);
445
446 static DynTypedMatcher
447 constructRestrictedWrapper(const DynTypedMatcher &InnerMatcher,
448 ASTNodeKind RestrictKind);
449
450 /// Get a "true" matcher for \p NodeKind.
451 ///
452 /// It only checks that the node is of the right kind.
453 static DynTypedMatcher trueMatcher(ASTNodeKind NodeKind);
454
455 void setAllowBind(bool AB) { AllowBind = AB; }
456
457 /// Check whether this matcher could ever match a node of kind \p Kind.
458 /// \return \c false if this matcher will never match such a node. Otherwise,
459 /// return \c true.
460 bool canMatchNodesOfKind(ASTNodeKind Kind) const;
461
462 /// Return a matcher that points to the same implementation, but
463 /// restricts the node types for \p Kind.
464 DynTypedMatcher dynCastTo(const ASTNodeKind Kind) const;
465
466 /// Return a matcher that points to the same implementation, but sets the
467 /// traversal kind.
468 ///
469 /// If the traversal kind is already set, then \c TK overrides it.
470 DynTypedMatcher withTraversalKind(TraversalKind TK);
471
472 /// Returns true if the matcher matches the given \c DynNode.
473 bool matches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
474 BoundNodesTreeBuilder *Builder) const;
475
476 /// Same as matches(), but skips the kind check.
477 ///
478 /// It is faster, but the caller must ensure the node is valid for the
479 /// kind of this matcher.
480 bool matchesNoKindCheck(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
481 BoundNodesTreeBuilder *Builder) const;
482
483 /// Bind the specified \p ID to the matcher.
484 /// \return A new matcher with the \p ID bound to it if this matcher supports
485 /// binding. Otherwise, returns an empty \c std::optional<>.
486 std::optional<DynTypedMatcher> tryBind(StringRef ID) const;
487
488 /// Returns a unique \p ID for the matcher.
489 ///
490 /// Casting a Matcher<T> to Matcher<U> creates a matcher that has the
491 /// same \c Implementation pointer, but different \c RestrictKind. We need to
492 /// include both in the ID to make it unique.
493 ///
494 /// \c MatcherIDType supports operator< and provides strict weak ordering.
495 using MatcherIDType = std::pair<ASTNodeKind, uint64_t>;
496 MatcherIDType getID() const {
497 /// FIXME: Document the requirements this imposes on matcher
498 /// implementations (no new() implementation_ during a Matches()).
499 return std::make_pair(RestrictKind,
500 reinterpret_cast<uint64_t>(Implementation.get()));
501 }
502
503 /// Returns the type this matcher works on.
504 ///
505 /// \c matches() will always return false unless the node passed is of this
506 /// or a derived type.
507 ASTNodeKind getSupportedKind() const { return SupportedKind; }
508
509 /// Returns \c true if the passed \c DynTypedMatcher can be converted
510 /// to a \c Matcher<T>.
511 ///
512 /// This method verifies that the underlying matcher in \c Other can process
513 /// nodes of types T.
514 template <typename T> bool canConvertTo() const {
515 return canConvertTo(ASTNodeKind::getFromNodeKind<T>());
516 }
517 bool canConvertTo(ASTNodeKind To) const;
518
519 /// Construct a \c Matcher<T> interface around the dynamic matcher.
520 ///
521 /// This method asserts that \c canConvertTo() is \c true. Callers
522 /// should call \c canConvertTo() first to make sure that \c this is
523 /// compatible with T.
524 template <typename T> Matcher<T> convertTo() const {
525 assert(canConvertTo<T>())(static_cast <bool> (canConvertTo<T>()) ? void (0
) : __assert_fail ("canConvertTo<T>()", "clang/include/clang/ASTMatchers/ASTMatchersInternal.h"
, 525, __extension__ __PRETTY_FUNCTION__))
;
526 return unconditionalConvertTo<T>();
527 }
528
529 /// Same as \c convertTo(), but does not check that the underlying
530 /// matcher can handle a value of T.
531 ///
532 /// If it is not compatible, then this matcher will never match anything.
533 template <typename T> Matcher<T> unconditionalConvertTo() const;
534
535 /// Returns the \c TraversalKind respected by calls to `match()`, if any.
536 ///
537 /// Most matchers will not have a traversal kind set, instead relying on the
538 /// surrounding context. For those, \c std::nullopt is returned.
539 std::optional<clang::TraversalKind> getTraversalKind() const {
540 return Implementation->TraversalKind();
541 }
542
543private:
544 DynTypedMatcher(ASTNodeKind SupportedKind, ASTNodeKind RestrictKind,
545 IntrusiveRefCntPtr<DynMatcherInterface> Implementation)
546 : SupportedKind(SupportedKind), RestrictKind(RestrictKind),
547 Implementation(std::move(Implementation)) {}
548
549 bool AllowBind = false;
550 ASTNodeKind SupportedKind;
551
552 /// A potentially stricter node kind.
553 ///
554 /// It allows to perform implicit and dynamic cast of matchers without
555 /// needing to change \c Implementation.
556 ASTNodeKind RestrictKind;
557 IntrusiveRefCntPtr<DynMatcherInterface> Implementation;
558};
559
560/// Wrapper of a MatcherInterface<T> *that allows copying.
561///
562/// A Matcher<Base> can be used anywhere a Matcher<Derived> is
563/// required. This establishes an is-a relationship which is reverse
564/// to the AST hierarchy. In other words, Matcher<T> is contravariant
565/// with respect to T. The relationship is built via a type conversion
566/// operator rather than a type hierarchy to be able to templatize the
567/// type hierarchy instead of spelling it out.
568template <typename T>
569class Matcher {
570public:
571 /// Takes ownership of the provided implementation pointer.
572 explicit Matcher(MatcherInterface<T> *Implementation)
573 : Implementation(Implementation) {}
574
575 /// Implicitly converts \c Other to a Matcher<T>.
576 ///
577 /// Requires \c T to be derived from \c From.
578 template <typename From>
579 Matcher(const Matcher<From> &Other,
580 std::enable_if_t<std::is_base_of<From, T>::value &&
581 !std::is_same<From, T>::value> * = nullptr)
582 : Implementation(restrictMatcher(Other.Implementation)) {
583 assert(Implementation.getSupportedKind().isSame((static_cast <bool> (Implementation.getSupportedKind().
isSame( ASTNodeKind::getFromNodeKind<T>())) ? void (0) :
__assert_fail ("Implementation.getSupportedKind().isSame( ASTNodeKind::getFromNodeKind<T>())"
, "clang/include/clang/ASTMatchers/ASTMatchersInternal.h", 584
, __extension__ __PRETTY_FUNCTION__))
584 ASTNodeKind::getFromNodeKind<T>()))(static_cast <bool> (Implementation.getSupportedKind().
isSame( ASTNodeKind::getFromNodeKind<T>())) ? void (0) :
__assert_fail ("Implementation.getSupportedKind().isSame( ASTNodeKind::getFromNodeKind<T>())"
, "clang/include/clang/ASTMatchers/ASTMatchersInternal.h", 584
, __extension__ __PRETTY_FUNCTION__))
;
585 }
586
587 /// Implicitly converts \c Matcher<Type> to \c Matcher<QualType>.
588 ///
589 /// The resulting matcher is not strict, i.e. ignores qualifiers.
590 template <typename TypeT>
591 Matcher(const Matcher<TypeT> &Other,
592 std::enable_if_t<std::is_same<T, QualType>::value &&
593 std::is_same<TypeT, Type>::value> * = nullptr)
594 : Implementation(new TypeToQualType<TypeT>(Other)) {}
595
596 /// Convert \c this into a \c Matcher<T> by applying dyn_cast<> to the
597 /// argument.
598 /// \c To must be a base class of \c T.
599 template <typename To> Matcher<To> dynCastTo() const & {
600 static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
601 return Matcher<To>(Implementation);
602 }
603
604 template <typename To> Matcher<To> dynCastTo() && {
605 static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
606 return Matcher<To>(std::move(Implementation));
607 }
608
609 /// Forwards the call to the underlying MatcherInterface<T> pointer.
610 bool matches(const T &Node,
611 ASTMatchFinder *Finder,
612 BoundNodesTreeBuilder *Builder) const {
613 return Implementation.matches(DynTypedNode::create(Node), Finder, Builder);
614 }
615
616 /// Returns an ID that uniquely identifies the matcher.
617 DynTypedMatcher::MatcherIDType getID() const {
618 return Implementation.getID();
619 }
620
621 /// Extract the dynamic matcher.
622 ///
623 /// The returned matcher keeps the same restrictions as \c this and remembers
624 /// that it is meant to support nodes of type \c T.
625 operator DynTypedMatcher() const & { return Implementation; }
626
627 operator DynTypedMatcher() && { return std::move(Implementation); }
628
629 /// Allows the conversion of a \c Matcher<Type> to a \c
630 /// Matcher<QualType>.
631 ///
632 /// Depending on the constructor argument, the matcher is either strict, i.e.
633 /// does only matches in the absence of qualifiers, or not, i.e. simply
634 /// ignores any qualifiers.
635 template <typename TypeT>
636 class TypeToQualType : public MatcherInterface<QualType> {
637 const DynTypedMatcher InnerMatcher;
638
639 public:
640 TypeToQualType(const Matcher<TypeT> &InnerMatcher)
641 : InnerMatcher(InnerMatcher) {}
642
643 bool matches(const QualType &Node, ASTMatchFinder *Finder,
644 BoundNodesTreeBuilder *Builder) const override {
645 if (Node.isNull())
646 return false;
647 return this->InnerMatcher.matches(DynTypedNode::create(*Node), Finder,
648 Builder);
649 }
650
651 std::optional<clang::TraversalKind> TraversalKind() const override {
652 return this->InnerMatcher.getTraversalKind();
653 }
654 };
655
656private:
657 // For Matcher<T> <=> Matcher<U> conversions.
658 template <typename U> friend class Matcher;
659
660 // For DynTypedMatcher::unconditionalConvertTo<T>.
661 friend class DynTypedMatcher;
662
663 static DynTypedMatcher restrictMatcher(const DynTypedMatcher &Other) {
664 return Other.dynCastTo(ASTNodeKind::getFromNodeKind<T>());
665 }
666
667 explicit Matcher(const DynTypedMatcher &Implementation)
668 : Implementation(restrictMatcher(Implementation)) {
669 assert(this->Implementation.getSupportedKind().isSame((static_cast <bool> (this->Implementation.getSupportedKind
().isSame( ASTNodeKind::getFromNodeKind<T>())) ? void (
0) : __assert_fail ("this->Implementation.getSupportedKind().isSame( ASTNodeKind::getFromNodeKind<T>())"
, "clang/include/clang/ASTMatchers/ASTMatchersInternal.h", 670
, __extension__ __PRETTY_FUNCTION__))
670 ASTNodeKind::getFromNodeKind<T>()))(static_cast <bool> (this->Implementation.getSupportedKind
().isSame( ASTNodeKind::getFromNodeKind<T>())) ? void (
0) : __assert_fail ("this->Implementation.getSupportedKind().isSame( ASTNodeKind::getFromNodeKind<T>())"
, "clang/include/clang/ASTMatchers/ASTMatchersInternal.h", 670
, __extension__ __PRETTY_FUNCTION__))
;
671 }
672
673 DynTypedMatcher Implementation;
674}; // class Matcher
675
676/// A convenient helper for creating a Matcher<T> without specifying
677/// the template type argument.
678template <typename T>
679inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
680 return Matcher<T>(Implementation);
681}
682
683/// Interface that allows matchers to traverse the AST.
684/// FIXME: Find a better name.
685///
686/// This provides three entry methods for each base node type in the AST:
687/// - \c matchesChildOf:
688/// Matches a matcher on every child node of the given node. Returns true
689/// if at least one child node could be matched.
690/// - \c matchesDescendantOf:
691/// Matches a matcher on all descendant nodes of the given node. Returns true
692/// if at least one descendant matched.
693/// - \c matchesAncestorOf:
694/// Matches a matcher on all ancestors of the given node. Returns true if
695/// at least one ancestor matched.
696///
697/// FIXME: Currently we only allow Stmt and Decl nodes to start a traversal.
698/// In the future, we want to implement this for all nodes for which it makes
699/// sense. In the case of matchesAncestorOf, we'll want to implement it for
700/// all nodes, as all nodes have ancestors.
701class ASTMatchFinder {
702public:
703 /// Defines how bindings are processed on recursive matches.
704 enum BindKind {
705 /// Stop at the first match and only bind the first match.
706 BK_First,
707
708 /// Create results for all combinations of bindings that match.
709 BK_All
710 };
711
712 /// Defines which ancestors are considered for a match.
713 enum AncestorMatchMode {
714 /// All ancestors.
715 AMM_All,
716
717 /// Direct parent only.
718 AMM_ParentOnly
719 };
720
721 virtual ~ASTMatchFinder() = default;
722
723 /// Returns true if the given C++ class is directly or indirectly derived
724 /// from a base type matching \c base.
725 ///
726 /// A class is not considered to be derived from itself.
727 virtual bool classIsDerivedFrom(const CXXRecordDecl *Declaration,
728 const Matcher<NamedDecl> &Base,
729 BoundNodesTreeBuilder *Builder,
730 bool Directly) = 0;
731
732 /// Returns true if the given Objective-C class is directly or indirectly
733 /// derived from a base class matching \c base.
734 ///
735 /// A class is not considered to be derived from itself.
736 virtual bool objcClassIsDerivedFrom(const ObjCInterfaceDecl *Declaration,
737 const Matcher<NamedDecl> &Base,
738 BoundNodesTreeBuilder *Builder,
739 bool Directly) = 0;
740
741 template <typename T>
742 bool matchesChildOf(const T &Node, const DynTypedMatcher &Matcher,
743 BoundNodesTreeBuilder *Builder, BindKind Bind) {
744 static_assert(std::is_base_of<Decl, T>::value ||
745 std::is_base_of<Stmt, T>::value ||
746 std::is_base_of<NestedNameSpecifier, T>::value ||
747 std::is_base_of<NestedNameSpecifierLoc, T>::value ||
748 std::is_base_of<TypeLoc, T>::value ||
749 std::is_base_of<QualType, T>::value ||
750 std::is_base_of<Attr, T>::value,
751 "unsupported type for recursive matching");
752 return matchesChildOf(DynTypedNode::create(Node), getASTContext(), Matcher,
753 Builder, Bind);
754 }
755
756 template <typename T>
757 bool matchesDescendantOf(const T &Node, const DynTypedMatcher &Matcher,
758 BoundNodesTreeBuilder *Builder, BindKind Bind) {
759 static_assert(std::is_base_of<Decl, T>::value ||
760 std::is_base_of<Stmt, T>::value ||
761 std::is_base_of<NestedNameSpecifier, T>::value ||
762 std::is_base_of<NestedNameSpecifierLoc, T>::value ||
763 std::is_base_of<TypeLoc, T>::value ||
764 std::is_base_of<QualType, T>::value ||
765 std::is_base_of<Attr, T>::value,
766 "unsupported type for recursive matching");
767 return matchesDescendantOf(DynTypedNode::create(Node), getASTContext(),
768 Matcher, Builder, Bind);
769 }
770
771 // FIXME: Implement support for BindKind.
772 template <typename T>
773 bool matchesAncestorOf(const T &Node, const DynTypedMatcher &Matcher,
774 BoundNodesTreeBuilder *Builder,
775 AncestorMatchMode MatchMode) {
776 static_assert(std::is_base_of<Decl, T>::value ||
777 std::is_base_of<NestedNameSpecifierLoc, T>::value ||
778 std::is_base_of<Stmt, T>::value ||
779 std::is_base_of<TypeLoc, T>::value ||
780 std::is_base_of<Attr, T>::value,
781 "type not allowed for recursive matching");
782 return matchesAncestorOf(DynTypedNode::create(Node), getASTContext(),
783 Matcher, Builder, MatchMode);
784 }
785
786 virtual ASTContext &getASTContext() const = 0;
787
788 virtual bool IsMatchingInASTNodeNotSpelledInSource() const = 0;
789
790 virtual bool IsMatchingInASTNodeNotAsIs() const = 0;
791
792 bool isTraversalIgnoringImplicitNodes() const;
793
794protected:
795 virtual bool matchesChildOf(const DynTypedNode &Node, ASTContext &Ctx,
796 const DynTypedMatcher &Matcher,
797 BoundNodesTreeBuilder *Builder,
798 BindKind Bind) = 0;
799
800 virtual bool matchesDescendantOf(const DynTypedNode &Node, ASTContext &Ctx,
801 const DynTypedMatcher &Matcher,
802 BoundNodesTreeBuilder *Builder,
803 BindKind Bind) = 0;
804
805 virtual bool matchesAncestorOf(const DynTypedNode &Node, ASTContext &Ctx,
806 const DynTypedMatcher &Matcher,
807 BoundNodesTreeBuilder *Builder,
808 AncestorMatchMode MatchMode) = 0;
809private:
810 friend struct ASTChildrenNotSpelledInSourceScope;
811 virtual bool isMatchingChildrenNotSpelledInSource() const = 0;
812 virtual void setMatchingChildrenNotSpelledInSource(bool Set) = 0;
813};
814
815struct ASTChildrenNotSpelledInSourceScope {
816 ASTChildrenNotSpelledInSourceScope(ASTMatchFinder *V, bool B)
817 : MV(V), MB(V->isMatchingChildrenNotSpelledInSource()) {
818 V->setMatchingChildrenNotSpelledInSource(B);
819 }
820 ~ASTChildrenNotSpelledInSourceScope() {
821 MV->setMatchingChildrenNotSpelledInSource(MB);
822 }
823
824private:
825 ASTMatchFinder *MV;
826 bool MB;
827};
828
829/// Specialization of the conversion functions for QualType.
830///
831/// This specialization provides the Matcher<Type>->Matcher<QualType>
832/// conversion that the static API does.
833template <>
834inline Matcher<QualType> DynTypedMatcher::convertTo<QualType>() const {
835 assert(canConvertTo<QualType>())(static_cast <bool> (canConvertTo<QualType>()) ? void
(0) : __assert_fail ("canConvertTo<QualType>()", "clang/include/clang/ASTMatchers/ASTMatchersInternal.h"
, 835, __extension__ __PRETTY_FUNCTION__))
;
836 const ASTNodeKind SourceKind = getSupportedKind();
837 if (SourceKind.isSame(ASTNodeKind::getFromNodeKind<Type>())) {
838 // We support implicit conversion from Matcher<Type> to Matcher<QualType>
839 return unconditionalConvertTo<Type>();
840 }
841 return unconditionalConvertTo<QualType>();
842}
843
844/// Finds the first node in a range that matches the given matcher.
845template <typename MatcherT, typename IteratorT>
846IteratorT matchesFirstInRange(const MatcherT &Matcher, IteratorT Start,
847 IteratorT End, ASTMatchFinder *Finder,
848 BoundNodesTreeBuilder *Builder) {
849 for (IteratorT I = Start; I != End; ++I) {
850 BoundNodesTreeBuilder Result(*Builder);
851 if (Matcher.matches(*I, Finder, &Result)) {
852 *Builder = std::move(Result);
853 return I;
854 }
855 }
856 return End;
857}
858
859/// Finds the first node in a pointer range that matches the given
860/// matcher.
861template <typename MatcherT, typename IteratorT>
862IteratorT matchesFirstInPointerRange(const MatcherT &Matcher, IteratorT Start,
863 IteratorT End, ASTMatchFinder *Finder,
864 BoundNodesTreeBuilder *Builder) {
865 for (IteratorT I = Start; I != End; ++I) {
866 BoundNodesTreeBuilder Result(*Builder);
867 if (Matcher.matches(**I, Finder, &Result)) {
868 *Builder = std::move(Result);
869 return I;
870 }
871 }
872 return End;
873}
874
875template <typename T, std::enable_if_t<!std::is_base_of<FunctionDecl, T>::value>
876 * = nullptr>
877inline bool isDefaultedHelper(const T *) {
878 return false;
879}
880inline bool isDefaultedHelper(const FunctionDecl *FD) {
881 return FD->isDefaulted();
882}
883
884// Metafunction to determine if type T has a member called getDecl.
885template <typename Ty>
886class has_getDecl {
887 using yes = char[1];
888 using no = char[2];
889
890 template <typename Inner>
891 static yes& test(Inner *I, decltype(I->getDecl()) * = nullptr);
892
893 template <typename>
894 static no& test(...);
895
896public:
897 static const bool value = sizeof(test<Ty>(nullptr)) == sizeof(yes);
898};
899
900/// Matches overloaded operators with a specific name.
901///
902/// The type argument ArgT is not used by this matcher but is used by
903/// PolymorphicMatcher and should be StringRef.
904template <typename T, typename ArgT>
905class HasOverloadedOperatorNameMatcher : public SingleNodeMatcherInterface<T> {
906 static_assert(std::is_same<T, CXXOperatorCallExpr>::value ||
907 std::is_base_of<FunctionDecl, T>::value,
908 "unsupported class for matcher");
909 static_assert(std::is_same<ArgT, std::vector<std::string>>::value,
910 "argument type must be std::vector<std::string>");
911
912public:
913 explicit HasOverloadedOperatorNameMatcher(std::vector<std::string> Names)
914 : SingleNodeMatcherInterface<T>(), Names(std::move(Names)) {}
915
916 bool matchesNode(const T &Node) const override {
917 return matchesSpecialized(Node);
918 }
919
920private:
921
922 /// CXXOperatorCallExpr exist only for calls to overloaded operators
923 /// so this function returns true if the call is to an operator of the given
924 /// name.
925 bool matchesSpecialized(const CXXOperatorCallExpr &Node) const {
926 return llvm::is_contained(Names, getOperatorSpelling(Node.getOperator()));
927 }
928
929 /// Returns true only if CXXMethodDecl represents an overloaded
930 /// operator and has the given operator name.
931 bool matchesSpecialized(const FunctionDecl &Node) const {
932 return Node.isOverloadedOperator() &&
933 llvm::is_contained(
934 Names, getOperatorSpelling(Node.getOverloadedOperator()));
935 }
936
937 std::vector<std::string> Names;
938};
939
940/// Matches named declarations with a specific name.
941///
942/// See \c hasName() and \c hasAnyName() in ASTMatchers.h for details.
943class HasNameMatcher : public SingleNodeMatcherInterface<NamedDecl> {
944 public:
945 explicit HasNameMatcher(std::vector<std::string> Names);
946
947 bool matchesNode(const NamedDecl &Node) const override;
948
949private:
950 /// Unqualified match routine.
951 ///
952 /// It is much faster than the full match, but it only works for unqualified
953 /// matches.
954 bool matchesNodeUnqualified(const NamedDecl &Node) const;
955
956 /// Full match routine
957 ///
958 /// Fast implementation for the simple case of a named declaration at
959 /// namespace or RecordDecl scope.
960 /// It is slower than matchesNodeUnqualified, but faster than
961 /// matchesNodeFullSlow.
962 bool matchesNodeFullFast(const NamedDecl &Node) const;
963
964 /// Full match routine
965 ///
966 /// It generates the fully qualified name of the declaration (which is
967 /// expensive) before trying to match.
968 /// It is slower but simple and works on all cases.
969 bool matchesNodeFullSlow(const NamedDecl &Node) const;
970
971 bool UseUnqualifiedMatch;
972 std::vector<std::string> Names;
973};
974
975/// Trampoline function to use VariadicFunction<> to construct a
976/// HasNameMatcher.
977Matcher<NamedDecl> hasAnyNameFunc(ArrayRef<const StringRef *> NameRefs);
978
979/// Trampoline function to use VariadicFunction<> to construct a
980/// hasAnySelector matcher.
981Matcher<ObjCMessageExpr> hasAnySelectorFunc(
982 ArrayRef<const StringRef *> NameRefs);
983
984/// Matches declarations for QualType and CallExpr.
985///
986/// Type argument DeclMatcherT is required by PolymorphicMatcher but
987/// not actually used.
988template <typename T, typename DeclMatcherT>
989class HasDeclarationMatcher : public MatcherInterface<T> {
990 static_assert(std::is_same<DeclMatcherT, Matcher<Decl>>::value,
991 "instantiated with wrong types");
992
993 DynTypedMatcher InnerMatcher;
994
995public:
996 explicit HasDeclarationMatcher(const Matcher<Decl> &InnerMatcher)
997 : InnerMatcher(InnerMatcher) {}
998
999 bool matches(const T &Node, ASTMatchFinder *Finder,
1000 BoundNodesTreeBuilder *Builder) const override {
1001 return matchesSpecialized(Node, Finder, Builder);
1002 }
1003
1004private:
1005 /// Forwards to matching on the underlying type of the QualType.
1006 bool matchesSpecialized(const QualType &Node, ASTMatchFinder *Finder,
1007 BoundNodesTreeBuilder *Builder) const {
1008 if (Node.isNull())
1009 return false;
1010
1011 return matchesSpecialized(*Node, Finder, Builder);
1012 }
1013
1014 /// Finds the best declaration for a type and returns whether the inner
1015 /// matcher matches on it.
1016 bool matchesSpecialized(const Type &Node, ASTMatchFinder *Finder,
1017 BoundNodesTreeBuilder *Builder) const {
1018 // DeducedType does not have declarations of its own, so
1019 // match the deduced type instead.
1020 if (const auto *S = dyn_cast<DeducedType>(&Node)) {
1021 QualType DT = S->getDeducedType();
1022 return !DT.isNull() ? matchesSpecialized(*DT, Finder, Builder) : false;
1023 }
1024
1025 // First, for any types that have a declaration, extract the declaration and
1026 // match on it.
1027 if (const auto *S = dyn_cast<TagType>(&Node)) {
1028 return matchesDecl(S->getDecl(), Finder, Builder);
1029 }
1030 if (const auto *S = dyn_cast<InjectedClassNameType>(&Node)) {
1031 return matchesDecl(S->getDecl(), Finder, Builder);
1032 }
1033 if (const auto *S = dyn_cast<TemplateTypeParmType>(&Node)) {
1034 return matchesDecl(S->getDecl(), Finder, Builder);
1035 }
1036 if (const auto *S = dyn_cast<TypedefType>(&Node)) {
1037 return matchesDecl(S->getDecl(), Finder, Builder);
1038 }
1039 if (const auto *S = dyn_cast<UnresolvedUsingType>(&Node)) {
1040 return matchesDecl(S->getDecl(), Finder, Builder);
1041 }
1042 if (const auto *S = dyn_cast<ObjCObjectType>(&Node)) {
1043 return matchesDecl(S->getInterface(), Finder, Builder);
1044 }
1045
1046 // A SubstTemplateTypeParmType exists solely to mark a type substitution
1047 // on the instantiated template. As users usually want to match the
1048 // template parameter on the uninitialized template, we can always desugar
1049 // one level without loss of expressivness.
1050 // For example, given:
1051 // template<typename T> struct X { T t; } class A {}; X<A> a;
1052 // The following matcher will match, which otherwise would not:
1053 // fieldDecl(hasType(pointerType())).
1054 if (const auto *S = dyn_cast<SubstTemplateTypeParmType>(&Node)) {
1055 return matchesSpecialized(S->getReplacementType(), Finder, Builder);
1056 }
1057
1058 // For template specialization types, we want to match the template
1059 // declaration, as long as the type is still dependent, and otherwise the
1060 // declaration of the instantiated tag type.
1061 if (const auto *S = dyn_cast<TemplateSpecializationType>(&Node)) {
1062 if (!S->isTypeAlias() && S->isSugared()) {
1063 // If the template is non-dependent, we want to match the instantiated
1064 // tag type.
1065 // For example, given:
1066 // template<typename T> struct X {}; X<int> a;
1067 // The following matcher will match, which otherwise would not:
1068 // templateSpecializationType(hasDeclaration(cxxRecordDecl())).
1069 return matchesSpecialized(*S->desugar(), Finder, Builder);
1070 }
1071 // If the template is dependent or an alias, match the template
1072 // declaration.
1073 return matchesDecl(S->getTemplateName().getAsTemplateDecl(), Finder,
1074 Builder);
1075 }
1076
1077 // FIXME: We desugar elaborated types. This makes the assumption that users
1078 // do never want to match on whether a type is elaborated - there are
1079 // arguments for both sides; for now, continue desugaring.
1080 if (const auto *S = dyn_cast<ElaboratedType>(&Node)) {
1081 return matchesSpecialized(S->desugar(), Finder, Builder);
1082 }
1083 // Similarly types found via using declarations.
1084 // These are *usually* meaningless sugar, and this matches the historical
1085 // behavior prior to the introduction of UsingType.
1086 if (const auto *S = dyn_cast<UsingType>(&Node)) {
1087 return matchesSpecialized(S->desugar(), Finder, Builder);
1088 }
1089 return false;
1090 }
1091
1092 /// Extracts the Decl the DeclRefExpr references and returns whether
1093 /// the inner matcher matches on it.
1094 bool matchesSpecialized(const DeclRefExpr &Node, ASTMatchFinder *Finder,
1095 BoundNodesTreeBuilder *Builder) const {
1096 return matchesDecl(Node.getDecl(), Finder, Builder);
1097 }
1098
1099 /// Extracts the Decl of the callee of a CallExpr and returns whether
1100 /// the inner matcher matches on it.
1101 bool matchesSpecialized(const CallExpr &Node, ASTMatchFinder *Finder,
1102 BoundNodesTreeBuilder *Builder) const {
1103 return matchesDecl(Node.getCalleeDecl(), Finder, Builder);
1104 }
1105
1106 /// Extracts the Decl of the constructor call and returns whether the
1107 /// inner matcher matches on it.
1108 bool matchesSpecialized(const CXXConstructExpr &Node,
1109 ASTMatchFinder *Finder,
1110 BoundNodesTreeBuilder *Builder) const {
1111 return matchesDecl(Node.getConstructor(), Finder, Builder);
1112 }
1113
1114 bool matchesSpecialized(const ObjCIvarRefExpr &Node,
1115 ASTMatchFinder *Finder,
1116 BoundNodesTreeBuilder *Builder) const {
1117 return matchesDecl(Node.getDecl(), Finder, Builder);
1118 }
1119
1120 /// Extracts the operator new of the new call and returns whether the
1121 /// inner matcher matches on it.
1122 bool matchesSpecialized(const CXXNewExpr &Node,
1123 ASTMatchFinder *Finder,
1124 BoundNodesTreeBuilder *Builder) const {
1125 return matchesDecl(Node.getOperatorNew(), Finder, Builder);
1126 }
1127
1128 /// Extracts the \c ValueDecl a \c MemberExpr refers to and returns
1129 /// whether the inner matcher matches on it.
1130 bool matchesSpecialized(const MemberExpr &Node,
1131 ASTMatchFinder *Finder,
1132 BoundNodesTreeBuilder *Builder) const {
1133 return matchesDecl(Node.getMemberDecl(), Finder, Builder);
1134 }
1135
1136 /// Extracts the \c LabelDecl a \c AddrLabelExpr refers to and returns
1137 /// whether the inner matcher matches on it.
1138 bool matchesSpecialized(const AddrLabelExpr &Node,
1139 ASTMatchFinder *Finder,
1140 BoundNodesTreeBuilder *Builder) const {
1141 return matchesDecl(Node.getLabel(), Finder, Builder);
1142 }
1143
1144 /// Extracts the declaration of a LabelStmt and returns whether the
1145 /// inner matcher matches on it.
1146 bool matchesSpecialized(const LabelStmt &Node, ASTMatchFinder *Finder,
1147 BoundNodesTreeBuilder *Builder) const {
1148 return matchesDecl(Node.getDecl(), Finder, Builder);
1149 }
1150
1151 /// Returns whether the inner matcher \c Node. Returns false if \c Node
1152 /// is \c NULL.
1153 bool matchesDecl(const Decl *Node, ASTMatchFinder *Finder,
1154 BoundNodesTreeBuilder *Builder) const {
1155 return Node != nullptr &&
1156 !(Finder->isTraversalIgnoringImplicitNodes() &&
1157 Node->isImplicit()) &&
1158 this->InnerMatcher.matches(DynTypedNode::create(*Node), Finder,
1159 Builder);
1160 }
1161};
1162
1163/// IsBaseType<T>::value is true if T is a "base" type in the AST
1164/// node class hierarchies.
1165template <typename T>
1166struct IsBaseType {
1167 static const bool value =
1168 std::is_same<T, Decl>::value || std::is_same<T, Stmt>::value ||
1169 std::is_same<T, QualType>::value || std::is_same<T, Type>::value ||
1170 std::is_same<T, TypeLoc>::value ||
1171 std::is_same<T, NestedNameSpecifier>::value ||
1172 std::is_same<T, NestedNameSpecifierLoc>::value ||
1173 std::is_same<T, CXXCtorInitializer>::value ||
1174 std::is_same<T, TemplateArgumentLoc>::value ||
1175 std::is_same<T, Attr>::value;
1176};
1177template <typename T>
1178const bool IsBaseType<T>::value;
1179
1180/// A "type list" that contains all types.
1181///
1182/// Useful for matchers like \c anything and \c unless.
1183using AllNodeBaseTypes =
1184 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, QualType,
1185 Type, TypeLoc, CXXCtorInitializer, Attr>;
1186
1187/// Helper meta-function to extract the argument out of a function of
1188/// type void(Arg).
1189///
1190/// See AST_POLYMORPHIC_SUPPORTED_TYPES for details.
1191template <class T> struct ExtractFunctionArgMeta;
1192template <class T> struct ExtractFunctionArgMeta<void(T)> {
1193 using type = T;
1194};
1195
1196template <class T, class Tuple, std::size_t... I>
1197constexpr T *new_from_tuple_impl(Tuple &&t, std::index_sequence<I...>) {
1198 return new T(std::get<I>(std::forward<Tuple>(t))...);
1199}
1200
1201template <class T, class Tuple> constexpr T *new_from_tuple(Tuple &&t) {
1202 return new_from_tuple_impl<T>(
1203 std::forward<Tuple>(t),
1204 std::make_index_sequence<
1205 std::tuple_size<std::remove_reference_t<Tuple>>::value>{});
1206}
1207
1208/// Default type lists for ArgumentAdaptingMatcher matchers.
1209using AdaptativeDefaultFromTypes = AllNodeBaseTypes;
1210using AdaptativeDefaultToTypes =
1211 TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc, TypeLoc,
1212 QualType, Attr>;
1213
1214/// All types that are supported by HasDeclarationMatcher above.
1215using HasDeclarationSupportedTypes =
1216 TypeList<CallExpr, CXXConstructExpr, CXXNewExpr, DeclRefExpr, EnumType,
1217 ElaboratedType, InjectedClassNameType, LabelStmt, AddrLabelExpr,
1218 MemberExpr, QualType, RecordType, TagType,
1219 TemplateSpecializationType, TemplateTypeParmType, TypedefType,
1220 UnresolvedUsingType, ObjCIvarRefExpr>;
1221
1222/// A Matcher that allows binding the node it matches to an id.
1223///
1224/// BindableMatcher provides a \a bind() method that allows binding the
1225/// matched node to an id if the match was successful.
1226template <typename T> class BindableMatcher : public Matcher<T> {
1227public:
1228 explicit BindableMatcher(const Matcher<T> &M) : Matcher<T>(M) {}
1229 explicit BindableMatcher(MatcherInterface<T> *Implementation)
1230 : Matcher<T>(Implementation) {}
1231
1232 /// Returns a matcher that will bind the matched node on a match.
1233 ///
1234 /// The returned matcher is equivalent to this matcher, but will
1235 /// bind the matched node on a match.
1236 Matcher<T> bind(StringRef ID) const {
1237 return DynTypedMatcher(*this)
1238 .tryBind(ID)
1239 ->template unconditionalConvertTo<T>();
1240 }
1241
1242 /// Same as Matcher<T>'s conversion operator, but enables binding on
1243 /// the returned matcher.
1244 operator DynTypedMatcher() const {
1245 DynTypedMatcher Result = static_cast<const Matcher<T> &>(*this);
1246 Result.setAllowBind(true);
1247 return Result;
1248 }
1249};
1250
1251/// Matches any instance of the given NodeType.
1252///
1253/// This is useful when a matcher syntactically requires a child matcher,
1254/// but the context doesn't care. See for example: anything().
1255class TrueMatcher {
1256public:
1257 using ReturnTypes = AllNodeBaseTypes;
1258
1259 template <typename T> operator Matcher<T>() const {
1260 return DynTypedMatcher::trueMatcher(ASTNodeKind::getFromNodeKind<T>())
1261 .template unconditionalConvertTo<T>();
1262 }
1263};
1264
1265/// Creates a Matcher<T> that matches if all inner matchers match.
1266template <typename T>
1267BindableMatcher<T>
1268makeAllOfComposite(ArrayRef<const Matcher<T> *> InnerMatchers) {
1269 // For the size() == 0 case, we return a "true" matcher.
1270 if (InnerMatchers.empty()) {
1271 return BindableMatcher<T>(TrueMatcher());
1272 }
1273 // For the size() == 1 case, we simply return that one matcher.
1274 // No need to wrap it in a variadic operation.
1275 if (InnerMatchers.size() == 1) {
1276 return BindableMatcher<T>(*InnerMatchers[0]);
1277 }
1278
1279 using PI = llvm::pointee_iterator<const Matcher<T> *const *>;
1280
1281 std::vector<DynTypedMatcher> DynMatchers(PI(InnerMatchers.begin()),
1282 PI(InnerMatchers.end()));
1283 return BindableMatcher<T>(
1284 DynTypedMatcher::constructVariadic(DynTypedMatcher::VO_AllOf,
1285 ASTNodeKind::getFromNodeKind<T>(),
1286 std::move(DynMatchers))
1287 .template unconditionalConvertTo<T>());
1288}
1289
1290/// Creates a Matcher<T> that matches if
1291/// T is dyn_cast'able into InnerT and all inner matchers match.
1292///
1293/// Returns BindableMatcher, as matchers that use dyn_cast have
1294/// the same object both to match on and to run submatchers on,
1295/// so there is no ambiguity with what gets bound.
1296template <typename T, typename InnerT>
1297BindableMatcher<T>
1298makeDynCastAllOfComposite(ArrayRef<const Matcher<InnerT> *> InnerMatchers) {
1299 return BindableMatcher<T>(
1300 makeAllOfComposite(InnerMatchers).template dynCastTo<T>());
1301}
1302
1303/// A VariadicDynCastAllOfMatcher<SourceT, TargetT> object is a
1304/// variadic functor that takes a number of Matcher<TargetT> and returns a
1305/// Matcher<SourceT> that matches TargetT nodes that are matched by all of the
1306/// given matchers, if SourceT can be dynamically casted into TargetT.
1307///
1308/// For example:
1309/// const VariadicDynCastAllOfMatcher<Decl, CXXRecordDecl> record;
1310/// Creates a functor record(...) that creates a Matcher<Decl> given
1311/// a variable number of arguments of type Matcher<CXXRecordDecl>.
1312/// The returned matcher matches if the given Decl can by dynamically
1313/// casted to CXXRecordDecl and all given matchers match.
1314template <typename SourceT, typename TargetT>
1315class VariadicDynCastAllOfMatcher
1316 : public VariadicFunction<BindableMatcher<SourceT>, Matcher<TargetT>,
1317 makeDynCastAllOfComposite<SourceT, TargetT>> {
1318public:
1319 VariadicDynCastAllOfMatcher() {}
1320};
1321
1322/// A \c VariadicAllOfMatcher<T> object is a variadic functor that takes
1323/// a number of \c Matcher<T> and returns a \c Matcher<T> that matches \c T
1324/// nodes that are matched by all of the given matchers.
1325///
1326/// For example:
1327/// const VariadicAllOfMatcher<NestedNameSpecifier> nestedNameSpecifier;
1328/// Creates a functor nestedNameSpecifier(...) that creates a
1329/// \c Matcher<NestedNameSpecifier> given a variable number of arguments of type
1330/// \c Matcher<NestedNameSpecifier>.
1331/// The returned matcher matches if all given matchers match.
1332template <typename T>
1333class VariadicAllOfMatcher
1334 : public VariadicFunction<BindableMatcher<T>, Matcher<T>,
1335 makeAllOfComposite<T>> {
1336public:
1337 VariadicAllOfMatcher() {}
1338};
1339
1340/// VariadicOperatorMatcher related types.
1341/// @{
1342
1343/// Polymorphic matcher object that uses a \c
1344/// DynTypedMatcher::VariadicOperator operator.
1345///
1346/// Input matchers can have any type (including other polymorphic matcher
1347/// types), and the actual Matcher<T> is generated on demand with an implicit
1348/// conversion operator.
1349template <typename... Ps> class VariadicOperatorMatcher {
1350public:
1351 VariadicOperatorMatcher(DynTypedMatcher::VariadicOperator Op, Ps &&... Params)
1352 : Op(Op), Params(std::forward<Ps>(Params)...) {}
1353
1354 template <typename T> operator Matcher<T>() const & {
1355 return DynTypedMatcher::constructVariadic(
1356 Op, ASTNodeKind::getFromNodeKind<T>(),
1357 getMatchers<T>(std::index_sequence_for<Ps...>()))
1358 .template unconditionalConvertTo<T>();
1359 }
1360
1361 template <typename T> operator Matcher<T>() && {
1362 return DynTypedMatcher::constructVariadic(
1363 Op, ASTNodeKind::getFromNodeKind<T>(),
1364 getMatchers<T>(std::index_sequence_for<Ps...>()))
1365 .template unconditionalConvertTo<T>();
1366 }
1367
1368private:
1369 // Helper method to unpack the tuple into a vector.
1370 template <typename T, std::size_t... Is>
1371 std::vector<DynTypedMatcher> getMatchers(std::index_sequence<Is...>) const & {
1372 return {Matcher<T>(std::get<Is>(Params))...};
1373 }
1374
1375 template <typename T, std::size_t... Is>
1376 std::vector<DynTypedMatcher> getMatchers(std::index_sequence<Is...>) && {
1377 return {Matcher<T>(std::get<Is>(std::move(Params)))...};
1378 }
1379
1380 const DynTypedMatcher::VariadicOperator Op;
1381 std::tuple<Ps...> Params;
1382};
1383
1384/// Overloaded function object to generate VariadicOperatorMatcher
1385/// objects from arbitrary matchers.
1386template <unsigned MinCount, unsigned MaxCount>
1387struct VariadicOperatorMatcherFunc {
1388 DynTypedMatcher::VariadicOperator Op;
1389
1390 template <typename... Ms>
1391 VariadicOperatorMatcher<Ms...> operator()(Ms &&... Ps) const {
1392 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
1393 "invalid number of parameters for variadic matcher");
1394 return VariadicOperatorMatcher<Ms...>(Op, std::forward<Ms>(Ps)...);
1395 }
1396};
1397
1398template <typename T, bool IsBaseOf, typename Head, typename Tail>
1399struct GetCladeImpl {
1400 using Type = Head;
1401};
1402template <typename T, typename Head, typename Tail>
1403struct GetCladeImpl<T, false, Head, Tail>
1404 : GetCladeImpl<T, std::is_base_of<typename Tail::head, T>::value,
1405 typename Tail::head, typename Tail::tail> {};
1406
1407template <typename T, typename... U>
1408struct GetClade : GetCladeImpl<T, false, T, AllNodeBaseTypes> {};
1409
1410template <typename CladeType, typename... MatcherTypes>
1411struct MapAnyOfMatcherImpl {
1412
1413 template <typename... InnerMatchers>
1414 BindableMatcher<CladeType>
1415 operator()(InnerMatchers &&... InnerMatcher) const {
1416 return VariadicAllOfMatcher<CladeType>()(std::apply(
1417 internal::VariadicOperatorMatcherFunc<
1418 0, std::numeric_limits<unsigned>::max()>{
1419 internal::DynTypedMatcher::VO_AnyOf},
1420 std::apply(
1421 [&](auto... Matcher) {
1422 return std::make_tuple(Matcher(InnerMatcher...)...);
1423 },
1424 std::tuple<
1425 VariadicDynCastAllOfMatcher<CladeType, MatcherTypes>...>())));
1426 }
1427};
1428
1429template <typename... MatcherTypes>
1430using MapAnyOfMatcher =
1431 MapAnyOfMatcherImpl<typename GetClade<MatcherTypes...>::Type,
1432 MatcherTypes...>;
1433
1434template <typename... MatcherTypes> struct MapAnyOfHelper {
1435 using CladeType = typename GetClade<MatcherTypes...>::Type;
1436
1437 MapAnyOfMatcher<MatcherTypes...> with;
1438
1439 operator BindableMatcher<CladeType>() const { return with(); }
1440
1441 Matcher<CladeType> bind(StringRef ID) const { return with().bind(ID); }
1442};
1443
1444template <template <typename ToArg, typename FromArg> class ArgumentAdapterT,
1445 typename T, typename ToTypes>
1446class ArgumentAdaptingMatcherFuncAdaptor {
1447public:
1448 explicit ArgumentAdaptingMatcherFuncAdaptor(const Matcher<T> &InnerMatcher)
1449 : InnerMatcher(InnerMatcher) {}
1450
1451 using ReturnTypes = ToTypes;
1452
1453 template <typename To> operator Matcher<To>() const & {
1454 return Matcher<To>(new ArgumentAdapterT<To, T>(InnerMatcher));
1455 }
1456
1457 template <typename To> operator Matcher<To>() && {
1458 return Matcher<To>(new ArgumentAdapterT<To, T>(std::move(InnerMatcher)));
1459 }
1460
1461private:
1462 Matcher<T> InnerMatcher;
1463};
1464
1465/// Converts a \c Matcher<T> to a matcher of desired type \c To by
1466/// "adapting" a \c To into a \c T.
1467///
1468/// The \c ArgumentAdapterT argument specifies how the adaptation is done.
1469///
1470/// For example:
1471/// \c ArgumentAdaptingMatcher<HasMatcher, T>(InnerMatcher);
1472/// Given that \c InnerMatcher is of type \c Matcher<T>, this returns a matcher
1473/// that is convertible into any matcher of type \c To by constructing
1474/// \c HasMatcher<To, T>(InnerMatcher).
1475///
1476/// If a matcher does not need knowledge about the inner type, prefer to use
1477/// PolymorphicMatcher.
1478template <template <typename ToArg, typename FromArg> class ArgumentAdapterT,
1479 typename FromTypes = AdaptativeDefaultFromTypes,
1480 typename ToTypes = AdaptativeDefaultToTypes>
1481struct ArgumentAdaptingMatcherFunc {
1482 template <typename T>
1483 static ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT, T, ToTypes>
1484 create(const Matcher<T> &InnerMatcher) {
1485 return ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT, T, ToTypes>(
1486 InnerMatcher);
1487 }
1488
1489 template <typename T>
1490 ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT, T, ToTypes>
1491 operator()(const Matcher<T> &InnerMatcher) const {
1492 return create(InnerMatcher);
1493 }
1494
1495 template <typename... T>
1496 ArgumentAdaptingMatcherFuncAdaptor<ArgumentAdapterT,
1497 typename GetClade<T...>::Type, ToTypes>
1498 operator()(const MapAnyOfHelper<T...> &InnerMatcher) const {
1499 return create(InnerMatcher.with());
1500 }
1501};
1502
1503template <typename T> class TraversalMatcher : public MatcherInterface<T> {
1504 DynTypedMatcher InnerMatcher;
1505 clang::TraversalKind Traversal;
1506
1507public:
1508 explicit TraversalMatcher(clang::TraversalKind TK,
1509 const Matcher<T> &InnerMatcher)
1510 : InnerMatcher(InnerMatcher), Traversal(TK) {}
1511
1512 bool matches(const T &Node, ASTMatchFinder *Finder,
1513 BoundNodesTreeBuilder *Builder) const override {
1514 return this->InnerMatcher.matches(DynTypedNode::create(Node), Finder,
1515 Builder);
1516 }
1517
1518 std::optional<clang::TraversalKind> TraversalKind() const override {
1519 if (auto NestedKind = this->InnerMatcher.getTraversalKind())
1520 return NestedKind;
1521 return Traversal;
1522 }
1523};
1524
1525template <typename MatcherType> class TraversalWrapper {
1526public:
1527 TraversalWrapper(TraversalKind TK, const MatcherType &InnerMatcher)
1528 : TK(TK), InnerMatcher(InnerMatcher) {}
1529
1530 template <typename T> operator Matcher<T>() const & {
1531 return internal::DynTypedMatcher::constructRestrictedWrapper(
1532 new internal::TraversalMatcher<T>(TK, InnerMatcher),
1533 ASTNodeKind::getFromNodeKind<T>())
1534 .template unconditionalConvertTo<T>();
1535 }
1536
1537 template <typename T> operator Matcher<T>() && {
1538 return internal::DynTypedMatcher::constructRestrictedWrapper(
1539 new internal::TraversalMatcher<T>(TK, std::move(InnerMatcher)),
1540 ASTNodeKind::getFromNodeKind<T>())
1541 .template unconditionalConvertTo<T>();
1542 }
1543
1544private:
1545 TraversalKind TK;
1546 MatcherType InnerMatcher;
1547};
1548
1549/// A PolymorphicMatcher<MatcherT, P1, ..., PN> object can be
1550/// created from N parameters p1, ..., pN (of type P1, ..., PN) and
1551/// used as a Matcher<T> where a MatcherT<T, P1, ..., PN>(p1, ..., pN)
1552/// can be constructed.
1553///
1554/// For example:
1555/// - PolymorphicMatcher<IsDefinitionMatcher>()
1556/// creates an object that can be used as a Matcher<T> for any type T
1557/// where an IsDefinitionMatcher<T>() can be constructed.
1558/// - PolymorphicMatcher<ValueEqualsMatcher, int>(42)
1559/// creates an object that can be used as a Matcher<T> for any type T
1560/// where a ValueEqualsMatcher<T, int>(42) can be constructed.
1561template <template <typename T, typename... Params> class MatcherT,
1562 typename ReturnTypesF, typename... ParamTypes>
1563class PolymorphicMatcher {
1564public:
1565 PolymorphicMatcher(const ParamTypes &... Params) : Params(Params...) {}
1566
1567 using ReturnTypes = typename ExtractFunctionArgMeta<ReturnTypesF>::type;
1568
1569 template <typename T> operator Matcher<T>() const & {
1570 static_assert(TypeListContainsSuperOf<ReturnTypes, T>::value,
1571 "right polymorphic conversion");
1572 return Matcher<T>(new_from_tuple<MatcherT<T, ParamTypes...>>(Params));
1573 }
1574
1575 template <typename T> operator Matcher<T>() && {
1576 static_assert(TypeListContainsSuperOf<ReturnTypes, T>::value,
1577 "right polymorphic conversion");
1578 return Matcher<T>(
1579 new_from_tuple<MatcherT<T, ParamTypes...>>(std::move(Params)));
1580 }
1581
1582private:
1583 std::tuple<ParamTypes...> Params;
1584};
1585
1586/// Matches nodes of type T that have child nodes of type ChildT for
1587/// which a specified child matcher matches.
1588///
1589/// ChildT must be an AST base type.
1590template <typename T, typename ChildT>
1591class HasMatcher : public MatcherInterface<T> {
1592 DynTypedMatcher InnerMatcher;
1593
1594public:
1595 explicit HasMatcher(const Matcher<ChildT> &InnerMatcher)
1596 : InnerMatcher(InnerMatcher) {}
1597
1598 bool matches(const T &Node, ASTMatchFinder *Finder,
1599 BoundNodesTreeBuilder *Builder) const override {
1600 return Finder->matchesChildOf(Node, this->InnerMatcher, Builder,
1601 ASTMatchFinder::BK_First);
1602 }
1603};
1604
1605/// Matches nodes of type T that have child nodes of type ChildT for
1606/// which a specified child matcher matches. ChildT must be an AST base
1607/// type.
1608/// As opposed to the HasMatcher, the ForEachMatcher will produce a match
1609/// for each child that matches.
1610template <typename T, typename ChildT>
1611class ForEachMatcher : public MatcherInterface<T> {
1612 static_assert(IsBaseType<ChildT>::value,
1613 "for each only accepts base type matcher");
1614
1615 DynTypedMatcher InnerMatcher;
1616
1617public:
1618 explicit ForEachMatcher(const Matcher<ChildT> &InnerMatcher)
1619 : InnerMatcher(InnerMatcher) {}
1620
1621 bool matches(const T &Node, ASTMatchFinder *Finder,
1622 BoundNodesTreeBuilder *Builder) const override {
1623 return Finder->matchesChildOf(
1624 Node, this->InnerMatcher, Builder,
1625 ASTMatchFinder::BK_All);
1626 }
1627};
1628
1629/// @}
1630
1631template <typename T>
1632inline Matcher<T> DynTypedMatcher::unconditionalConvertTo() const {
1633 return Matcher<T>(*this);
1634}
1635
1636/// Matches nodes of type T that have at least one descendant node of
1637/// type DescendantT for which the given inner matcher matches.
1638///
1639/// DescendantT must be an AST base type.
1640template <typename T, typename DescendantT>
1641class HasDescendantMatcher : public MatcherInterface<T> {
1642 static_assert(IsBaseType<DescendantT>::value,
1643 "has descendant only accepts base type matcher");
1644
1645 DynTypedMatcher DescendantMatcher;
1646
1647public:
1648 explicit HasDescendantMatcher(const Matcher<DescendantT> &DescendantMatcher)
1649 : DescendantMatcher(DescendantMatcher) {}
1650
1651 bool matches(const T &Node, ASTMatchFinder *Finder,
1652 BoundNodesTreeBuilder *Builder) const override {
1653 return Finder->matchesDescendantOf(Node, this->DescendantMatcher, Builder,
1654 ASTMatchFinder::BK_First);
1655 }
1656};
1657
1658/// Matches nodes of type \c T that have a parent node of type \c ParentT
1659/// for which the given inner matcher matches.
1660///
1661/// \c ParentT must be an AST base type.
1662template <typename T, typename ParentT>
1663class HasParentMatcher : public MatcherInterface<T> {
1664 static_assert(IsBaseType<ParentT>::value,
1665 "has parent only accepts base type matcher");
1666
1667 DynTypedMatcher ParentMatcher;
1668
1669public:
1670 explicit HasParentMatcher(const Matcher<ParentT> &ParentMatcher)
1671 : ParentMatcher(ParentMatcher) {}
1672
1673 bool matches(const T &Node, ASTMatchFinder *Finder,
1674 BoundNodesTreeBuilder *Builder) const override {
1675 return Finder->matchesAncestorOf(Node, this->ParentMatcher, Builder,
1676 ASTMatchFinder::AMM_ParentOnly);
1677 }
1678};
1679
1680/// Matches nodes of type \c T that have at least one ancestor node of
1681/// type \c AncestorT for which the given inner matcher matches.
1682///
1683/// \c AncestorT must be an AST base type.
1684template <typename T, typename AncestorT>
1685class HasAncestorMatcher : public MatcherInterface<T> {
1686 static_assert(IsBaseType<AncestorT>::value,
1687 "has ancestor only accepts base type matcher");
1688
1689 DynTypedMatcher AncestorMatcher;
1690
1691public:
1692 explicit HasAncestorMatcher(const Matcher<AncestorT> &AncestorMatcher)
1693 : AncestorMatcher(AncestorMatcher) {}
1694
1695 bool matches(const T &Node, ASTMatchFinder *Finder,
1696 BoundNodesTreeBuilder *Builder) const override {
1697 return Finder->matchesAncestorOf(Node, this->AncestorMatcher, Builder,
1698 ASTMatchFinder::AMM_All);
1699 }
1700};
1701
1702/// Matches nodes of type T that have at least one descendant node of
1703/// type DescendantT for which the given inner matcher matches.
1704///
1705/// DescendantT must be an AST base type.
1706/// As opposed to HasDescendantMatcher, ForEachDescendantMatcher will match
1707/// for each descendant node that matches instead of only for the first.
1708template <typename T, typename DescendantT>
1709class ForEachDescendantMatcher : public MatcherInterface<T> {
1710 static_assert(IsBaseType<DescendantT>::value,
1711 "for each descendant only accepts base type matcher");
1712
1713 DynTypedMatcher DescendantMatcher;
1714
1715public:
1716 explicit ForEachDescendantMatcher(
1717 const Matcher<DescendantT> &DescendantMatcher)
1718 : DescendantMatcher(DescendantMatcher) {}
1719
1720 bool matches(const T &Node, ASTMatchFinder *Finder,
1721 BoundNodesTreeBuilder *Builder) const override {
1722 return Finder->matchesDescendantOf(Node, this->DescendantMatcher, Builder,
1723 ASTMatchFinder::BK_All);
1724 }
1725};
1726
1727/// Matches on nodes that have a getValue() method if getValue() equals
1728/// the value the ValueEqualsMatcher was constructed with.
1729template <typename T, typename ValueT>
1730class ValueEqualsMatcher : public SingleNodeMatcherInterface<T> {
1731 static_assert(std::is_base_of<CharacterLiteral, T>::value ||
1732 std::is_base_of<CXXBoolLiteralExpr, T>::value ||
1733 std::is_base_of<FloatingLiteral, T>::value ||
1734 std::is_base_of<IntegerLiteral, T>::value,
1735 "the node must have a getValue method");
1736
1737public:
1738 explicit ValueEqualsMatcher(const ValueT &ExpectedValue)
1739 : ExpectedValue(ExpectedValue) {}
1740
1741 bool matchesNode(const T &Node) const override {
1742 return Node.getValue() == ExpectedValue;
1743 }
1744
1745private:
1746 ValueT ExpectedValue;
1747};
1748
1749/// Template specializations to easily write matchers for floating point
1750/// literals.
1751template <>
1752inline bool ValueEqualsMatcher<FloatingLiteral, double>::matchesNode(
1753 const FloatingLiteral &Node) const {
1754 if ((&Node.getSemantics()) == &llvm::APFloat::IEEEsingle())
1755 return Node.getValue().convertToFloat() == ExpectedValue;
1756 if ((&Node.getSemantics()) == &llvm::APFloat::IEEEdouble())
1757 return Node.getValue().convertToDouble() == ExpectedValue;
1758 return false;
1759}
1760template <>
1761inline bool ValueEqualsMatcher<FloatingLiteral, float>::matchesNode(
1762 const FloatingLiteral &Node) const {
1763 if ((&Node.getSemantics()) == &llvm::APFloat::IEEEsingle())
1764 return Node.getValue().convertToFloat() == ExpectedValue;
1765 if ((&Node.getSemantics()) == &llvm::APFloat::IEEEdouble())
1766 return Node.getValue().convertToDouble() == ExpectedValue;
1767 return false;
1768}
1769template <>
1770inline bool ValueEqualsMatcher<FloatingLiteral, llvm::APFloat>::matchesNode(
1771 const FloatingLiteral &Node) const {
1772 return ExpectedValue.compare(Node.getValue()) == llvm::APFloat::cmpEqual;
1773}
1774
1775/// Matches nodes of type \c TLoc for which the inner
1776/// \c Matcher<T> matches.
1777template <typename TLoc, typename T>
1778class LocMatcher : public MatcherInterface<TLoc> {
1779 DynTypedMatcher InnerMatcher;
1780
1781public:
1782 explicit LocMatcher(const Matcher<T> &InnerMatcher)
1783 : InnerMatcher(InnerMatcher) {}
1784
1785 bool matches(const TLoc &Node, ASTMatchFinder *Finder,
1786 BoundNodesTreeBuilder *Builder) const override {
1787 if (!Node)
1788 return false;
1789 return this->InnerMatcher.matches(extract(Node), Finder, Builder);
1790 }
1791
1792private:
1793 static DynTypedNode extract(const NestedNameSpecifierLoc &Loc) {
1794 return DynTypedNode::create(*Loc.getNestedNameSpecifier());
1795 }
1796};
1797
1798/// Matches \c TypeLocs based on an inner matcher matching a certain
1799/// \c QualType.
1800///
1801/// Used to implement the \c loc() matcher.
1802class TypeLocTypeMatcher : public MatcherInterface<TypeLoc> {
1803 DynTypedMatcher InnerMatcher;
1804
1805public:
1806 explicit TypeLocTypeMatcher(const Matcher<QualType> &InnerMatcher)
1807 : InnerMatcher(InnerMatcher) {}
1808
1809 bool matches(const TypeLoc &Node, ASTMatchFinder *Finder,
1810 BoundNodesTreeBuilder *Builder) const override {
1811 if (!Node)
1812 return false;
1813 return this->InnerMatcher.matches(DynTypedNode::create(Node.getType()),
1814 Finder, Builder);
1815 }
1816};
1817
1818/// Matches nodes of type \c T for which the inner matcher matches on a
1819/// another node of type \c T that can be reached using a given traverse
1820/// function.
1821template <typename T> class TypeTraverseMatcher : public MatcherInterface<T> {
1822 DynTypedMatcher InnerMatcher;
1823
1824public:
1825 explicit TypeTraverseMatcher(const Matcher<QualType> &InnerMatcher,
1826 QualType (T::*TraverseFunction)() const)
1827 : InnerMatcher(InnerMatcher), TraverseFunction(TraverseFunction) {}
1828
1829 bool matches(const T &Node, ASTMatchFinder *Finder,
1830 BoundNodesTreeBuilder *Builder) const override {
1831 QualType NextNode = (Node.*TraverseFunction)();
1832 if (NextNode.isNull())
1833 return false;
1834 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
1835 Builder);
1836 }
1837
1838private:
1839 QualType (T::*TraverseFunction)() const;
1840};
1841
1842/// Matches nodes of type \c T in a ..Loc hierarchy, for which the inner
1843/// matcher matches on a another node of type \c T that can be reached using a
1844/// given traverse function.
1845template <typename T>
1846class TypeLocTraverseMatcher : public MatcherInterface<T> {
1847 DynTypedMatcher InnerMatcher;
1848
1849public:
1850 explicit TypeLocTraverseMatcher(const Matcher<TypeLoc> &InnerMatcher,
1851 TypeLoc (T::*TraverseFunction)() const)
1852 : InnerMatcher(InnerMatcher), TraverseFunction(TraverseFunction) {}
1853
1854 bool matches(const T &Node, ASTMatchFinder *Finder,
1855 BoundNodesTreeBuilder *Builder) const override {
1856 TypeLoc NextNode = (Node.*TraverseFunction)();
1857 if (!NextNode)
1858 return false;
1859 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
1860 Builder);
1861 }
1862
1863private:
1864 TypeLoc (T::*TraverseFunction)() const;
1865};
1866
1867/// Converts a \c Matcher<InnerT> to a \c Matcher<OuterT>, where
1868/// \c OuterT is any type that is supported by \c Getter.
1869///
1870/// \code Getter<OuterT>::value() \endcode returns a
1871/// \code InnerTBase (OuterT::*)() \endcode, which is used to adapt a \c OuterT
1872/// object into a \c InnerT
1873template <typename InnerTBase,
1874 template <typename OuterT> class Getter,
1875 template <typename OuterT> class MatcherImpl,
1876 typename ReturnTypesF>
1877class TypeTraversePolymorphicMatcher {
1878private:
1879 using Self = TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1880 ReturnTypesF>;
1881
1882 static Self create(ArrayRef<const Matcher<InnerTBase> *> InnerMatchers);
1883
1884public:
1885 using ReturnTypes = typename ExtractFunctionArgMeta<ReturnTypesF>::type;
1886
1887 explicit TypeTraversePolymorphicMatcher(
1888 ArrayRef<const Matcher<InnerTBase> *> InnerMatchers)
1889 : InnerMatcher(makeAllOfComposite(InnerMatchers)) {}
1890
1891 template <typename OuterT> operator Matcher<OuterT>() const {
1892 return Matcher<OuterT>(
1893 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1894 }
1895
1896 struct Func
1897 : public VariadicFunction<Self, Matcher<InnerTBase>, &Self::create> {
1898 Func() {}
1899 };
1900
1901private:
1902 Matcher<InnerTBase> InnerMatcher;
1903};
1904
1905/// A simple memoizer of T(*)() functions.
1906///
1907/// It will call the passed 'Func' template parameter at most once.
1908/// Used to support AST_MATCHER_FUNCTION() macro.
1909template <typename Matcher, Matcher (*Func)()> class MemoizedMatcher {
1910 struct Wrapper {
1911 Wrapper() : M(Func()) {}
1912
1913 Matcher M;
1914 };
1915
1916public:
1917 static const Matcher &getInstance() {
1918 static llvm::ManagedStatic<Wrapper> Instance;
1919 return Instance->M;
1920 }
1921};
1922
1923// Define the create() method out of line to silence a GCC warning about
1924// the struct "Func" having greater visibility than its base, which comes from
1925// using the flag -fvisibility-inlines-hidden.
1926template <typename InnerTBase, template <typename OuterT> class Getter,
1927 template <typename OuterT> class MatcherImpl, typename ReturnTypesF>
1928TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1929TypeTraversePolymorphicMatcher<
1930 InnerTBase, Getter, MatcherImpl,
1931 ReturnTypesF>::create(ArrayRef<const Matcher<InnerTBase> *> InnerMatchers) {
1932 return Self(InnerMatchers);
1933}
1934
1935// FIXME: unify ClassTemplateSpecializationDecl and TemplateSpecializationType's
1936// APIs for accessing the template argument list.
1937inline ArrayRef<TemplateArgument>
1938getTemplateSpecializationArgs(const ClassTemplateSpecializationDecl &D) {
1939 return D.getTemplateArgs().asArray();
1940}
1941
1942inline ArrayRef<TemplateArgument>
1943getTemplateSpecializationArgs(const TemplateSpecializationType &T) {
1944 return T.template_arguments();
1945}
1946
1947inline ArrayRef<TemplateArgument>
1948getTemplateSpecializationArgs(const FunctionDecl &FD) {
1949 if (const auto* TemplateArgs = FD.getTemplateSpecializationArgs())
1950 return TemplateArgs->asArray();
1951 return ArrayRef<TemplateArgument>();
1952}
1953
1954struct NotEqualsBoundNodePredicate {
1955 bool operator()(const internal::BoundNodesMap &Nodes) const {
1956 return Nodes.getNode(ID) != Node;
1957 }
1958
1959 std::string ID;
1960 DynTypedNode Node;
1961};
1962
1963template <typename Ty, typename Enable = void> struct GetBodyMatcher {
1964 static const Stmt *get(const Ty &Node) { return Node.getBody(); }
1965};
1966
1967template <typename Ty>
1968struct GetBodyMatcher<
1969 Ty, std::enable_if_t<std::is_base_of<FunctionDecl, Ty>::value>> {
1970 static const Stmt *get(const Ty &Node) {
1971 return Node.doesThisDeclarationHaveABody() ? Node.getBody() : nullptr;
1972 }
1973};
1974
1975template <typename NodeType>
1976inline std::optional<BinaryOperatorKind>
1977equivalentBinaryOperator(const NodeType &Node) {
1978 return Node.getOpcode();
1979}
1980
1981template <>
1982inline std::optional<BinaryOperatorKind>
1983equivalentBinaryOperator<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
1984 if (Node.getNumArgs() != 2)
1985 return std::nullopt;
1986 switch (Node.getOperator()) {
1987 default:
1988 return std::nullopt;
1989 case OO_ArrowStar:
1990 return BO_PtrMemI;
1991 case OO_Star:
1992 return BO_Mul;
1993 case OO_Slash:
1994 return BO_Div;
1995 case OO_Percent:
1996 return BO_Rem;
1997 case OO_Plus:
1998 return BO_Add;
1999 case OO_Minus:
2000 return BO_Sub;
2001 case OO_LessLess:
2002 return BO_Shl;
2003 case OO_GreaterGreater:
2004 return BO_Shr;
2005 case OO_Spaceship:
2006 return BO_Cmp;
2007 case OO_Less:
2008 return BO_LT;
2009 case OO_Greater:
2010 return BO_GT;
2011 case OO_LessEqual:
2012 return BO_LE;
2013 case OO_GreaterEqual:
2014 return BO_GE;
2015 case OO_EqualEqual:
2016 return BO_EQ;
2017 case OO_ExclaimEqual:
2018 return BO_NE;
2019 case OO_Amp:
2020 return BO_And;
2021 case OO_Caret:
2022 return BO_Xor;
2023 case OO_Pipe:
2024 return BO_Or;
2025 case OO_AmpAmp:
2026 return BO_LAnd;
2027 case OO_PipePipe:
2028 return BO_LOr;
2029 case OO_Equal:
2030 return BO_Assign;
2031 case OO_StarEqual:
2032 return BO_MulAssign;
2033 case OO_SlashEqual:
2034 return BO_DivAssign;
2035 case OO_PercentEqual:
2036 return BO_RemAssign;
2037 case OO_PlusEqual:
2038 return BO_AddAssign;
2039 case OO_MinusEqual:
2040 return BO_SubAssign;
2041 case OO_LessLessEqual:
2042 return BO_ShlAssign;
2043 case OO_GreaterGreaterEqual:
2044 return BO_ShrAssign;
2045 case OO_AmpEqual:
2046 return BO_AndAssign;
2047 case OO_CaretEqual:
2048 return BO_XorAssign;
2049 case OO_PipeEqual:
2050 return BO_OrAssign;
2051 case OO_Comma:
2052 return BO_Comma;
2053 }
2054}
2055
2056template <typename NodeType>
2057inline std::optional<UnaryOperatorKind>
2058equivalentUnaryOperator(const NodeType &Node) {
2059 return Node.getOpcode();
2060}
2061
2062template <>
2063inline std::optional<UnaryOperatorKind>
2064equivalentUnaryOperator<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
2065 if (Node.getNumArgs() != 1 && Node.getOperator() != OO_PlusPlus &&
2066 Node.getOperator() != OO_MinusMinus)
2067 return std::nullopt;
2068 switch (Node.getOperator()) {
2069 default:
2070 return std::nullopt;
2071 case OO_Plus:
2072 return UO_Plus;
2073 case OO_Minus:
2074 return UO_Minus;
2075 case OO_Amp:
2076 return UO_AddrOf;
2077 case OO_Star:
2078 return UO_Deref;
2079 case OO_Tilde:
2080 return UO_Not;
2081 case OO_Exclaim:
2082 return UO_LNot;
2083 case OO_PlusPlus: {
2084 const auto *FD = Node.getDirectCallee();
2085 if (!FD)
2086 return std::nullopt;
2087 return FD->getNumParams() > 0 ? UO_PostInc : UO_PreInc;
2088 }
2089 case OO_MinusMinus: {
2090 const auto *FD = Node.getDirectCallee();
2091 if (!FD)
2092 return std::nullopt;
2093 return FD->getNumParams() > 0 ? UO_PostDec : UO_PreDec;
2094 }
2095 case OO_Coawait:
2096 return UO_Coawait;
2097 }
2098}
2099
2100template <typename NodeType> inline const Expr *getLHS(const NodeType &Node) {
2101 return Node.getLHS();
2102}
2103template <>
2104inline const Expr *
2105getLHS<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
2106 if (!internal::equivalentBinaryOperator(Node))
2107 return nullptr;
2108 return Node.getArg(0);
2109}
2110template <typename NodeType> inline const Expr *getRHS(const NodeType &Node) {
2111 return Node.getRHS();
2112}
2113template <>
2114inline const Expr *
2115getRHS<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
2116 if (!internal::equivalentBinaryOperator(Node))
2117 return nullptr;
2118 return Node.getArg(1);
2119}
2120template <typename NodeType>
2121inline const Expr *getSubExpr(const NodeType &Node) {
2122 return Node.getSubExpr();
2123}
2124template <>
2125inline const Expr *
2126getSubExpr<CXXOperatorCallExpr>(const CXXOperatorCallExpr &Node) {
2127 if (!internal::equivalentUnaryOperator(Node))
2128 return nullptr;
2129 return Node.getArg(0);
2130}
2131
2132template <typename Ty>
2133struct HasSizeMatcher {
2134 static bool hasSize(const Ty &Node, unsigned int N) {
2135 return Node.getSize() == N;
2136 }
2137};
2138
2139template <>
2140inline bool HasSizeMatcher<StringLiteral>::hasSize(
2141 const StringLiteral &Node, unsigned int N) {
2142 return Node.getLength() == N;
2143}
2144
2145template <typename Ty>
2146struct GetSourceExpressionMatcher {
2147 static const Expr *get(const Ty &Node) {
2148 return Node.getSubExpr();
2149 }
2150};
2151
2152template <>
2153inline const Expr *GetSourceExpressionMatcher<OpaqueValueExpr>::get(
2154 const OpaqueValueExpr &Node) {
2155 return Node.getSourceExpr();
2156}
2157
2158template <typename Ty>
2159struct CompoundStmtMatcher {
2160 static const CompoundStmt *get(const Ty &Node) {
2161 return &Node;
2162 }
2163};
2164
2165template <>
2166inline const CompoundStmt *
2167CompoundStmtMatcher<StmtExpr>::get(const StmtExpr &Node) {
2168 return Node.getSubStmt();
2169}
2170
2171/// If \p Loc is (transitively) expanded from macro \p MacroName, returns the
2172/// location (in the chain of expansions) at which \p MacroName was
2173/// expanded. Since the macro may have been expanded inside a series of
2174/// expansions, that location may itself be a MacroID.
2175std::optional<SourceLocation> getExpansionLocOfMacro(StringRef MacroName,
2176 SourceLocation Loc,
2177 const ASTContext &Context);
2178
2179inline std::optional<StringRef> getOpName(const UnaryOperator &Node) {
2180 return Node.getOpcodeStr(Node.getOpcode());
2181}
2182inline std::optional<StringRef> getOpName(const BinaryOperator &Node) {
2183 return Node.getOpcodeStr();
2184}
2185inline StringRef getOpName(const CXXRewrittenBinaryOperator &Node) {
2186 return Node.getOpcodeStr();
2187}
2188inline std::optional<StringRef> getOpName(const CXXOperatorCallExpr &Node) {
2189 auto optBinaryOpcode = equivalentBinaryOperator(Node);
2190 if (!optBinaryOpcode) {
2191 auto optUnaryOpcode = equivalentUnaryOperator(Node);
2192 if (!optUnaryOpcode)
2193 return std::nullopt;
2194 return UnaryOperator::getOpcodeStr(*optUnaryOpcode);
2195 }
2196 return BinaryOperator::getOpcodeStr(*optBinaryOpcode);
2197}
2198
2199/// Matches overloaded operators with a specific name.
2200///
2201/// The type argument ArgT is not used by this matcher but is used by
2202/// PolymorphicMatcher and should be std::vector<std::string>>.
2203template <typename T, typename ArgT = std::vector<std::string>>
2204class HasAnyOperatorNameMatcher : public SingleNodeMatcherInterface<T> {
2205 static_assert(std::is_same<T, BinaryOperator>::value ||
2206 std::is_same<T, CXXOperatorCallExpr>::value ||
2207 std::is_same<T, CXXRewrittenBinaryOperator>::value ||
2208 std::is_same<T, UnaryOperator>::value,
2209 "Matcher only supports `BinaryOperator`, `UnaryOperator`, "
2210 "`CXXOperatorCallExpr` and `CXXRewrittenBinaryOperator`");
2211 static_assert(std::is_same<ArgT, std::vector<std::string>>::value,
2212 "Matcher ArgT must be std::vector<std::string>");
2213
2214public:
2215 explicit HasAnyOperatorNameMatcher(std::vector<std::string> Names)
2216 : SingleNodeMatcherInterface<T>(), Names(std::move(Names)) {}
2217
2218 bool matchesNode(const T &Node) const override {
2219 std::optional<StringRef> OptOpName = getOpName(Node);
2220 return OptOpName && llvm::is_contained(Names, *OptOpName);
2221 }
2222
2223private:
2224 static std::optional<StringRef> getOpName(const UnaryOperator &Node) {
2225 return Node.getOpcodeStr(Node.getOpcode());
2226 }
2227 static std::optional<StringRef> getOpName(const BinaryOperator &Node) {
2228 return Node.getOpcodeStr();
2229 }
2230 static StringRef getOpName(const CXXRewrittenBinaryOperator &Node) {
2231 return Node.getOpcodeStr();
2232 }
2233 static std::optional<StringRef> getOpName(const CXXOperatorCallExpr &Node) {
2234 auto optBinaryOpcode = equivalentBinaryOperator(Node);
2235 if (!optBinaryOpcode) {
2236 auto optUnaryOpcode = equivalentUnaryOperator(Node);
2237 if (!optUnaryOpcode)
2238 return std::nullopt;
2239 return UnaryOperator::getOpcodeStr(*optUnaryOpcode);
2240 }
2241 return BinaryOperator::getOpcodeStr(*optBinaryOpcode);
2242 }
2243
2244 std::vector<std::string> Names;
2245};
2246
2247using HasOpNameMatcher =
2248 PolymorphicMatcher<HasAnyOperatorNameMatcher,
2249 void(
2250 TypeList<BinaryOperator, CXXOperatorCallExpr,
2251 CXXRewrittenBinaryOperator, UnaryOperator>),
2252 std::vector<std::string>>;
2253
2254HasOpNameMatcher hasAnyOperatorNameFunc(ArrayRef<const StringRef *> NameRefs);
2255
2256using HasOverloadOpNameMatcher =
2257 PolymorphicMatcher<HasOverloadedOperatorNameMatcher,
2258 void(TypeList<CXXOperatorCallExpr, FunctionDecl>),
2259 std::vector<std::string>>;
2260
2261HasOverloadOpNameMatcher
2262hasAnyOverloadedOperatorNameFunc(ArrayRef<const StringRef *> NameRefs);
2263
2264/// Returns true if \p Node has a base specifier matching \p BaseSpec.
2265///
2266/// A class is not considered to be derived from itself.
2267bool matchesAnyBase(const CXXRecordDecl &Node,
2268 const Matcher<CXXBaseSpecifier> &BaseSpecMatcher,
2269 ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder);
2270
2271std::shared_ptr<llvm::Regex> createAndVerifyRegex(StringRef Regex,
2272 llvm::Regex::RegexFlags Flags,
2273 StringRef MatcherID);
2274
2275inline bool
2276MatchTemplateArgLocAt(const DeclRefExpr &Node, unsigned int Index,
2277 internal::Matcher<TemplateArgumentLoc> InnerMatcher,
2278 internal::ASTMatchFinder *Finder,
2279 internal::BoundNodesTreeBuilder *Builder) {
2280 llvm::ArrayRef<TemplateArgumentLoc> ArgLocs = Node.template_arguments();
2281 return Index < ArgLocs.size() &&
2282 InnerMatcher.matches(ArgLocs[Index], Finder, Builder);
2283}
2284
2285inline bool
2286MatchTemplateArgLocAt(const TemplateSpecializationTypeLoc &Node,
2287 unsigned int Index,
2288 internal::Matcher<TemplateArgumentLoc> InnerMatcher,
2289 internal::ASTMatchFinder *Finder,
2290 internal::BoundNodesTreeBuilder *Builder) {
2291 return !Node.isNull() && Index < Node.getNumArgs() &&
2292 InnerMatcher.matches(Node.getArgLoc(Index), Finder, Builder);
2293}
2294
2295} // namespace internal
2296
2297} // namespace ast_matchers
2298
2299} // namespace clang
2300
2301#endif // LLVM_CLANG_ASTMATCHERS_ASTMATCHERSINTERNAL_H

/build/source/clang/include/clang/AST/ASTTypeTraits.h

1//===--- ASTTypeTraits.h ----------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Provides a dynamic type identifier and a dynamically typed node container
10// that can be used to store an AST base node at runtime in the same storage in
11// a type safe way.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_AST_ASTTYPETRAITS_H
16#define LLVM_CLANG_AST_ASTTYPETRAITS_H
17
18#include "clang/AST/ASTFwd.h"
19#include "clang/AST/DeclCXX.h"
20#include "clang/AST/LambdaCapture.h"
21#include "clang/AST/NestedNameSpecifier.h"
22#include "clang/AST/TemplateBase.h"
23#include "clang/AST/TypeLoc.h"
24#include "clang/Basic/LLVM.h"
25#include "llvm/ADT/DenseMapInfo.h"
26#include "llvm/Support/AlignOf.h"
27
28namespace llvm {
29class raw_ostream;
30} // namespace llvm
31
32namespace clang {
33
34struct PrintingPolicy;
35
36/// Defines how we descend a level in the AST when we pass
37/// through expressions.
38enum TraversalKind {
39 /// Will traverse all child nodes.
40 TK_AsIs,
41
42 /// Ignore AST nodes not written in the source
43 TK_IgnoreUnlessSpelledInSource
44};
45
46/// Kind identifier.
47///
48/// It can be constructed from any node kind and allows for runtime type
49/// hierarchy checks.
50/// Use getFromNodeKind<T>() to construct them.
51class ASTNodeKind {
52public:
53 /// Empty identifier. It matches nothing.
54 constexpr ASTNodeKind() : KindId(NKI_None) {}
55
56 /// Construct an identifier for T.
57 template <class T> static constexpr ASTNodeKind getFromNodeKind() {
58 return ASTNodeKind(KindToKindId<T>::Id);
59 }
60
61 /// \{
62 /// Construct an identifier for the dynamic type of the node
63 static ASTNodeKind getFromNode(const Decl &D);
64 static ASTNodeKind getFromNode(const Stmt &S);
65 static ASTNodeKind getFromNode(const Type &T);
66 static ASTNodeKind getFromNode(const TypeLoc &T);
67 static ASTNodeKind getFromNode(const LambdaCapture &L);
68 static ASTNodeKind getFromNode(const OMPClause &C);
69 static ASTNodeKind getFromNode(const Attr &A);
70 /// \}
71
72 /// Returns \c true if \c this and \c Other represent the same kind.
73 constexpr bool isSame(ASTNodeKind Other) const {
74 return KindId != NKI_None && KindId == Other.KindId;
75 }
76
77 /// Returns \c true only for the default \c ASTNodeKind()
78 constexpr bool isNone() const { return KindId == NKI_None; }
79
80 /// Returns \c true if \c this is a base kind of (or same as) \c Other.
81 /// \param Distance If non-null, used to return the distance between \c this
82 /// and \c Other in the class hierarchy.
83 bool isBaseOf(ASTNodeKind Other, unsigned *Distance = nullptr) const;
84
85 /// String representation of the kind.
86 StringRef asStringRef() const;
87
88 /// Strict weak ordering for ASTNodeKind.
89 constexpr bool operator<(const ASTNodeKind &Other) const {
90 return KindId < Other.KindId;
91 }
92
93 /// Return the most derived type between \p Kind1 and \p Kind2.
94 ///
95 /// Return ASTNodeKind() if they are not related.
96 static ASTNodeKind getMostDerivedType(ASTNodeKind Kind1, ASTNodeKind Kind2);
97
98 /// Return the most derived common ancestor between Kind1 and Kind2.
99 ///
100 /// Return ASTNodeKind() if they are not related.
101 static ASTNodeKind getMostDerivedCommonAncestor(ASTNodeKind Kind1,
102 ASTNodeKind Kind2);
103
104 ASTNodeKind getCladeKind() const;
105
106 /// Hooks for using ASTNodeKind as a key in a DenseMap.
107 struct DenseMapInfo {
108 // ASTNodeKind() is a good empty key because it is represented as a 0.
109 static inline ASTNodeKind getEmptyKey() { return ASTNodeKind(); }
110 // NKI_NumberOfKinds is not a valid value, so it is good for a
111 // tombstone key.
112 static inline ASTNodeKind getTombstoneKey() {
113 return ASTNodeKind(NKI_NumberOfKinds);
114 }
115 static unsigned getHashValue(const ASTNodeKind &Val) { return Val.KindId; }
116 static bool isEqual(const ASTNodeKind &LHS, const ASTNodeKind &RHS) {
117 return LHS.KindId == RHS.KindId;
118 }
119 };
120
121 /// Check if the given ASTNodeKind identifies a type that offers pointer
122 /// identity. This is useful for the fast path in DynTypedNode.
123 constexpr bool hasPointerIdentity() const {
124 return KindId > NKI_LastKindWithoutPointerIdentity;
125 }
126
127private:
128 /// Kind ids.
129 ///
130 /// Includes all possible base and derived kinds.
131 enum NodeKindId {
132 NKI_None,
133 NKI_TemplateArgument,
134 NKI_TemplateArgumentLoc,
135 NKI_LambdaCapture,
136 NKI_TemplateName,
137 NKI_NestedNameSpecifierLoc,
138 NKI_QualType,
139#define TYPELOC(CLASS, PARENT) NKI_##CLASS##TypeLoc,
140#include "clang/AST/TypeLocNodes.def"
141 NKI_TypeLoc,
142 NKI_LastKindWithoutPointerIdentity = NKI_TypeLoc,
143 NKI_CXXBaseSpecifier,
144 NKI_CXXCtorInitializer,
145 NKI_NestedNameSpecifier,
146 NKI_Decl,
147#define DECL(DERIVED, BASE) NKI_##DERIVED##Decl,
148#include "clang/AST/DeclNodes.inc"
149 NKI_Stmt,
150#define STMT(DERIVED, BASE) NKI_##DERIVED,
151#include "clang/AST/StmtNodes.inc"
152 NKI_Type,
153#define TYPE(DERIVED, BASE) NKI_##DERIVED##Type,
154#include "clang/AST/TypeNodes.inc"
155 NKI_OMPClause,
156#define GEN_CLANG_CLAUSE_CLASS
157#define CLAUSE_CLASS(Enum, Str, Class) NKI_##Class,
158#include "llvm/Frontend/OpenMP/OMP.inc"
159 NKI_Attr,
160#define ATTR(A) NKI_##A##Attr,
161#include "clang/Basic/AttrList.inc"
162 NKI_ObjCProtocolLoc,
163 NKI_NumberOfKinds
164 };
165
166 /// Use getFromNodeKind<T>() to construct the kind.
167 constexpr ASTNodeKind(NodeKindId KindId) : KindId(KindId) {}
168
169 /// Returns \c true if \c Base is a base kind of (or same as) \c
170 /// Derived.
171 /// \param Distance If non-null, used to return the distance between \c Base
172 /// and \c Derived in the class hierarchy.
173 static bool isBaseOf(NodeKindId Base, NodeKindId Derived, unsigned *Distance);
174
175 /// Helper meta-function to convert a kind T to its enum value.
176 ///
177 /// This struct is specialized below for all known kinds.
178 template <class T> struct KindToKindId {
179 static const NodeKindId Id = NKI_None;
180 };
181 template <class T>
182 struct KindToKindId<const T> : KindToKindId<T> {};
183
184 /// Per kind info.
185 struct KindInfo {
186 /// The id of the parent kind, or None if it has no parent.
187 NodeKindId ParentId;
188 /// Name of the kind.
189 const char *Name;
190 };
191 static const KindInfo AllKindInfo[NKI_NumberOfKinds];
192
193 NodeKindId KindId;
194};
195
196#define KIND_TO_KIND_ID(Class) \
197 template <> struct ASTNodeKind::KindToKindId<Class> { \
198 static const NodeKindId Id = NKI_##Class; \
199 };
200KIND_TO_KIND_ID(CXXCtorInitializer)
201KIND_TO_KIND_ID(TemplateArgument)
202KIND_TO_KIND_ID(TemplateArgumentLoc)
203KIND_TO_KIND_ID(LambdaCapture)
204KIND_TO_KIND_ID(TemplateName)
205KIND_TO_KIND_ID(NestedNameSpecifier)
206KIND_TO_KIND_ID(NestedNameSpecifierLoc)
207KIND_TO_KIND_ID(QualType)
208#define TYPELOC(CLASS, PARENT) KIND_TO_KIND_ID(CLASS##TypeLoc)
209#include "clang/AST/TypeLocNodes.def"
210KIND_TO_KIND_ID(TypeLoc)
211KIND_TO_KIND_ID(Decl)
212KIND_TO_KIND_ID(Stmt)
213KIND_TO_KIND_ID(Type)
214KIND_TO_KIND_ID(OMPClause)
215KIND_TO_KIND_ID(Attr)
216KIND_TO_KIND_ID(ObjCProtocolLoc)
217KIND_TO_KIND_ID(CXXBaseSpecifier)
218#define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl)
219#include "clang/AST/DeclNodes.inc"
220#define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED)
221#include "clang/AST/StmtNodes.inc"
222#define TYPE(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Type)
223#include "clang/AST/TypeNodes.inc"
224#define GEN_CLANG_CLAUSE_CLASS
225#define CLAUSE_CLASS(Enum, Str, Class) KIND_TO_KIND_ID(Class)
226#include "llvm/Frontend/OpenMP/OMP.inc"
227#define ATTR(A) KIND_TO_KIND_ID(A##Attr)
228#include "clang/Basic/AttrList.inc"
229#undef KIND_TO_KIND_ID
230
231inline raw_ostream &operator<<(raw_ostream &OS, ASTNodeKind K) {
232 OS << K.asStringRef();
233 return OS;
234}
235
236/// A dynamically typed AST node container.
237///
238/// Stores an AST node in a type safe way. This allows writing code that
239/// works with different kinds of AST nodes, despite the fact that they don't
240/// have a common base class.
241///
242/// Use \c create(Node) to create a \c DynTypedNode from an AST node,
243/// and \c get<T>() to retrieve the node as type T if the types match.
244///
245/// See \c ASTNodeKind for which node base types are currently supported;
246/// You can create DynTypedNodes for all nodes in the inheritance hierarchy of
247/// the supported base types.
248class DynTypedNode {
249public:
250 /// Creates a \c DynTypedNode from \c Node.
251 template <typename T>
252 static DynTypedNode create(const T &Node) {
253 return BaseConverter<T>::create(Node);
254 }
255
256 /// Retrieve the stored node as type \c T.
257 ///
258 /// Returns NULL if the stored node does not have a type that is
259 /// convertible to \c T.
260 ///
261 /// For types that have identity via their pointer in the AST
262 /// (like \c Stmt, \c Decl, \c Type and \c NestedNameSpecifier) the returned
263 /// pointer points to the referenced AST node.
264 /// For other types (like \c QualType) the value is stored directly
265 /// in the \c DynTypedNode, and the returned pointer points at
266 /// the storage inside DynTypedNode. For those nodes, do not
267 /// use the pointer outside the scope of the DynTypedNode.
268 template <typename T> const T *get() const {
269 return BaseConverter<T>::get(NodeKind, &Storage);
6
Calling 'DynCastPtrConverter::get'
10
Returning from 'DynCastPtrConverter::get'
11
Returning null pointer, which participates in a condition later
36
Calling 'DynCastPtrConverter::get'
40
Returning from 'DynCastPtrConverter::get'
41
Returning pointer, which participates in a condition later
270 }
271
272 /// Retrieve the stored node as type \c T.
273 ///
274 /// Similar to \c get(), but asserts that the type is what we are expecting.
275 template <typename T>
276 const T &getUnchecked() const {
277 return BaseConverter<T>::getUnchecked(NodeKind, &Storage);
278 }
279
280 ASTNodeKind getNodeKind() const { return NodeKind; }
281
282 /// Returns a pointer that identifies the stored AST node.
283 ///
284 /// Note that this is not supported by all AST nodes. For AST nodes
285 /// that don't have a pointer-defined identity inside the AST, this
286 /// method returns NULL.
287 const void *getMemoizationData() const {
288 return NodeKind.hasPointerIdentity()
289 ? *reinterpret_cast<void *const *>(&Storage)
290 : nullptr;
291 }
292
293 /// Prints the node to the given output stream.
294 void print(llvm::raw_ostream &OS, const PrintingPolicy &PP) const;
295
296 /// Dumps the node to the given output stream.
297 void dump(llvm::raw_ostream &OS, const ASTContext &Context) const;
298
299 /// For nodes which represent textual entities in the source code,
300 /// return their SourceRange. For all other nodes, return SourceRange().
301 SourceRange getSourceRange() const;
302
303 /// @{
304 /// Imposes an order on \c DynTypedNode.
305 ///
306 /// Supports comparison of nodes that support memoization.
307 /// FIXME: Implement comparison for other node types (currently
308 /// only Stmt, Decl, Type and NestedNameSpecifier return memoization data).
309 bool operator<(const DynTypedNode &Other) const {
310 if (!NodeKind.isSame(Other.NodeKind))
311 return NodeKind < Other.NodeKind;
312
313 if (ASTNodeKind::getFromNodeKind<QualType>().isSame(NodeKind))
314 return getUnchecked<QualType>().getAsOpaquePtr() <
315 Other.getUnchecked<QualType>().getAsOpaquePtr();
316
317 if (ASTNodeKind::getFromNodeKind<TypeLoc>().isBaseOf(NodeKind)) {
318 auto TLA = getUnchecked<TypeLoc>();
319 auto TLB = Other.getUnchecked<TypeLoc>();
320 return std::make_pair(TLA.getType().getAsOpaquePtr(),
321 TLA.getOpaqueData()) <
322 std::make_pair(TLB.getType().getAsOpaquePtr(),
323 TLB.getOpaqueData());
324 }
325
326 if (ASTNodeKind::getFromNodeKind<NestedNameSpecifierLoc>().isSame(
327 NodeKind)) {
328 auto NNSLA = getUnchecked<NestedNameSpecifierLoc>();
329 auto NNSLB = Other.getUnchecked<NestedNameSpecifierLoc>();
330 return std::make_pair(NNSLA.getNestedNameSpecifier(),
331 NNSLA.getOpaqueData()) <
332 std::make_pair(NNSLB.getNestedNameSpecifier(),
333 NNSLB.getOpaqueData());
334 }
335
336 assert(getMemoizationData() && Other.getMemoizationData())(static_cast <bool> (getMemoizationData() && Other
.getMemoizationData()) ? void (0) : __assert_fail ("getMemoizationData() && Other.getMemoizationData()"
, "clang/include/clang/AST/ASTTypeTraits.h", 336, __extension__
__PRETTY_FUNCTION__))
;
337 return getMemoizationData() < Other.getMemoizationData();
338 }
339 bool operator==(const DynTypedNode &Other) const {
340 // DynTypedNode::create() stores the exact kind of the node in NodeKind.
341 // If they contain the same node, their NodeKind must be the same.
342 if (!NodeKind.isSame(Other.NodeKind))
343 return false;
344
345 // FIXME: Implement for other types.
346 if (ASTNodeKind::getFromNodeKind<QualType>().isSame(NodeKind))
347 return getUnchecked<QualType>() == Other.getUnchecked<QualType>();
348
349 if (ASTNodeKind::getFromNodeKind<TypeLoc>().isBaseOf(NodeKind))
350 return getUnchecked<TypeLoc>() == Other.getUnchecked<TypeLoc>();
351
352 if (ASTNodeKind::getFromNodeKind<NestedNameSpecifierLoc>().isSame(NodeKind))
353 return getUnchecked<NestedNameSpecifierLoc>() ==
354 Other.getUnchecked<NestedNameSpecifierLoc>();
355
356 assert(getMemoizationData() && Other.getMemoizationData())(static_cast <bool> (getMemoizationData() && Other
.getMemoizationData()) ? void (0) : __assert_fail ("getMemoizationData() && Other.getMemoizationData()"
, "clang/include/clang/AST/ASTTypeTraits.h", 356, __extension__
__PRETTY_FUNCTION__))
;
357 return getMemoizationData() == Other.getMemoizationData();
358 }
359 bool operator!=(const DynTypedNode &Other) const {
360 return !operator==(Other);
361 }
362 /// @}
363
364 /// Hooks for using DynTypedNode as a key in a DenseMap.
365 struct DenseMapInfo {
366 static inline DynTypedNode getEmptyKey() {
367 DynTypedNode Node;
368 Node.NodeKind = ASTNodeKind::DenseMapInfo::getEmptyKey();
369 return Node;
370 }
371 static inline DynTypedNode getTombstoneKey() {
372 DynTypedNode Node;
373 Node.NodeKind = ASTNodeKind::DenseMapInfo::getTombstoneKey();
374 return Node;
375 }
376 static unsigned getHashValue(const DynTypedNode &Val) {
377 // FIXME: Add hashing support for the remaining types.
378 if (ASTNodeKind::getFromNodeKind<TypeLoc>().isBaseOf(Val.NodeKind)) {
379 auto TL = Val.getUnchecked<TypeLoc>();
380 return llvm::hash_combine(TL.getType().getAsOpaquePtr(),
381 TL.getOpaqueData());
382 }
383
384 if (ASTNodeKind::getFromNodeKind<NestedNameSpecifierLoc>().isSame(
385 Val.NodeKind)) {
386 auto NNSL = Val.getUnchecked<NestedNameSpecifierLoc>();
387 return llvm::hash_combine(NNSL.getNestedNameSpecifier(),
388 NNSL.getOpaqueData());
389 }
390
391 assert(Val.getMemoizationData())(static_cast <bool> (Val.getMemoizationData()) ? void (
0) : __assert_fail ("Val.getMemoizationData()", "clang/include/clang/AST/ASTTypeTraits.h"
, 391, __extension__ __PRETTY_FUNCTION__))
;
392 return llvm::hash_value(Val.getMemoizationData());
393 }
394 static bool isEqual(const DynTypedNode &LHS, const DynTypedNode &RHS) {
395 auto Empty = ASTNodeKind::DenseMapInfo::getEmptyKey();
396 auto TombStone = ASTNodeKind::DenseMapInfo::getTombstoneKey();
397 return (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, Empty) &&
398 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, Empty)) ||
399 (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, TombStone) &&
400 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, TombStone)) ||
401 LHS == RHS;
402 }
403 };
404
405private:
406 /// Takes care of converting from and to \c T.
407 template <typename T, typename EnablerT = void> struct BaseConverter;
408
409 /// Converter that uses dyn_cast<T> from a stored BaseT*.
410 template <typename T, typename BaseT> struct DynCastPtrConverter {
411 static const T *get(ASTNodeKind NodeKind, const void *Storage) {
412 if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
7
Assuming the condition is false
8
Taking false branch
37
Assuming the condition is true
38
Taking true branch
413 return &getUnchecked(NodeKind, Storage);
39
Returning pointer, which participates in a condition later
414 return nullptr;
9
Returning null pointer, which participates in a condition later
415 }
416 static const T &getUnchecked(ASTNodeKind NodeKind, const void *Storage) {
417 assert(ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))(static_cast <bool> (ASTNodeKind::getFromNodeKind<T>
().isBaseOf(NodeKind)) ? void (0) : __assert_fail ("ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind)"
, "clang/include/clang/AST/ASTTypeTraits.h", 417, __extension__
__PRETTY_FUNCTION__))
;
418 return *cast<T>(static_cast<const BaseT *>(
419 *reinterpret_cast<const void *const *>(Storage)));
420 }
421 static DynTypedNode create(const BaseT &Node) {
422 DynTypedNode Result;
423 Result.NodeKind = ASTNodeKind::getFromNode(Node);
424 new (&Result.Storage) const void *(&Node);
425 return Result;
426 }
427 };
428
429 /// Converter that stores T* (by pointer).
430 template <typename T> struct PtrConverter {
431 static const T *get(ASTNodeKind NodeKind, const void *Storage) {
432 if (ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind))
433 return &getUnchecked(NodeKind, Storage);
434 return nullptr;
435 }
436 static const T &getUnchecked(ASTNodeKind NodeKind, const void *Storage) {
437 assert(ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind))(static_cast <bool> (ASTNodeKind::getFromNodeKind<T>
().isSame(NodeKind)) ? void (0) : __assert_fail ("ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind)"
, "clang/include/clang/AST/ASTTypeTraits.h", 437, __extension__
__PRETTY_FUNCTION__))
;
438 return *static_cast<const T *>(
439 *reinterpret_cast<const void *const *>(Storage));
440 }
441 static DynTypedNode create(const T &Node) {
442 DynTypedNode Result;
443 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
444 new (&Result.Storage) const void *(&Node);
445 return Result;
446 }
447 };
448
449 /// Converter that stores T (by value).
450 template <typename T> struct ValueConverter {
451 static const T *get(ASTNodeKind NodeKind, const void *Storage) {
452 if (ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind))
453 return reinterpret_cast<const T *>(Storage);
454 return nullptr;
455 }
456 static const T &getUnchecked(ASTNodeKind NodeKind, const void *Storage) {
457 assert(ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind))(static_cast <bool> (ASTNodeKind::getFromNodeKind<T>
().isSame(NodeKind)) ? void (0) : __assert_fail ("ASTNodeKind::getFromNodeKind<T>().isSame(NodeKind)"
, "clang/include/clang/AST/ASTTypeTraits.h", 457, __extension__
__PRETTY_FUNCTION__))
;
458 return *reinterpret_cast<const T *>(Storage);
459 }
460 static DynTypedNode create(const T &Node) {
461 DynTypedNode Result;
462 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
463 new (&Result.Storage) T(Node);
464 return Result;
465 }
466 };
467
468 /// Converter that stores nodes by value. It must be possible to dynamically
469 /// cast the stored node within a type hierarchy without breaking (especially
470 /// through slicing).
471 template <typename T, typename BaseT,
472 typename = std::enable_if_t<(sizeof(T) == sizeof(BaseT))>>
473 struct DynCastValueConverter {
474 static const T *get(ASTNodeKind NodeKind, const void *Storage) {
475 if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
476 return &getUnchecked(NodeKind, Storage);
477 return nullptr;
478 }
479 static const T &getUnchecked(ASTNodeKind NodeKind, const void *Storage) {
480 assert(ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))(static_cast <bool> (ASTNodeKind::getFromNodeKind<T>
().isBaseOf(NodeKind)) ? void (0) : __assert_fail ("ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind)"
, "clang/include/clang/AST/ASTTypeTraits.h", 480, __extension__
__PRETTY_FUNCTION__))
;
481 return *static_cast<const T *>(reinterpret_cast<const BaseT *>(Storage));
482 }
483 static DynTypedNode create(const T &Node) {
484 DynTypedNode Result;
485 Result.NodeKind = ASTNodeKind::getFromNode(Node);
486 new (&Result.Storage) T(Node);
487 return Result;
488 }
489 };
490
491 ASTNodeKind NodeKind;
492
493 /// Stores the data of the node.
494 ///
495 /// Note that we can store \c Decls, \c Stmts, \c Types,
496 /// \c NestedNameSpecifiers and \c CXXCtorInitializer by pointer as they are
497 /// guaranteed to be unique pointers pointing to dedicated storage in the AST.
498 /// \c QualTypes, \c NestedNameSpecifierLocs, \c TypeLocs,
499 /// \c TemplateArguments and \c TemplateArgumentLocs on the other hand do not
500 /// have storage or unique pointers and thus need to be stored by value.
501 llvm::AlignedCharArrayUnion<const void *, TemplateArgument,
502 TemplateArgumentLoc, NestedNameSpecifierLoc,
503 QualType, TypeLoc, ObjCProtocolLoc>
504 Storage;
505};
506
507template <typename T>
508struct DynTypedNode::BaseConverter<
509 T, std::enable_if_t<std::is_base_of<Decl, T>::value>>
510 : public DynCastPtrConverter<T, Decl> {};
511
512template <typename T>
513struct DynTypedNode::BaseConverter<
514 T, std::enable_if_t<std::is_base_of<Stmt, T>::value>>
515 : public DynCastPtrConverter<T, Stmt> {};
516
517template <typename T>
518struct DynTypedNode::BaseConverter<
519 T, std::enable_if_t<std::is_base_of<Type, T>::value>>
520 : public DynCastPtrConverter<T, Type> {};
521
522template <typename T>
523struct DynTypedNode::BaseConverter<
524 T, std::enable_if_t<std::is_base_of<OMPClause, T>::value>>
525 : public DynCastPtrConverter<T, OMPClause> {};
526
527template <typename T>
528struct DynTypedNode::BaseConverter<
529 T, std::enable_if_t<std::is_base_of<Attr, T>::value>>
530 : public DynCastPtrConverter<T, Attr> {};
531
532template <>
533struct DynTypedNode::BaseConverter<
534 NestedNameSpecifier, void> : public PtrConverter<NestedNameSpecifier> {};
535
536template <>
537struct DynTypedNode::BaseConverter<
538 CXXCtorInitializer, void> : public PtrConverter<CXXCtorInitializer> {};
539
540template <>
541struct DynTypedNode::BaseConverter<
542 TemplateArgument, void> : public ValueConverter<TemplateArgument> {};
543
544template <>
545struct DynTypedNode::BaseConverter<TemplateArgumentLoc, void>
546 : public ValueConverter<TemplateArgumentLoc> {};
547
548template <>
549struct DynTypedNode::BaseConverter<LambdaCapture, void>
550 : public ValueConverter<LambdaCapture> {};
551
552template <>
553struct DynTypedNode::BaseConverter<
554 TemplateName, void> : public ValueConverter<TemplateName> {};
555
556template <>
557struct DynTypedNode::BaseConverter<
558 NestedNameSpecifierLoc,
559 void> : public ValueConverter<NestedNameSpecifierLoc> {};
560
561template <>
562struct DynTypedNode::BaseConverter<QualType,
563 void> : public ValueConverter<QualType> {};
564
565template <typename T>
566struct DynTypedNode::BaseConverter<
567 T, std::enable_if_t<std::is_base_of<TypeLoc, T>::value>>
568 : public DynCastValueConverter<T, TypeLoc> {};
569
570template <>
571struct DynTypedNode::BaseConverter<CXXBaseSpecifier, void>
572 : public PtrConverter<CXXBaseSpecifier> {};
573
574template <>
575struct DynTypedNode::BaseConverter<ObjCProtocolLoc, void>
576 : public ValueConverter<ObjCProtocolLoc> {};
577
578// The only operation we allow on unsupported types is \c get.
579// This allows to conveniently use \c DynTypedNode when having an arbitrary
580// AST node that is not supported, but prevents misuse - a user cannot create
581// a DynTypedNode from arbitrary types.
582template <typename T, typename EnablerT> struct DynTypedNode::BaseConverter {
583 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
584 return NULL__null;
585 }
586};
587
588} // end namespace clang
589
590namespace llvm {
591
592template <>
593struct DenseMapInfo<clang::ASTNodeKind> : clang::ASTNodeKind::DenseMapInfo {};
594
595template <>
596struct DenseMapInfo<clang::DynTypedNode> : clang::DynTypedNode::DenseMapInfo {};
597
598} // end namespace llvm
599
600#endif