clang 20.0.0git
|
Namespaces | |
namespace | dynamic |
namespace | internal |
Classes | |
class | BoundNodes |
Maps string IDs to AST nodes matched by parts of a matcher. More... | |
class | MatchDescendantVisitor |
class | MatchFinder |
A class to allow finding matches over the Clang AST. More... | |
Typedefs | |
template<typename NodeType > | |
using | AstTypeMatcher = internal::VariadicDynCastAllOfMatcher< Type, NodeType > |
using | DeclarationMatcher = internal::Matcher< Decl > |
Types of matchers for the top-level classes in the AST class hierarchy. | |
using | StatementMatcher = internal::Matcher< Stmt > |
using | TypeMatcher = internal::Matcher< QualType > |
using | TypeLocMatcher = internal::Matcher< TypeLoc > |
using | NestedNameSpecifierMatcher = internal::Matcher< NestedNameSpecifier > |
using | NestedNameSpecifierLocMatcher = internal::Matcher< NestedNameSpecifierLoc > |
using | CXXBaseSpecifierMatcher = internal::Matcher< CXXBaseSpecifier > |
using | CXXCtorInitializerMatcher = internal::Matcher< CXXCtorInitializer > |
using | TemplateArgumentMatcher = internal::Matcher< TemplateArgument > |
using | TemplateArgumentLocMatcher = internal::Matcher< TemplateArgumentLoc > |
using | LambdaCaptureMatcher = internal::Matcher< LambdaCapture > |
using | AttrMatcher = internal::Matcher< Attr > |
Enumerations | |
enum class | GtestCmp { Eq , Ne , Ge , Gt , Le , Lt } |
Gtest's comparison operations. More... | |
enum class | MockArgs { None , Some } |
This enum indicates whether the mock method in the matched ON_CALL or EXPECT_CALL macro has arguments. More... | |
Functions | |
internal::TrueMatcher | anything () |
Matches any node. | |
AST_POLYMORPHIC_MATCHER (isExpansionInMainFile, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc)) | |
Matches AST nodes that were expanded within the main-file. | |
AST_POLYMORPHIC_MATCHER (isExpansionInSystemHeader, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc)) | |
Matches AST nodes that were expanded within system-header-files. | |
AST_POLYMORPHIC_MATCHER_REGEX (isExpansionInFileMatching, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc), RegExp) | |
Matches AST nodes that were expanded within files whose name is partially matching a given regex. | |
AST_POLYMORPHIC_MATCHER_P (isExpandedFromMacro, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc), std::string, MacroName) | |
Matches statements that are (transitively) expanded from the named macro. | |
AST_POLYMORPHIC_MATCHER (isPublic, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier)) | |
Matches public C++ declarations and C++ base specifers that specify public inheritance. | |
AST_POLYMORPHIC_MATCHER (isProtected, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier)) | |
Matches protected C++ declarations and C++ base specifers that specify protected inheritance. | |
AST_POLYMORPHIC_MATCHER (isPrivate, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier)) | |
Matches private C++ declarations and C++ base specifers that specify private inheritance. | |
AST_MATCHER (FieldDecl, isBitField) | |
Matches non-static data members that are bit-fields. | |
AST_MATCHER_P (FieldDecl, hasBitWidth, unsigned, Width) | |
Matches non-static data members that are bit-fields of the specified bit width. | |
AST_MATCHER_P (FieldDecl, hasInClassInitializer, internal::Matcher< Expr >, InnerMatcher) | |
Matches non-static data members that have an in-class initializer. | |
AST_MATCHER (FunctionDecl, isMain) | |
Determines whether the function is "main", which is the entry point into an executable program. | |
AST_MATCHER_P (ClassTemplateSpecializationDecl, hasSpecializedTemplate, internal::Matcher< ClassTemplateDecl >, InnerMatcher) | |
Matches the specialized template of a specialization declaration. | |
AST_POLYMORPHIC_MATCHER (isImplicit, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Attr, LambdaCapture)) | |
Matches an entity that has been implicitly added by the compiler (e.g. | |
AST_POLYMORPHIC_MATCHER_P (hasAnyTemplateArgument, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, TemplateSpecializationType), internal::Matcher< TemplateArgument >, InnerMatcher) | |
Matches templateSpecializationTypes, class template specializations, variable template specializations, and function template specializations that have at least one TemplateArgument matching the given InnerMatcher. | |
template<typename T > | |
internal::Matcher< T > | traverse (TraversalKind TK, const internal::Matcher< T > &InnerMatcher) |
Causes all nested matchers to be matched with the specified traversal kind. | |
template<typename T > | |
internal::BindableMatcher< T > | traverse (TraversalKind TK, const internal::BindableMatcher< T > &InnerMatcher) |
template<typename... T> | |
internal::TraversalWrapper< internal::VariadicOperatorMatcher< T... > > | traverse (TraversalKind TK, const internal::VariadicOperatorMatcher< T... > &InnerMatcher) |
template<template< typename ToArg, typename FromArg > class ArgumentAdapterT, typename T , typename ToTypes > | |
internal::TraversalWrapper< internal::ArgumentAdaptingMatcherFuncAdaptor< ArgumentAdapterT, T, ToTypes > > | traverse (TraversalKind TK, const internal::ArgumentAdaptingMatcherFuncAdaptor< ArgumentAdapterT, T, ToTypes > &InnerMatcher) |
template<template< typename T, typename... P > class MatcherT, typename... P, typename ReturnTypesF > | |
internal::TraversalWrapper< internal::PolymorphicMatcher< MatcherT, ReturnTypesF, P... > > | traverse (TraversalKind TK, const internal::PolymorphicMatcher< MatcherT, ReturnTypesF, P... > &InnerMatcher) |
template<typename... T> | |
internal::Matcher< typename internal::GetClade< T... >::Type > | traverse (TraversalKind TK, const internal::MapAnyOfHelper< T... > &InnerMatcher) |
AST_MATCHER_P (Expr, ignoringImplicit, internal::Matcher< Expr >, InnerMatcher) | |
Matches expressions that match InnerMatcher after any implicit AST nodes are stripped off. | |
AST_MATCHER_P (Expr, ignoringImpCasts, internal::Matcher< Expr >, InnerMatcher) | |
Matches expressions that match InnerMatcher after any implicit casts are stripped off. | |
AST_MATCHER_P (Expr, ignoringParenCasts, internal::Matcher< Expr >, InnerMatcher) | |
Matches expressions that match InnerMatcher after parentheses and casts are stripped off. | |
AST_MATCHER_P (Expr, ignoringParenImpCasts, internal::Matcher< Expr >, InnerMatcher) | |
Matches expressions that match InnerMatcher after implicit casts and parentheses are stripped off. | |
AST_MATCHER_P_OVERLOAD (QualType, ignoringParens, internal::Matcher< QualType >, InnerMatcher, 0) | |
Matches types that match InnerMatcher after any parens are stripped. | |
AST_MATCHER_P_OVERLOAD (Expr, ignoringParens, internal::Matcher< Expr >, InnerMatcher, 1) | |
Overload ignoringParens for Expr . | |
AST_MATCHER (Expr, isInstantiationDependent) | |
Matches expressions that are instantiation-dependent even if it is neither type- nor value-dependent. | |
AST_MATCHER (Expr, isTypeDependent) | |
Matches expressions that are type-dependent because the template type is not yet instantiated. | |
AST_MATCHER (Expr, isValueDependent) | |
Matches expression that are value-dependent because they contain a non-type template parameter. | |
AST_POLYMORPHIC_MATCHER_P2 (hasTemplateArgument, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, TemplateSpecializationType), unsigned, N, internal::Matcher< TemplateArgument >, InnerMatcher) | |
Matches templateSpecializationType, class template specializations, variable template specializations, and function template specializations where the n'th TemplateArgument matches the given InnerMatcher. | |
AST_POLYMORPHIC_MATCHER_P (templateArgumentCountIs, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, TemplateSpecializationType), unsigned, N) | |
Matches if the number of template arguments equals N . | |
AST_MATCHER_P (TemplateArgument, refersToType, internal::Matcher< QualType >, InnerMatcher) | |
Matches a TemplateArgument that refers to a certain type. | |
AST_MATCHER_P (TemplateArgument, refersToTemplate, internal::Matcher< TemplateName >, InnerMatcher) | |
Matches a TemplateArgument that refers to a certain template. | |
AST_MATCHER_P (TemplateArgument, refersToDeclaration, internal::Matcher< Decl >, InnerMatcher) | |
Matches a canonical TemplateArgument that refers to a certain declaration. | |
AST_MATCHER_P (TemplateArgument, isExpr, internal::Matcher< Expr >, InnerMatcher) | |
Matches a sugar TemplateArgument that refers to a certain expression. | |
AST_MATCHER (TemplateArgument, isIntegral) | |
Matches a TemplateArgument that is an integral value. | |
AST_MATCHER_P (TemplateArgument, refersToIntegralType, internal::Matcher< QualType >, InnerMatcher) | |
Matches a TemplateArgument that refers to an integral type. | |
AST_MATCHER_P (TemplateArgument, equalsIntegralValue, std::string, Value) | |
Matches a TemplateArgument of integral type with a given value. | |
AST_MATCHER (CallExpr, usesADL) | |
Matches call expressions which were resolved using ADL. | |
AST_MATCHER_P (InitListExpr, hasSyntacticForm, internal::Matcher< Expr >, InnerMatcher) | |
Matches the syntactic form of init list expressions (if expression have it). | |
AST_MATCHER_P (ForStmt, hasIncrement, internal::Matcher< Stmt >, InnerMatcher) | |
Matches the increment statement of a for loop. | |
AST_MATCHER_P (ForStmt, hasLoopInit, internal::Matcher< Stmt >, InnerMatcher) | |
Matches the initialization statement of a for loop. | |
AST_MATCHER_P (CXXForRangeStmt, hasLoopVariable, internal::Matcher< VarDecl >, InnerMatcher) | |
Matches the initialization statement of a for loop. | |
AST_MATCHER_P (CXXForRangeStmt, hasRangeInit, internal::Matcher< Expr >, InnerMatcher) | |
Matches the range initialization statement of a for loop. | |
AST_MATCHER_P (DesignatedInitExpr, designatorCountIs, unsigned, N) | |
Matches designated initializer expressions that contain a specific number of designators. | |
template<typename T , typename... U> | |
auto | mapAnyOf (internal::VariadicDynCastAllOfMatcher< T, U > const &...) |
Matches any of the NodeMatchers with InnerMatchers nested within. | |
AST_MATCHER_P (UnaryExprOrTypeTraitExpr, hasArgumentOfType, internal::Matcher< QualType >, InnerMatcher) | |
Matches unary expressions that have a specific type of argument. | |
AST_MATCHER_P (UnaryExprOrTypeTraitExpr, ofKind, UnaryExprOrTypeTrait, Kind) | |
Matches unary expressions of a certain kind. | |
internal::BindableMatcher< Stmt > | alignOfExpr (const internal::Matcher< UnaryExprOrTypeTraitExpr > &InnerMatcher) |
Same as unaryExprOrTypeTraitExpr, but only matching alignof. | |
internal::BindableMatcher< Stmt > | sizeOfExpr (const internal::Matcher< UnaryExprOrTypeTraitExpr > &InnerMatcher) |
Same as unaryExprOrTypeTraitExpr, but only matching sizeof. | |
internal::Matcher< NamedDecl > | hasName (StringRef Name) |
Matches NamedDecl nodes that have the specified name. | |
AST_MATCHER_REGEX (NamedDecl, matchesName, RegExp) | |
Matches NamedDecl nodes whose fully qualified names contain a substring matched by the given RegExp. | |
internal::PolymorphicMatcher< internal::HasOverloadedOperatorNameMatcher, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXOperatorCallExpr, FunctionDecl), std::vector< std::string > > | hasOverloadedOperatorName (StringRef Name) |
Matches overloaded operator names. | |
AST_MATCHER_P (CXXDependentScopeMemberExpr, hasMemberName, std::string, N) | |
Matches template-dependent, but known, member names. | |
AST_MATCHER_P (CXXDependentScopeMemberExpr, memberHasSameNameAsBoundNode, std::string, BindingID) | |
Matches template-dependent, but known, member names against an already-bound node. | |
AST_POLYMORPHIC_MATCHER_P (isDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), internal::Matcher< NamedDecl >, Base) | |
Matches C++ classes that are directly or indirectly derived from a class matching Base , or Objective-C classes that directly or indirectly subclass a class matching Base . | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (isDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), std::string, BaseName, 1) | |
Overloaded method as shortcut for isDerivedFrom(hasName(...)) . | |
AST_MATCHER_P (CXXRecordDecl, hasAnyBase, internal::Matcher< CXXBaseSpecifier >, BaseSpecMatcher) | |
Matches C++ classes that have a direct or indirect base matching BaseSpecMatcher . | |
AST_MATCHER_P (CXXRecordDecl, hasDirectBase, internal::Matcher< CXXBaseSpecifier >, BaseSpecMatcher) | |
Matches C++ classes that have a direct base matching BaseSpecMatcher . | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (isSameOrDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), internal::Matcher< NamedDecl >, Base, 0) | |
Similar to isDerivedFrom() , but also matches classes that directly match Base . | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (isSameOrDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), std::string, BaseName, 1) | |
Overloaded method as shortcut for isSameOrDerivedFrom(hasName(...)) . | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (isDirectlyDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), internal::Matcher< NamedDecl >, Base, 0) | |
Matches C++ or Objective-C classes that are directly derived from a class matching Base . | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (isDirectlyDerivedFrom, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl), std::string, BaseName, 1) | |
Overloaded method as shortcut for isDirectlyDerivedFrom(hasName(...)) . | |
AST_MATCHER_P (CXXRecordDecl, hasMethod, internal::Matcher< CXXMethodDecl >, InnerMatcher) | |
Matches the first method of a class or struct that satisfies InnerMatcher . | |
AST_MATCHER (CXXRecordDecl, isLambda) | |
Matches the generated class of lambda expressions. | |
template<typename T > | |
internal::Matcher< T > | findAll (const internal::Matcher< T > &Matcher) |
Matches if the node or any descendant matches. | |
internal::PolymorphicMatcher< internal::HasDeclarationMatcher, void(internal::HasDeclarationSupportedTypes), internal::Matcher< Decl > > | hasDeclaration (const internal::Matcher< Decl > &InnerMatcher) |
Matches a node if the declaration associated with that node matches the given matcher. | |
AST_MATCHER_P (NamedDecl, hasUnderlyingDecl, internal::Matcher< NamedDecl >, InnerMatcher) | |
Matches a NamedDecl whose underlying declaration matches the given matcher. | |
AST_MATCHER_P (CXXMemberCallExpr, on, internal::Matcher< Expr >, InnerMatcher) | |
Matches on the implicit object argument of a member call expression, after stripping off any parentheses or implicit casts. | |
AST_MATCHER_P (ObjCMessageExpr, hasReceiverType, internal::Matcher< QualType >, InnerMatcher) | |
Matches on the receiver of an ObjectiveC Message expression. | |
AST_MATCHER (ObjCMethodDecl, isClassMethod) | |
Returns true when the Objective-C method declaration is a class method. | |
AST_MATCHER (ObjCMethodDecl, isInstanceMethod) | |
Returns true when the Objective-C method declaration is an instance method. | |
AST_MATCHER (ObjCMessageExpr, isClassMessage) | |
Returns true when the Objective-C message is sent to a class. | |
AST_MATCHER (ObjCMessageExpr, isInstanceMessage) | |
Returns true when the Objective-C message is sent to an instance. | |
AST_MATCHER_P (ObjCMessageExpr, hasReceiver, internal::Matcher< Expr >, InnerMatcher) | |
Matches if the Objective-C message is sent to an instance, and the inner matcher matches on that instance. | |
AST_MATCHER_P (ObjCMessageExpr, hasSelector, std::string, BaseName) | |
Matches when BaseName == Selector.getAsString() | |
AST_MATCHER_REGEX (ObjCMessageExpr, matchesSelector, RegExp) | |
Matches ObjC selectors whose name contains a substring matched by the given RegExp. | |
AST_MATCHER (ObjCMessageExpr, hasNullSelector) | |
Matches when the selector is the empty selector. | |
AST_MATCHER (ObjCMessageExpr, hasUnarySelector) | |
Matches when the selector is a Unary Selector. | |
AST_MATCHER (ObjCMessageExpr, hasKeywordSelector) | |
Matches when the selector is a keyword selector. | |
AST_MATCHER_P (ObjCMessageExpr, numSelectorArgs, unsigned, N) | |
Matches when the selector has the specified number of arguments. | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (callee, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXFoldExpr), internal::Matcher< Stmt >, InnerMatcher, 0) | |
Matches if the call or fold expression's callee expression matches. | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (callee, AST_POLYMORPHIC_SUPPORTED_TYPES(ObjCMessageExpr, CallExpr), internal::Matcher< Decl >, InnerMatcher, 1) | |
Matches 1) if the call expression's callee's declaration matches the given matcher; or 2) if the Obj-C message expression's callee's method declaration matches the given matcher. | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (hasType, AST_POLYMORPHIC_SUPPORTED_TYPES(Expr, FriendDecl, TypedefNameDecl, ValueDecl, CXXBaseSpecifier), internal::Matcher< QualType >, InnerMatcher, 0) | |
Matches if the expression's or declaration's type matches a type matcher. | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (hasType, AST_POLYMORPHIC_SUPPORTED_TYPES(Expr, FriendDecl, ValueDecl, CXXBaseSpecifier), internal::Matcher< Decl >, InnerMatcher, 1) | |
Overloaded to match the declaration of the expression's or value declaration's type. | |
AST_POLYMORPHIC_MATCHER_P (hasTypeLoc, AST_POLYMORPHIC_SUPPORTED_TYPES(BlockDecl, CXXBaseSpecifier, CXXCtorInitializer, CXXFunctionalCastExpr, CXXNewExpr, CXXTemporaryObjectExpr, CXXUnresolvedConstructExpr, CompoundLiteralExpr, DeclaratorDecl, ExplicitCastExpr, ObjCPropertyDecl, TemplateArgumentLoc, TypedefNameDecl), internal::Matcher< TypeLoc >, Inner) | |
Matches if the type location of a node matches the inner matcher. | |
AST_MATCHER_P (QualType, asString, std::string, Name) | |
Matches if the matched type is represented by the given string. | |
AST_MATCHER_P (QualType, pointsTo, internal::Matcher< QualType >, InnerMatcher) | |
Matches if the matched type is a pointer type and the pointee type matches the specified matcher. | |
AST_MATCHER_P_OVERLOAD (QualType, pointsTo, internal::Matcher< Decl >, InnerMatcher, 1) | |
Overloaded to match the pointee type's declaration. | |
AST_MATCHER_P (Type, hasUnqualifiedDesugaredType, internal::Matcher< Type >, InnerMatcher) | |
Matches if the matched type matches the unqualified desugared type of the matched node. | |
AST_MATCHER_P (QualType, references, internal::Matcher< QualType >, InnerMatcher) | |
Matches if the matched type is a reference type and the referenced type matches the specified matcher. | |
AST_MATCHER_P (QualType, hasCanonicalType, internal::Matcher< QualType >, InnerMatcher) | |
Matches QualTypes whose canonical type matches InnerMatcher. | |
AST_MATCHER_P_OVERLOAD (QualType, references, internal::Matcher< Decl >, InnerMatcher, 1) | |
Overloaded to match the referenced type's declaration. | |
AST_MATCHER_P (CXXMemberCallExpr, onImplicitObjectArgument, internal::Matcher< Expr >, InnerMatcher) | |
Matches on the implicit object argument of a member call expression. | |
AST_MATCHER_P_OVERLOAD (CXXMemberCallExpr, thisPointerType, internal::Matcher< QualType >, InnerMatcher, 0) | |
Matches if the type of the expression's implicit object argument either matches the InnerMatcher, or is a pointer to a type that matches the InnerMatcher. | |
AST_MATCHER_P_OVERLOAD (CXXMemberCallExpr, thisPointerType, internal::Matcher< Decl >, InnerMatcher, 1) | |
Overloaded to match the type's declaration. | |
AST_MATCHER_P (DeclRefExpr, to, internal::Matcher< Decl >, InnerMatcher) | |
Matches a DeclRefExpr that refers to a declaration that matches the specified matcher. | |
AST_POLYMORPHIC_MATCHER_P (throughUsingDecl, AST_POLYMORPHIC_SUPPORTED_TYPES(DeclRefExpr, UsingType), internal::Matcher< UsingShadowDecl >, Inner) | |
Matches if a node refers to a declaration through a specific using shadow declaration. | |
AST_MATCHER_P (OverloadExpr, hasAnyDeclaration, internal::Matcher< Decl >, InnerMatcher) | |
Matches an OverloadExpr if any of the declarations in the set of overloads matches the given matcher. | |
AST_MATCHER_P (DeclStmt, hasSingleDecl, internal::Matcher< Decl >, InnerMatcher) | |
Matches the Decl of a DeclStmt which has a single declaration. | |
AST_MATCHER_P (VarDecl, hasInitializer, internal::Matcher< Expr >, InnerMatcher) | |
Matches a variable declaration that has an initializer expression that matches the given matcher. | |
AST_MATCHER (VarDecl, isInitCapture) | |
Matches a variable serving as the implicit variable for a lambda init- capture. | |
AST_MATCHER_P (LambdaExpr, forEachLambdaCapture, internal::Matcher< LambdaCapture >, InnerMatcher) | |
Matches each lambda capture in a lambda expression. | |
AST_MATCHER (VarDecl, isStaticLocal) | |
Matches a static variable with local scope. | |
AST_MATCHER (VarDecl, hasLocalStorage) | |
Matches a variable declaration that has function scope and is a non-static local variable. | |
AST_MATCHER (VarDecl, hasGlobalStorage) | |
Matches a variable declaration that does not have local storage. | |
AST_MATCHER (VarDecl, hasAutomaticStorageDuration) | |
Matches a variable declaration that has automatic storage duration. | |
AST_MATCHER (VarDecl, hasStaticStorageDuration) | |
Matches a variable declaration that has static storage duration. | |
AST_MATCHER (VarDecl, hasThreadStorageDuration) | |
Matches a variable declaration that has thread storage duration. | |
AST_MATCHER (VarDecl, isExceptionVariable) | |
Matches a variable declaration that is an exception variable from a C++ catch block, or an Objective-C @catch statement. | |
AST_POLYMORPHIC_MATCHER_P (argumentCountIs, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr), unsigned, N) | |
Checks that a call expression or a constructor call expression has a specific number of arguments (including absent default arguments). | |
AST_POLYMORPHIC_MATCHER_P (argumentCountAtLeast, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr), unsigned, N) | |
Checks that a call expression or a constructor call expression has at least the specified number of arguments (including absent default arguments). | |
AST_POLYMORPHIC_MATCHER_P2 (hasArgument, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr), unsigned, N, internal::Matcher< Expr >, InnerMatcher) | |
Matches the n'th argument of a call expression or a constructor call expression. | |
AST_MATCHER_P (CXXFoldExpr, hasFoldInit, internal::Matcher< Expr >, InnerMacher) | |
Matches the operand that does not contain the parameter pack. | |
AST_MATCHER_P (CXXFoldExpr, hasPattern, internal::Matcher< Expr >, InnerMacher) | |
Matches the operand that contains the parameter pack. | |
AST_MATCHER (CXXFoldExpr, isRightFold) | |
Matches right-folding fold expressions. | |
AST_MATCHER (CXXFoldExpr, isLeftFold) | |
Matches left-folding fold expressions. | |
AST_MATCHER (CXXFoldExpr, isUnaryFold) | |
Matches unary fold expressions, i.e. | |
AST_MATCHER (CXXFoldExpr, isBinaryFold) | |
Matches binary fold expressions, i.e. | |
AST_MATCHER_P2 (InitListExpr, hasInit, unsigned, N, internal::Matcher< Expr >, InnerMatcher) | |
Matches the n'th item of an initializer list expression. | |
AST_MATCHER_P (DeclStmt, declCountIs, unsigned, N) | |
Matches declaration statements that contain a specific number of declarations. | |
AST_MATCHER_P2 (DeclStmt, containsDeclaration, unsigned, N, internal::Matcher< Decl >, InnerMatcher) | |
Matches the n'th declaration of a declaration statement. | |
AST_MATCHER (CXXCatchStmt, isCatchAll) | |
Matches a C++ catch statement that has a catch-all handler. | |
AST_MATCHER_P (CXXConstructorDecl, hasAnyConstructorInitializer, internal::Matcher< CXXCtorInitializer >, InnerMatcher) | |
Matches a constructor initializer. | |
AST_MATCHER_P (CXXCtorInitializer, forField, internal::Matcher< FieldDecl >, InnerMatcher) | |
Matches the field declaration of a constructor initializer. | |
AST_MATCHER_P (CXXCtorInitializer, withInitializer, internal::Matcher< Expr >, InnerMatcher) | |
Matches the initializer expression of a constructor initializer. | |
AST_MATCHER (CXXCtorInitializer, isWritten) | |
Matches a constructor initializer if it is explicitly written in code (as opposed to implicitly added by the compiler). | |
AST_MATCHER (CXXCtorInitializer, isBaseInitializer) | |
Matches a constructor initializer if it is initializing a base, as opposed to a member. | |
AST_MATCHER (CXXCtorInitializer, isMemberInitializer) | |
Matches a constructor initializer if it is initializing a member, as opposed to a base. | |
AST_POLYMORPHIC_MATCHER_P (hasAnyArgument, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr, CXXUnresolvedConstructExpr, ObjCMessageExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches any argument of a call expression or a constructor call expression, or an ObjC-message-send expression. | |
AST_MATCHER_P (LambdaExpr, hasAnyCapture, internal::Matcher< LambdaCapture >, InnerMatcher) | |
Matches any capture in a lambda expression. | |
AST_MATCHER_P (LambdaCapture, capturesVar, internal::Matcher< ValueDecl >, InnerMatcher) | |
Matches a LambdaCapture that refers to the specified VarDecl . | |
AST_MATCHER (LambdaCapture, capturesThis) | |
Matches a LambdaCapture that refers to 'this'. | |
AST_MATCHER (CXXConstructExpr, isListInitialization) | |
Matches a constructor call expression which uses list initialization. | |
AST_MATCHER (CXXConstructExpr, requiresZeroInitialization) | |
Matches a constructor call expression which requires zero initialization. | |
AST_POLYMORPHIC_MATCHER_P2 (hasParameter, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, ObjCMethodDecl, BlockDecl), unsigned, N, internal::Matcher< ParmVarDecl >, InnerMatcher) | |
Matches the n'th parameter of a function or an ObjC method declaration or a block. | |
AST_MATCHER (CXXMethodDecl, isExplicitObjectMemberFunction) | |
Matches if the given method declaration declares a member function with an explicit object parameter. | |
AST_POLYMORPHIC_MATCHER_P2 (forEachArgumentWithParam, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr), internal::Matcher< Expr >, ArgMatcher, internal::Matcher< ParmVarDecl >, ParamMatcher) | |
Matches all arguments and their respective ParmVarDecl. | |
AST_POLYMORPHIC_MATCHER_P2 (forEachArgumentWithParamType, AST_POLYMORPHIC_SUPPORTED_TYPES(CallExpr, CXXConstructExpr), internal::Matcher< Expr >, ArgMatcher, internal::Matcher< QualType >, ParamMatcher) | |
Matches all arguments and their respective types for a CallExpr or CXXConstructExpr . | |
AST_MATCHER_P (ParmVarDecl, isAtPosition, unsigned, N) | |
Matches the ParmVarDecl nodes that are at the N'th position in the parameter list. | |
AST_POLYMORPHIC_MATCHER_P (hasAnyParameter, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, ObjCMethodDecl, BlockDecl), internal::Matcher< ParmVarDecl >, InnerMatcher) | |
Matches any parameter of a function or an ObjC method declaration or a block. | |
AST_POLYMORPHIC_MATCHER_P (parameterCountIs, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, FunctionProtoType), unsigned, N) | |
Matches FunctionDecls and FunctionProtoTypes that have a specific parameter count. | |
AST_POLYMORPHIC_MATCHER_P (forEachTemplateArgument, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, TemplateSpecializationType), internal::Matcher< TemplateArgument >, InnerMatcher) | |
Matches templateSpecializationType, class template specialization, variable template specialization, and function template specialization nodes where the template argument matches the inner matcher. | |
AST_MATCHER (FunctionDecl, isNoReturn) | |
Matches FunctionDecls that have a noreturn attribute. | |
AST_MATCHER_P (FunctionDecl, returns, internal::Matcher< QualType >, InnerMatcher) | |
Matches the return type of a function declaration. | |
AST_POLYMORPHIC_MATCHER (isExternC, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl)) | |
Matches extern "C" function or variable declarations. | |
AST_POLYMORPHIC_MATCHER (isStaticStorageClass, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl)) | |
Matches variable/function declarations that have "static" storage class specifier ("static" keyword) written in the source. | |
AST_MATCHER (FunctionDecl, isDeleted) | |
Matches deleted function declarations. | |
AST_MATCHER (FunctionDecl, isDefaulted) | |
Matches defaulted function declarations. | |
AST_MATCHER (FunctionDecl, isWeak) | |
Matches weak function declarations. | |
AST_POLYMORPHIC_MATCHER (hasDynamicExceptionSpec, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, FunctionProtoType)) | |
Matches functions that have a dynamic exception specification. | |
AST_POLYMORPHIC_MATCHER (isNoThrow, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, FunctionProtoType)) | |
Matches functions that have a non-throwing exception specification. | |
AST_POLYMORPHIC_MATCHER (isConsteval, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, IfStmt)) | |
Matches consteval function declarations and if consteval/if ! consteval statements. | |
AST_POLYMORPHIC_MATCHER (isConstexpr, AST_POLYMORPHIC_SUPPORTED_TYPES(VarDecl, FunctionDecl, IfStmt)) | |
Matches constexpr variable and function declarations, and if constexpr. | |
AST_MATCHER (VarDecl, isConstinit) | |
Matches constinit variable declarations. | |
AST_POLYMORPHIC_MATCHER_P (hasInitStatement, AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, SwitchStmt, CXXForRangeStmt), internal::Matcher< Stmt >, InnerMatcher) | |
Matches selection statements with initializer. | |
AST_POLYMORPHIC_MATCHER_P (hasCondition, AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt, SwitchStmt, AbstractConditionalOperator), internal::Matcher< Expr >, InnerMatcher) | |
Matches the condition expression of an if statement, for loop, switch statement or conditional operator. | |
AST_MATCHER_P (IfStmt, hasThen, internal::Matcher< Stmt >, InnerMatcher) | |
Matches the then-statement of an if statement. | |
AST_MATCHER_P (IfStmt, hasElse, internal::Matcher< Stmt >, InnerMatcher) | |
Matches the else-statement of an if statement. | |
AST_POLYMORPHIC_MATCHER_P (equalsBoundNode, AST_POLYMORPHIC_SUPPORTED_TYPES(Stmt, Decl, Type, QualType), std::string, ID) | |
Matches if a node equals a previously bound node. | |
AST_MATCHER_P (IfStmt, hasConditionVariableStatement, internal::Matcher< DeclStmt >, InnerMatcher) | |
Matches the condition variable statement in an if statement. | |
AST_MATCHER_P (ArraySubscriptExpr, hasIndex, internal::Matcher< Expr >, InnerMatcher) | |
Matches the index expression of an array subscript expression. | |
AST_MATCHER_P (ArraySubscriptExpr, hasBase, internal::Matcher< Expr >, InnerMatcher) | |
Matches the base expression of an array subscript expression. | |
AST_POLYMORPHIC_MATCHER_P (hasBody, AST_POLYMORPHIC_SUPPORTED_TYPES(DoStmt, ForStmt, WhileStmt, CXXForRangeStmt, FunctionDecl, CoroutineBodyStmt), internal::Matcher< Stmt >, InnerMatcher) | |
Matches a 'for', 'while', 'while' statement or a function or coroutine definition that has a given body. | |
AST_MATCHER_P (FunctionDecl, hasAnyBody, internal::Matcher< Stmt >, InnerMatcher) | |
Matches a function declaration that has a given body present in the AST. | |
AST_POLYMORPHIC_MATCHER_P (hasAnySubstatement, AST_POLYMORPHIC_SUPPORTED_TYPES(CompoundStmt, StmtExpr), internal::Matcher< Stmt >, InnerMatcher) | |
Matches compound statements where at least one substatement matches a given matcher. | |
AST_MATCHER_P (CompoundStmt, statementCountIs, unsigned, N) | |
Checks that a compound statement contains a specific number of child statements. | |
template<typename ValueT > | |
internal::PolymorphicMatcher< internal::ValueEqualsMatcher, void(internal::AllNodeBaseTypes), ValueT > | equals (const ValueT &Value) |
Matches literals that are equal to the given value of type ValueT. | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (equals, AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral, CXXBoolLiteralExpr, IntegerLiteral), bool, Value, 0) | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (equals, AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral, CXXBoolLiteralExpr, IntegerLiteral), unsigned, Value, 1) | |
AST_POLYMORPHIC_MATCHER_P_OVERLOAD (equals, AST_POLYMORPHIC_SUPPORTED_TYPES(CharacterLiteral, CXXBoolLiteralExpr, FloatingLiteral, IntegerLiteral), double, Value, 2) | |
AST_POLYMORPHIC_MATCHER_P (hasOperatorName, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, CXXFoldExpr, UnaryOperator), std::string, Name) | |
Matches the operator Name of operator expressions and fold expressions (binary or unary). | |
AST_POLYMORPHIC_MATCHER (isAssignmentOperator, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator)) | |
Matches all kinds of assignment operators. | |
AST_POLYMORPHIC_MATCHER (isComparisonOperator, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator)) | |
Matches comparison operators. | |
AST_POLYMORPHIC_MATCHER_P (hasLHS, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr, CXXFoldExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches the left hand side of binary operator expressions. | |
AST_POLYMORPHIC_MATCHER_P (hasRHS, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, ArraySubscriptExpr, CXXFoldExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches the right hand side of binary operator expressions. | |
AST_POLYMORPHIC_MATCHER_P (hasEitherOperand, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXFoldExpr, CXXRewrittenBinaryOperator), internal::Matcher< Expr >, InnerMatcher) | |
Matches if either the left hand side or the right hand side of a binary operator or fold expression matches. | |
AST_POLYMORPHIC_MATCHER_P2 (hasOperands, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXFoldExpr, CXXRewrittenBinaryOperator), internal::Matcher< Expr >, Matcher1, internal::Matcher< Expr >, Matcher2) | |
Matches if both matchers match with opposite sides of the binary operator or fold expression. | |
AST_POLYMORPHIC_MATCHER_P (hasUnaryOperand, AST_POLYMORPHIC_SUPPORTED_TYPES(UnaryOperator, CXXOperatorCallExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches if the operand of a unary operator matches. | |
AST_POLYMORPHIC_MATCHER_P (hasSourceExpression, AST_POLYMORPHIC_SUPPORTED_TYPES(CastExpr, OpaqueValueExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches if the cast's source expression or opaque value's source expression matches the given matcher. | |
AST_MATCHER_P (CastExpr, hasCastKind, CastKind, Kind) | |
Matches casts that has a given cast kind. | |
AST_MATCHER_P (ExplicitCastExpr, hasDestinationType, internal::Matcher< QualType >, InnerMatcher) | |
Matches casts whose destination type matches a given matcher. | |
AST_MATCHER_P (ImplicitCastExpr, hasImplicitDestinationType, internal::Matcher< QualType >, InnerMatcher) | |
Matches implicit casts whose destination type matches a given matcher. | |
AST_MATCHER (TagDecl, isStruct) | |
Matches TagDecl object that are spelled with "struct.". | |
AST_MATCHER (TagDecl, isUnion) | |
Matches TagDecl object that are spelled with "union.". | |
AST_MATCHER (TagDecl, isClass) | |
Matches TagDecl object that are spelled with "class.". | |
AST_MATCHER (TagDecl, isEnum) | |
Matches TagDecl object that are spelled with "enum.". | |
AST_MATCHER_P (AbstractConditionalOperator, hasTrueExpression, internal::Matcher< Expr >, InnerMatcher) | |
Matches the true branch expression of a conditional operator. | |
AST_MATCHER_P (AbstractConditionalOperator, hasFalseExpression, internal::Matcher< Expr >, InnerMatcher) | |
Matches the false branch expression of a conditional operator (binary or ternary). | |
AST_POLYMORPHIC_MATCHER (isDefinition, AST_POLYMORPHIC_SUPPORTED_TYPES(TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl)) | |
Matches if a declaration has a body attached. | |
AST_MATCHER (FunctionDecl, isVariadic) | |
Matches if a function declaration is variadic. | |
AST_MATCHER_P (CXXMethodDecl, ofClass, internal::Matcher< CXXRecordDecl >, InnerMatcher) | |
Matches the class declaration that the given method declaration belongs to. | |
AST_MATCHER_P (CXXMethodDecl, forEachOverridden, internal::Matcher< CXXMethodDecl >, InnerMatcher) | |
Matches each method overridden by the given method. | |
AST_POLYMORPHIC_MATCHER (isVirtual, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXMethodDecl, CXXBaseSpecifier)) | |
Matches declarations of virtual methods and C++ base specifers that specify virtual inheritance. | |
AST_MATCHER (CXXMethodDecl, isVirtualAsWritten) | |
Matches if the given method declaration has an explicit "virtual". | |
AST_MATCHER (CXXConstructorDecl, isInheritingConstructor) | |
AST_POLYMORPHIC_MATCHER (isFinal, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, CXXMethodDecl)) | |
Matches if the given method or class declaration is final. | |
AST_MATCHER (CXXMethodDecl, isPure) | |
Matches if the given method declaration is pure. | |
AST_MATCHER (CXXMethodDecl, isConst) | |
Matches if the given method declaration is const. | |
AST_MATCHER (CXXMethodDecl, isCopyAssignmentOperator) | |
Matches if the given method declaration declares a copy assignment operator. | |
AST_MATCHER (CXXMethodDecl, isMoveAssignmentOperator) | |
Matches if the given method declaration declares a move assignment operator. | |
AST_MATCHER (CXXMethodDecl, isOverride) | |
Matches if the given method declaration overrides another method. | |
AST_MATCHER (CXXMethodDecl, isUserProvided) | |
Matches method declarations that are user-provided. | |
AST_POLYMORPHIC_MATCHER (isArrow, AST_POLYMORPHIC_SUPPORTED_TYPES(MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr)) | |
Matches member expressions that are called with '->' as opposed to '. | |
AST_MATCHER (QualType, isInteger) | |
Matches QualType nodes that are of integer type. | |
AST_MATCHER (QualType, isUnsignedInteger) | |
Matches QualType nodes that are of unsigned integer type. | |
AST_MATCHER (QualType, isSignedInteger) | |
Matches QualType nodes that are of signed integer type. | |
AST_MATCHER (QualType, isAnyCharacter) | |
Matches QualType nodes that are of character type. | |
AST_MATCHER (QualType, isAnyPointer) | |
Matches QualType nodes that are of any pointer type; this includes the Objective-C object pointer type, which is different despite being syntactically similar. | |
AST_MATCHER (QualType, isConstQualified) | |
Matches QualType nodes that are const-qualified, i.e., that include "top-level" const. | |
AST_MATCHER (QualType, isVolatileQualified) | |
Matches QualType nodes that are volatile-qualified, i.e., that include "top-level" volatile. | |
AST_MATCHER (QualType, hasLocalQualifiers) | |
Matches QualType nodes that have local CV-qualifiers attached to the node, not hidden within a typedef. | |
AST_MATCHER_P (MemberExpr, member, internal::Matcher< ValueDecl >, InnerMatcher) | |
Matches a member expression where the member is matched by a given matcher. | |
AST_POLYMORPHIC_MATCHER_P (hasObjectExpression, AST_POLYMORPHIC_SUPPORTED_TYPES(MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr), internal::Matcher< Expr >, InnerMatcher) | |
Matches a member expression where the object expression is matched by a given matcher. | |
AST_MATCHER_P (BaseUsingDecl, hasAnyUsingShadowDecl, internal::Matcher< UsingShadowDecl >, InnerMatcher) | |
Matches any using shadow declaration. | |
AST_MATCHER_P (UsingShadowDecl, hasTargetDecl, internal::Matcher< NamedDecl >, InnerMatcher) | |
Matches a using shadow declaration where the target declaration is matched by the given matcher. | |
AST_POLYMORPHIC_MATCHER (isTemplateInstantiation, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl, CXXRecordDecl)) | |
Matches template instantiations of function, class, or static member variable template instantiations. | |
AST_MATCHER_FUNCTION (internal::Matcher< Decl >, isInstantiated) | |
Matches declarations that are template instantiations or are inside template instantiations. | |
AST_MATCHER_FUNCTION (internal::Matcher< Stmt >, isInTemplateInstantiation) | |
Matches statements inside of a template instantiation. | |
AST_POLYMORPHIC_MATCHER (isExplicitTemplateSpecialization, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl, CXXRecordDecl)) | |
Matches explicit template specializations of function, class, or static member variable template instantiations. | |
AST_MATCHER_FUNCTION_P_OVERLOAD (internal::BindableMatcher< TypeLoc >, loc, internal::Matcher< QualType >, InnerMatcher, 0) | |
Matches TypeLocs for which the given inner QualType-matcher matches. | |
AST_MATCHER_P (QualifiedTypeLoc, hasUnqualifiedLoc, internal::Matcher< TypeLoc >, InnerMatcher) | |
Matches QualifiedTypeLoc s that have an unqualified TypeLoc matching InnerMatcher . | |
AST_MATCHER_P (FunctionDecl, hasReturnTypeLoc, internal::Matcher< TypeLoc >, ReturnMatcher) | |
Matches a function declared with the specified return TypeLoc . | |
AST_MATCHER_P (PointerTypeLoc, hasPointeeLoc, internal::Matcher< TypeLoc >, PointeeMatcher) | |
Matches pointer TypeLoc s that have a pointee TypeLoc matching PointeeMatcher . | |
AST_MATCHER_P (ReferenceTypeLoc, hasReferentLoc, internal::Matcher< TypeLoc >, ReferentMatcher) | |
Matches reference TypeLoc s that have a referent TypeLoc matching ReferentMatcher . | |
AST_POLYMORPHIC_MATCHER_P (hasAnyTemplateArgumentLoc, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, DeclRefExpr, TemplateSpecializationTypeLoc), internal::Matcher< TemplateArgumentLoc >, InnerMatcher) | |
Matches template specialization TypeLoc s, class template specializations, variable template specializations, and function template specializations that have at least one TemplateArgumentLoc matching the given InnerMatcher . | |
AST_POLYMORPHIC_MATCHER_P2 (hasTemplateArgumentLoc, AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, DeclRefExpr, TemplateSpecializationTypeLoc), unsigned, Index, internal::Matcher< TemplateArgumentLoc >, InnerMatcher) | |
Matches template specialization TypeLoc s, class template specializations, variable template specializations, and function template specializations where the n'th TemplateArgumentLoc matches the given InnerMatcher . | |
AST_MATCHER_P (ElaboratedTypeLoc, hasNamedTypeLoc, internal::Matcher< TypeLoc >, InnerMatcher) | |
Matches elaborated TypeLoc s that have a named TypeLoc matching InnerMatcher . | |
AST_MATCHER (Type, booleanType) | |
Matches type bool . | |
AST_MATCHER (Type, voidType) | |
Matches type void . | |
AST_MATCHER (Type, realFloatingPointType) | |
Matches any real floating-point type (float, double, long double). | |
AST_TYPELOC_TRAVERSE_MATCHER_DECL (hasElementType, getElement, AST_POLYMORPHIC_SUPPORTED_TYPES(ArrayType, ComplexType)) | |
Matches arrays and C99 complex types that have a specific element type. | |
AST_POLYMORPHIC_MATCHER_P (hasSize, AST_POLYMORPHIC_SUPPORTED_TYPES(ConstantArrayType, StringLiteral), unsigned, N) | |
Matches nodes that have the specified size. | |
AST_MATCHER_P (VariableArrayType, hasSizeExpr, internal::Matcher< Expr >, InnerMatcher) | |
Matches VariableArrayType nodes that have a specific size expression. | |
AST_TYPELOC_TRAVERSE_MATCHER_DECL (hasValueType, getValue, AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType)) | |
Matches atomic types with a specific value type. | |
AST_TYPE_TRAVERSE_MATCHER (hasDeducedType, getDeducedType, AST_POLYMORPHIC_SUPPORTED_TYPES(AutoType)) | |
Matches AutoType nodes where the deduced type is a specific type. | |
AST_TYPE_TRAVERSE_MATCHER (hasUnderlyingType, getUnderlyingType, AST_POLYMORPHIC_SUPPORTED_TYPES(DecltypeType, UsingType)) | |
Matches DecltypeType or UsingType nodes to find the underlying type. | |
AST_TYPE_TRAVERSE_MATCHER (innerType, getInnerType, AST_POLYMORPHIC_SUPPORTED_TYPES(ParenType)) | |
Matches ParenType nodes where the inner type is a specific type. | |
AST_TYPELOC_TRAVERSE_MATCHER_DECL (pointee, getPointee, AST_POLYMORPHIC_SUPPORTED_TYPES(BlockPointerType, MemberPointerType, PointerType, ReferenceType)) | |
Narrows PointerType (and similar) matchers to those where the pointee matches a given matcher. | |
AST_MATCHER_P (ElaboratedType, hasQualifier, internal::Matcher< NestedNameSpecifier >, InnerMatcher) | |
Matches ElaboratedTypes whose qualifier, a NestedNameSpecifier, matches InnerMatcher if the qualifier exists. | |
AST_MATCHER_P (ElaboratedType, namesType, internal::Matcher< QualType >, InnerMatcher) | |
Matches ElaboratedTypes whose named type matches InnerMatcher . | |
AST_TYPE_TRAVERSE_MATCHER (hasReplacementType, getReplacementType, AST_POLYMORPHIC_SUPPORTED_TYPES(SubstTemplateTypeParmType)) | |
Matches template type parameter substitutions that have a replacement type that matches the provided matcher. | |
AST_MATCHER_P (DecayedType, hasDecayedType, internal::Matcher< QualType >, InnerType) | |
Matches the decayed type, whoes decayed type matches InnerMatcher . | |
AST_MATCHER_P (Decl, hasDeclContext, internal::Matcher< Decl >, InnerMatcher) | |
Matches declarations whose declaration context, interpreted as a Decl, matches InnerMatcher . | |
AST_MATCHER_FUNCTION_P_OVERLOAD (internal::BindableMatcher< NestedNameSpecifierLoc >, loc, internal::Matcher< NestedNameSpecifier >, InnerMatcher, 1) | |
Matches NestedNameSpecifierLocs for which the given inner NestedNameSpecifier-matcher matches. | |
AST_MATCHER_P (NestedNameSpecifier, specifiesType, internal::Matcher< QualType >, InnerMatcher) | |
Matches nested name specifiers that specify a type matching the given QualType matcher without qualifiers. | |
AST_MATCHER_P (NestedNameSpecifierLoc, specifiesTypeLoc, internal::Matcher< TypeLoc >, InnerMatcher) | |
Matches nested name specifier locs that specify a type matching the given TypeLoc . | |
AST_MATCHER_P_OVERLOAD (NestedNameSpecifier, hasPrefix, internal::Matcher< NestedNameSpecifier >, InnerMatcher, 0) | |
Matches on the prefix of a NestedNameSpecifier . | |
AST_MATCHER_P_OVERLOAD (NestedNameSpecifierLoc, hasPrefix, internal::Matcher< NestedNameSpecifierLoc >, InnerMatcher, 1) | |
Matches on the prefix of a NestedNameSpecifierLoc . | |
AST_MATCHER_P (NestedNameSpecifier, specifiesNamespace, internal::Matcher< NamespaceDecl >, InnerMatcher) | |
Matches nested name specifiers that specify a namespace matching the given namespace matcher. | |
AST_MATCHER_P (SwitchStmt, forEachSwitchCase, internal::Matcher< SwitchCase >, InnerMatcher) | |
Matches each case or default statement belonging to the given switch statement. | |
AST_MATCHER_P (CXXConstructorDecl, forEachConstructorInitializer, internal::Matcher< CXXCtorInitializer >, InnerMatcher) | |
Matches each constructor initializer in a constructor definition. | |
AST_MATCHER (CXXConstructorDecl, isCopyConstructor) | |
Matches constructor declarations that are copy constructors. | |
AST_MATCHER (CXXConstructorDecl, isMoveConstructor) | |
Matches constructor declarations that are move constructors. | |
AST_MATCHER (CXXConstructorDecl, isDefaultConstructor) | |
Matches constructor declarations that are default constructors. | |
AST_MATCHER (CXXConstructorDecl, isDelegatingConstructor) | |
Matches constructors that delegate to another constructor. | |
AST_POLYMORPHIC_MATCHER (isExplicit, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXConstructorDecl, CXXConversionDecl, CXXDeductionGuideDecl)) | |
Matches constructor, conversion function, and deduction guide declarations that have an explicit specifier if this explicit specifier is resolved to true. | |
AST_MATCHER_P (FunctionDecl, hasExplicitSpecifier, internal::Matcher< Expr >, InnerMatcher) | |
Matches the expression in an explicit specifier if present in the given declaration. | |
AST_POLYMORPHIC_MATCHER (isInline, AST_POLYMORPHIC_SUPPORTED_TYPES(NamespaceDecl, FunctionDecl, VarDecl)) | |
Matches functions, variables and namespace declarations that are marked with the inline keyword. | |
AST_MATCHER (NamespaceDecl, isAnonymous) | |
Matches anonymous namespace declarations. | |
AST_MATCHER (Decl, isInStdNamespace) | |
Matches declarations in the namespace std , but not in nested namespaces. | |
AST_MATCHER (Decl, isInAnonymousNamespace) | |
Matches declarations in an anonymous namespace. | |
AST_MATCHER_P (CaseStmt, hasCaseConstant, internal::Matcher< Expr >, InnerMatcher) | |
If the given case statement does not use the GNU case range extension, matches the constant given in the statement. | |
AST_MATCHER_P (Decl, hasAttr, attr::Kind, AttrKind) | |
Matches declaration that has a given attribute. | |
AST_MATCHER_P (ReturnStmt, hasReturnValue, internal::Matcher< Expr >, InnerMatcher) | |
Matches the return value expression of a return statement. | |
AST_MATCHER_FUNCTION (internal::Matcher< Expr >, nullPointerConstant) | |
Matches expressions that resolve to a null pointer constant, such as GNU's __null, C++11's nullptr, or C's NULL macro. | |
AST_MATCHER_P (BindingDecl, forDecomposition, internal::Matcher< ValueDecl >, InnerMatcher) | |
Matches the DecompositionDecl the binding belongs to. | |
AST_MATCHER_P2 (DecompositionDecl, hasBinding, unsigned, N, internal::Matcher< BindingDecl >, InnerMatcher) | |
Matches the Nth binding of a DecompositionDecl. | |
AST_MATCHER_P (DecompositionDecl, hasAnyBinding, internal::Matcher< BindingDecl >, InnerMatcher) | |
Matches any binding of a DecompositionDecl. | |
AST_MATCHER_P (Stmt, forFunction, internal::Matcher< FunctionDecl >, InnerMatcher) | |
Matches declaration of the function the statement belongs to. | |
AST_MATCHER_P (Stmt, forCallable, internal::Matcher< Decl >, InnerMatcher) | |
Matches declaration of the function, method, or block the statement belongs to. | |
AST_MATCHER (NamedDecl, hasExternalFormalLinkage) | |
Matches a declaration that has external formal linkage. | |
AST_MATCHER (ParmVarDecl, hasDefaultArgument) | |
Matches a declaration that has default arguments. | |
AST_MATCHER (CXXNewExpr, isArray) | |
Matches array new expressions. | |
AST_MATCHER_P2 (CXXNewExpr, hasPlacementArg, unsigned, Index, internal::Matcher< Expr >, InnerMatcher) | |
Matches placement new expression arguments. | |
AST_MATCHER_P (CXXNewExpr, hasAnyPlacementArg, internal::Matcher< Expr >, InnerMatcher) | |
Matches any placement new expression arguments. | |
AST_MATCHER_P (CXXNewExpr, hasArraySize, internal::Matcher< Expr >, InnerMatcher) | |
Matches array new expressions with a given array size. | |
AST_MATCHER (CXXRecordDecl, hasDefinition) | |
Matches a class declaration that is defined. | |
AST_MATCHER (EnumDecl, isScoped) | |
Matches C++11 scoped enum declaration. | |
AST_MATCHER (FunctionDecl, hasTrailingReturn) | |
Matches a function declared with a trailing return type. | |
AST_MATCHER_P (Expr, ignoringElidableConstructorCall, internal::Matcher< Expr >, InnerMatcher) | |
Matches expressions that match InnerMatcher that are possibly wrapped in an elidable constructor and other corresponding bookkeeping nodes. | |
AST_MATCHER (OMPExecutableDirective, isStandaloneDirective) | |
Matches standalone OpenMP directives, i.e., directives that can't have a structured block. | |
AST_MATCHER_P (OMPExecutableDirective, hasStructuredBlock, internal::Matcher< Stmt >, InnerMatcher) | |
Matches the structured-block of the OpenMP executable directive. | |
AST_MATCHER_P (OMPExecutableDirective, hasAnyClause, internal::Matcher< OMPClause >, InnerMatcher) | |
Matches any clause in an OpenMP directive. | |
AST_MATCHER (OMPDefaultClause, isNoneKind) | |
Matches if the OpenMP default clause has none kind specified. | |
AST_MATCHER (OMPDefaultClause, isSharedKind) | |
Matches if the OpenMP default clause has shared kind specified. | |
AST_MATCHER (OMPDefaultClause, isPrivateKind) | |
Matches if the OpenMP default clause has private kind specified. | |
AST_MATCHER (OMPDefaultClause, isFirstPrivateKind) | |
Matches if the OpenMP default clause has firstprivate kind specified. | |
AST_MATCHER_P (OMPExecutableDirective, isAllowedToContainClauseKind, OpenMPClauseKind, CKind) | |
Matches if the OpenMP directive is allowed to contain the specified OpenMP clause kind. | |
template<typename MatcherT > | |
SmallVector< BoundNodes, 1 > | match (MatcherT Matcher, ASTContext &Context) |
Returns the results of matching Matcher on the translation unit of Context and collects the BoundNodes of all callback invocations. | |
template<typename NodeT > | |
const NodeT * | selectFirst (StringRef BoundTo, const SmallVectorImpl< BoundNodes > &Results) |
Returns the first result of type NodeT bound to BoundTo . | |
SmallVector< BoundNodes, 1 > | matchDynamic (internal::DynTypedMatcher Matcher, const DynTypedNode &Node, ASTContext &Context) |
template<typename NodeT > | |
SmallVector< BoundNodes, 1 > | matchDynamic (internal::DynTypedMatcher Matcher, const NodeT &Node, ASTContext &Context) |
SmallVector< BoundNodes, 1 > | matchDynamic (internal::DynTypedMatcher Matcher, ASTContext &Context) |
internal::BindableMatcher< Stmt > | gtestAssert (GtestCmp Cmp, StatementMatcher Left, StatementMatcher Right) |
Matcher for gtest's ASSERT comparison macros including ASSERT_EQ, ASSERT_NE, ASSERT_GE, ASSERT_GT, ASSERT_LE and ASSERT_LT. | |
internal::BindableMatcher< Stmt > | gtestAssertThat (StatementMatcher Actual, StatementMatcher Matcher) |
Matcher for gtest's ASSERT_THAT macro. | |
internal::BindableMatcher< Stmt > | gtestExpect (GtestCmp Cmp, StatementMatcher Left, StatementMatcher Right) |
Matcher for gtest's EXPECT comparison macros including EXPECT_EQ, EXPECT_NE, EXPECT_GE, EXPECT_GT, EXPECT_LE and EXPECT_LT. | |
internal::BindableMatcher< Stmt > | gtestExpectThat (StatementMatcher Actual, StatementMatcher Matcher) |
Matcher for gtest's EXPECT_THAT macro. | |
internal::BindableMatcher< Stmt > | gtestExpectCall (StatementMatcher MockObject, llvm::StringRef MockMethodName, MockArgs Args) |
Matcher for gtest's EXPECT_CALL macro. | |
internal::BindableMatcher< Stmt > | gtestExpectCall (StatementMatcher MockCall, MockArgs Args) |
Matcher for gtest's EXPECT_CALL macro. | |
internal::BindableMatcher< Stmt > | gtestOnCall (StatementMatcher MockObject, llvm::StringRef MockMethodName, MockArgs Args) |
Like the first gtestExpectCall overload but for ON_CALL . | |
internal::BindableMatcher< Stmt > | gtestOnCall (StatementMatcher MockCall, MockArgs Args) |
Like the second gtestExpectCall overload but for ON_CALL . | |
static auto | hasPointerType () |
static auto | hasArrayType () |
AST_MATCHER_P (Stmt, forEachDescendantEvaluatedStmt, internal::Matcher< Stmt >, innerMatcher) | |
AST_MATCHER_P (Stmt, forEachDescendantStmt, internal::Matcher< Stmt >, innerMatcher) | |
AST_MATCHER_P (Stmt, notInSafeBufferOptOut, const UnsafeBufferUsageHandler *, Handler) | |
AST_MATCHER_P (Stmt, ignoreUnsafeBufferInContainer, const UnsafeBufferUsageHandler *, Handler) | |
AST_MATCHER_P (CastExpr, castSubExpr, internal::Matcher< Expr >, innerMatcher) | |
AST_MATCHER (UnaryOperator, isPreInc) | |
static auto | isInUnspecifiedLvalueContext (internal::Matcher< Expr > innerMatcher) |
static internal::Matcher< Stmt > | isInUnspecifiedPointerContext (internal::Matcher< Stmt > InnerMatcher) |
static internal::Matcher< Stmt > | isInUnspecifiedUntypedContext (internal::Matcher< Stmt > InnerMatcher) |
AST_MATCHER (CXXConstructExpr, isSafeSpanTwoParamConstruct) | |
AST_MATCHER (ArraySubscriptExpr, isSafeArraySubscript) | |
AST_MATCHER_P (ObjCMessageExpr, hasAnySelectorMatcher, std::vector< std::string >, Matches) | |
AST_TYPELOC_TRAVERSE_MATCHER_DEF (hasElementType, AST_POLYMORPHIC_SUPPORTED_TYPES(ArrayType, ComplexType)) | |
AST_TYPELOC_TRAVERSE_MATCHER_DEF (hasValueType, AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType)) | |
AST_TYPELOC_TRAVERSE_MATCHER_DEF (pointee, AST_POLYMORPHIC_SUPPORTED_TYPES(BlockPointerType, MemberPointerType, PointerType, ReferenceType)) | |
static DeclarationMatcher | getComparisonDecl (GtestCmp Cmp) |
static llvm::StringRef | getMacroTypeName (MacroType Macro) |
static llvm::StringRef | getComparisonTypeName (GtestCmp Cmp) |
static std::string | getMacroName (MacroType Macro, GtestCmp Cmp) |
static std::string | getMacroName (MacroType Macro, llvm::StringRef Operation) |
static llvm::StringRef | getSpecSetterName (MacroType Macro) |
static internal::BindableMatcher< Stmt > | gtestComparisonInternal (MacroType Macro, GtestCmp Cmp, StatementMatcher Left, StatementMatcher Right) |
static internal::BindableMatcher< Stmt > | gtestThatInternal (MacroType Macro, StatementMatcher Actual, StatementMatcher Matcher) |
static internal::BindableMatcher< Stmt > | gtestCallInternal (MacroType Macro, StatementMatcher MockCall, MockArgs Args) |
static internal::BindableMatcher< Stmt > | gtestCallInternal (MacroType Macro, StatementMatcher MockObject, llvm::StringRef MockMethodName, MockArgs Args) |
AST_MATCHER_P (StringLiteral, mentionsBoundType, std::string, BindingID) | |
AST_MATCHER_P_OVERLOAD (Decl, equalsNode, const Decl *, Other, 0) | |
Overloads for the equalsNode matcher. | |
AST_MATCHER_P_OVERLOAD (Stmt, equalsNode, const Stmt *, Other, 1) | |
Matches if a node equals another node. | |
AST_MATCHER_P_OVERLOAD (Type, equalsNode, const Type *, Other, 2) | |
Matches if a node equals another node. | |
template<typename MatcherT , typename NodeT > | |
SmallVector< BoundNodes, 1 > | match (MatcherT Matcher, const NodeT &Node, ASTContext &Context) |
Returns the results of matching Matcher on Node . | |
template<typename MatcherT > | |
SmallVector< BoundNodes, 1 > | match (MatcherT Matcher, const DynTypedNode &Node, ASTContext &Context) |
Variables | |
const internal::VariadicDynCastAllOfMatcher< Decl, TranslationUnitDecl > | translationUnitDecl |
Matches the top declaration context. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TypedefDecl > | typedefDecl |
Matches typedef declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TypedefNameDecl > | typedefNameDecl |
Matches typedef name declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TypeAliasDecl > | typeAliasDecl |
Matches type alias declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TypeAliasTemplateDecl > | typeAliasTemplateDecl |
Matches type alias template declarations. | |
const internal::VariadicAllOfMatcher< Decl > | decl |
Matches declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, DecompositionDecl > | decompositionDecl |
Matches decomposition-declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, BindingDecl > | bindingDecl |
Matches binding declarations Example matches foo and bar (matcher = bindingDecl() | |
const internal::VariadicDynCastAllOfMatcher< Decl, LinkageSpecDecl > | linkageSpecDecl |
Matches a declaration of a linkage specification. | |
const internal::VariadicDynCastAllOfMatcher< Decl, NamedDecl > | namedDecl |
Matches a declaration of anything that could have a name. | |
const internal::VariadicDynCastAllOfMatcher< Decl, LabelDecl > | labelDecl |
Matches a declaration of label. | |
const internal::VariadicDynCastAllOfMatcher< Decl, NamespaceDecl > | namespaceDecl |
Matches a declaration of a namespace. | |
const internal::VariadicDynCastAllOfMatcher< Decl, NamespaceAliasDecl > | namespaceAliasDecl |
Matches a declaration of a namespace alias. | |
const internal::VariadicDynCastAllOfMatcher< Decl, RecordDecl > | recordDecl |
Matches class, struct, and union declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXRecordDecl > | cxxRecordDecl |
Matches C++ class declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplateDecl > | classTemplateDecl |
Matches C++ class template declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplateSpecializationDecl > | classTemplateSpecializationDecl |
Matches C++ class template specializations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplatePartialSpecializationDecl > | classTemplatePartialSpecializationDecl |
Matches C++ class template partial specializations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, DeclaratorDecl > | declaratorDecl |
Matches declarator declarations (field, variable, function and non-type template parameter declarations). | |
const internal::VariadicDynCastAllOfMatcher< Decl, ParmVarDecl > | parmVarDecl |
Matches parameter variable declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, AccessSpecDecl > | accessSpecDecl |
Matches C++ access specifier declarations. | |
const internal::VariadicAllOfMatcher< CXXBaseSpecifier > | cxxBaseSpecifier |
Matches class bases. | |
const internal::VariadicAllOfMatcher< CXXCtorInitializer > | cxxCtorInitializer |
Matches constructor initializers. | |
const internal::VariadicAllOfMatcher< TemplateArgument > | templateArgument |
Matches template arguments. | |
const internal::VariadicAllOfMatcher< TemplateArgumentLoc > | templateArgumentLoc |
Matches template arguments (with location info). | |
const internal::VariadicAllOfMatcher< TemplateName > | templateName |
Matches template name. | |
const internal::VariadicDynCastAllOfMatcher< Decl, NonTypeTemplateParmDecl > | nonTypeTemplateParmDecl |
Matches non-type template parameter declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TemplateTypeParmDecl > | templateTypeParmDecl |
Matches template type parameter declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TemplateTemplateParmDecl > | templateTemplateParmDecl |
Matches template template parameter declarations. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAutoreleasePoolStmt > | autoreleasePoolStmt |
Matches an Objective-C autorelease pool statement. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ValueDecl > | valueDecl |
Matches any value declaration. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXConstructorDecl > | cxxConstructorDecl |
Matches C++ constructor declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXDestructorDecl > | cxxDestructorDecl |
Matches explicit C++ destructor declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, EnumDecl > | enumDecl |
Matches enum declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, EnumConstantDecl > | enumConstantDecl |
Matches enum constants. | |
const internal::VariadicDynCastAllOfMatcher< Decl, TagDecl > | tagDecl |
Matches tag declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXMethodDecl > | cxxMethodDecl |
Matches method declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXConversionDecl > | cxxConversionDecl |
Matches conversion operator declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, CXXDeductionGuideDecl > | cxxDeductionGuideDecl |
Matches user-defined and implicitly generated deduction guide. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ConceptDecl > | conceptDecl |
Matches concept declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, VarDecl > | varDecl |
Matches variable declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, FieldDecl > | fieldDecl |
Matches field declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, IndirectFieldDecl > | indirectFieldDecl |
Matches indirect field declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, FunctionDecl > | functionDecl |
Matches function declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, FunctionTemplateDecl > | functionTemplateDecl |
Matches C++ function template declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, FriendDecl > | friendDecl |
Matches friend declarations. | |
const internal::VariadicAllOfMatcher< Stmt > | stmt |
Matches statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclStmt > | declStmt |
Matches declaration statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, MemberExpr > | memberExpr |
Matches member expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, UnresolvedMemberExpr > | unresolvedMemberExpr |
Matches unresolved member expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDependentScopeMemberExpr > | cxxDependentScopeMemberExpr |
Matches member expressions where the actual member referenced could not be resolved because the base expression or the member name was dependent. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CallExpr > | callExpr |
Matches call expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, LambdaExpr > | lambdaExpr |
Matches lambda expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXMemberCallExpr > | cxxMemberCallExpr |
Matches member call expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCMessageExpr > | objcMessageExpr |
Matches ObjectiveC Message invocation expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCStringLiteral > | objcStringLiteral |
Matches ObjectiveC String literal expressions. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCInterfaceDecl > | objcInterfaceDecl |
Matches Objective-C interface declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCImplementationDecl > | objcImplementationDecl |
Matches Objective-C implementation declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCProtocolDecl > | objcProtocolDecl |
Matches Objective-C protocol declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCCategoryDecl > | objcCategoryDecl |
Matches Objective-C category declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCCategoryImplDecl > | objcCategoryImplDecl |
Matches Objective-C category definitions. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCMethodDecl > | objcMethodDecl |
Matches Objective-C method declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, BlockDecl > | blockDecl |
Matches block declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCIvarDecl > | objcIvarDecl |
Matches Objective-C instance variable declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCPropertyDecl > | objcPropertyDecl |
Matches Objective-C property declarations. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtThrowStmt > | objcThrowStmt |
Matches Objective-C @throw statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtTryStmt > | objcTryStmt |
Matches Objective-C @try statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtCatchStmt > | objcCatchStmt |
Matches Objective-C @catch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtFinallyStmt > | objcFinallyStmt |
Matches Objective-C @finally statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ExprWithCleanups > | exprWithCleanups |
Matches expressions that introduce cleanups to be run at the end of the sub-expression's evaluation. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, InitListExpr > | initListExpr |
Matches init list expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXStdInitializerListExpr > | cxxStdInitializerListExpr |
Matches C++ initializer list expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ImplicitValueInitExpr > | implicitValueInitExpr |
Matches implicit initializers of init list expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ParenListExpr > | parenListExpr |
Matches paren list expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, SubstNonTypeTemplateParmExpr > | substNonTypeTemplateParmExpr |
Matches substitutions of non-type template parameters. | |
const internal::VariadicDynCastAllOfMatcher< Decl, UsingDecl > | usingDecl |
Matches using declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, UsingEnumDecl > | usingEnumDecl |
Matches using-enum declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, UsingDirectiveDecl > | usingDirectiveDecl |
Matches using namespace declarations. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, UnresolvedLookupExpr > | unresolvedLookupExpr |
Matches reference to a name that can be looked up during parsing but could not be resolved to a specific declaration. | |
const internal::VariadicDynCastAllOfMatcher< Decl, UnresolvedUsingValueDecl > | unresolvedUsingValueDecl |
Matches unresolved using value declarations. | |
const internal::VariadicDynCastAllOfMatcher< Decl, UnresolvedUsingTypenameDecl > | unresolvedUsingTypenameDecl |
Matches unresolved using value declarations that involve the typename. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ConstantExpr > | constantExpr |
Matches a constant expression wrapper. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ParenExpr > | parenExpr |
Matches parentheses used in expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXConstructExpr > | cxxConstructExpr |
Matches constructor call expressions (including implicit ones). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXUnresolvedConstructExpr > | cxxUnresolvedConstructExpr |
Matches unresolved constructor call expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXThisExpr > | cxxThisExpr |
Matches implicit and explicit this expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXBindTemporaryExpr > | cxxBindTemporaryExpr |
Matches nodes where temporaries are created. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, MaterializeTemporaryExpr > | materializeTemporaryExpr |
Matches nodes where temporaries are materialized. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNewExpr > | cxxNewExpr |
Matches new expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDeleteExpr > | cxxDeleteExpr |
Matches delete expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNoexceptExpr > | cxxNoexceptExpr |
Matches noexcept expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ArrayInitLoopExpr > | arrayInitLoopExpr |
Matches a loop initializing the elements of an array in a number of contexts: | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ArrayInitIndexExpr > | arrayInitIndexExpr |
The arrayInitIndexExpr consists of two subexpressions: a common expression (the source array) that is evaluated once up-front, and a per-element initializer that runs once for each array element. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ArraySubscriptExpr > | arraySubscriptExpr |
Matches array subscript expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDefaultArgExpr > | cxxDefaultArgExpr |
Matches the value of a default argument at the call site. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXOperatorCallExpr > | cxxOperatorCallExpr |
Matches overloaded operator calls. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXFoldExpr > | cxxFoldExpr |
Matches C++17 fold expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXRewrittenBinaryOperator > | cxxRewrittenBinaryOperator |
Matches rewritten binary operators. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > | expr |
Matches expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclRefExpr > | declRefExpr |
Matches expressions that refer to declarations. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCIvarRefExpr > | objcIvarRefExpr |
Matches a reference to an ObjCIvar. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, BlockExpr > | blockExpr |
Matches a reference to a block. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, IfStmt > | ifStmt |
Matches if statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ForStmt > | forStmt |
Matches for statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXForRangeStmt > | cxxForRangeStmt |
Matches range-based for statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, WhileStmt > | whileStmt |
Matches while statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DoStmt > | doStmt |
Matches do statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, BreakStmt > | breakStmt |
Matches break statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ContinueStmt > | continueStmt |
Matches continue statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CoreturnStmt > | coreturnStmt |
Matches co_return statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ReturnStmt > | returnStmt |
Matches return statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, GotoStmt > | gotoStmt |
Matches goto statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, LabelStmt > | labelStmt |
Matches label statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, AddrLabelExpr > | addrLabelExpr |
Matches address of label statements (GNU extension). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, SwitchStmt > | switchStmt |
Matches switch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, SwitchCase > | switchCase |
Matches case and default statements inside switch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CaseStmt > | caseStmt |
Matches case statements inside switch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DefaultStmt > | defaultStmt |
Matches default statements inside switch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CompoundStmt > | compoundStmt |
Matches compound statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXCatchStmt > | cxxCatchStmt |
Matches catch statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXTryStmt > | cxxTryStmt |
Matches try statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXThrowExpr > | cxxThrowExpr |
Matches throw expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, NullStmt > | nullStmt |
Matches null statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, AsmStmt > | asmStmt |
Matches asm statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXBoolLiteralExpr > | cxxBoolLiteral |
Matches bool literals. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, StringLiteral > | stringLiteral |
Matches string literals (also matches wide string literals). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CharacterLiteral > | characterLiteral |
Matches character literals (also matches wchar_t). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, IntegerLiteral > | integerLiteral |
Matches integer literals of all sizes / encodings, e.g. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, FloatingLiteral > | floatLiteral |
Matches float literals of all sizes / encodings, e.g. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ImaginaryLiteral > | imaginaryLiteral |
Matches imaginary literals, which are based on integer and floating point literals e.g.: 1i, 1.0i. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, FixedPointLiteral > | fixedPointLiteral |
Matches fixed point literals. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, UserDefinedLiteral > | userDefinedLiteral |
Matches user defined literal operator call. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CompoundLiteralExpr > | compoundLiteralExpr |
Matches compound (i.e. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CoawaitExpr > | coawaitExpr |
Matches co_await expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DependentCoawaitExpr > | dependentCoawaitExpr |
Matches co_await expressions where the type of the promise is dependent. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CoyieldExpr > | coyieldExpr |
Matches co_yield expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CoroutineBodyStmt > | coroutineBodyStmt |
Matches coroutine body statements. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNullPtrLiteralExpr > | cxxNullPtrLiteralExpr |
Matches nullptr literal. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ChooseExpr > | chooseExpr |
Matches GNU __builtin_choose_expr. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ConvertVectorExpr > | convertVectorExpr |
Matches builtin function __builtin_convertvector. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, GNUNullExpr > | gnuNullExpr |
Matches GNU __null expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, GenericSelectionExpr > | genericSelectionExpr |
Matches C11 _Generic expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, AtomicExpr > | atomicExpr |
Matches atomic builtins. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, StmtExpr > | stmtExpr |
Matches statement expression (GNU extension). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, BinaryOperator > | binaryOperator |
Matches binary operator expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, UnaryOperator > | unaryOperator |
Matches unary operator expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ConditionalOperator > | conditionalOperator |
Matches conditional operator expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, BinaryConditionalOperator > | binaryConditionalOperator |
Matches binary conditional operator expressions (GNU extension). | |
const internal::VariadicDynCastAllOfMatcher< Stmt, OpaqueValueExpr > | opaqueValueExpr |
Matches opaque value expressions. | |
const internal::VariadicDynCastAllOfMatcher< Decl, StaticAssertDecl > | staticAssertDecl |
Matches a C++ static_assert declaration. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXReinterpretCastExpr > | cxxReinterpretCastExpr |
Matches a reinterpret_cast expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXStaticCastExpr > | cxxStaticCastExpr |
Matches a C++ static_cast expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDynamicCastExpr > | cxxDynamicCastExpr |
Matches a dynamic_cast expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXConstCastExpr > | cxxConstCastExpr |
Matches a const_cast expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CStyleCastExpr > | cStyleCastExpr |
Matches a C-style cast expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ExplicitCastExpr > | explicitCastExpr |
Matches explicit cast expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, ImplicitCastExpr > | implicitCastExpr |
Matches the implicit cast nodes of Clang's AST. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CastExpr > | castExpr |
Matches any cast nodes of Clang's AST. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXFunctionalCastExpr > | cxxFunctionalCastExpr |
Matches functional cast expressions. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXTemporaryObjectExpr > | cxxTemporaryObjectExpr |
Matches functional cast expressions having N != 1 arguments. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, PredefinedExpr > | predefinedExpr |
Matches predefined identifier expressions [C99 6.4.2.2]. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, DesignatedInitExpr > | designatedInitExpr |
Matches C99 designated initializer expressions [C99 6.7.8]. | |
const internal::VariadicAllOfMatcher< QualType > | qualType |
Matches QualTypes in the clang AST. | |
const internal::VariadicAllOfMatcher< Type > | type |
Matches Types in the clang AST. | |
const internal::VariadicAllOfMatcher< TypeLoc > | typeLoc |
Matches TypeLocs in the clang AST. | |
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> | eachOf = {internal::DynTypedMatcher::VO_EachOf} |
Matches if any of the given matchers matches. | |
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> | anyOf = {internal::DynTypedMatcher::VO_AnyOf} |
Matches if any of the given matchers matches. | |
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> | allOf = {internal::DynTypedMatcher::VO_AllOf} |
Matches if all given matchers match. | |
const internal::VariadicOperatorMatcherFunc< 1, 1 > | optionally |
Matches any node regardless of the submatcher. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, UnaryExprOrTypeTraitExpr > | unaryExprOrTypeTraitExpr |
Matches sizeof (C99), alignof (C++11) and vec_step (OpenCL) | |
const internal::MapAnyOfMatcher< BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator > | binaryOperation |
Matches nodes which can be used with binary operators. | |
const internal::MapAnyOfMatcher< CallExpr, CXXConstructExpr > | invocation |
Matches function calls and constructor calls. | |
const internal::VariadicFunction< internal::Matcher< NamedDecl >, StringRef, internal::hasAnyNameFunc > | hasAnyName = {} |
Matches NamedDecl nodes that have any of the specified names. | |
const internal::VariadicFunction< internal::PolymorphicMatcher< internal::HasOverloadedOperatorNameMatcher, AST_POLYMORPHIC_SUPPORTED_TYPES(CXXOperatorCallExpr, FunctionDecl), std::vector< std::string > >, StringRef, internal::hasAnyOverloadedOperatorNameFunc > | hasAnyOverloadedOperatorName = {} |
Matches overloaded operator names. | |
const internal::ArgumentAdaptingMatcherFunc< internal::HasMatcher > | has = {} |
Matches AST nodes that have child AST nodes that match the provided matcher. | |
const internal::ArgumentAdaptingMatcherFunc< internal::HasDescendantMatcher > | hasDescendant = {} |
Matches AST nodes that have descendant AST nodes that match the provided matcher. | |
const internal::ArgumentAdaptingMatcherFunc< internal::ForEachMatcher > | forEach |
Matches AST nodes that have child AST nodes that match the provided matcher. | |
const internal::ArgumentAdaptingMatcherFunc< internal::ForEachDescendantMatcher > | forEachDescendant = {} |
Matches AST nodes that have descendant AST nodes that match the provided matcher. | |
const internal::ArgumentAdaptingMatcherFunc< internal::HasParentMatcher, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr >, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr > > | hasParent = {} |
Matches AST nodes that have a parent that matches the provided matcher. | |
const internal::ArgumentAdaptingMatcherFunc< internal::HasAncestorMatcher, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr >, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr > > | hasAncestor = {} |
Matches AST nodes that have an ancestor that matches the provided matcher. | |
const internal::VariadicOperatorMatcherFunc< 1, 1 > | unless |
Matches if the provided matcher does not match. | |
const internal::VariadicFunction< internal::Matcher< ObjCMessageExpr >, StringRef, internal::hasAnySelectorFunc > | hasAnySelector = {} |
Matches when at least one of the supplied string equals to the Selector.getAsString() | |
const internal::VariadicAllOfMatcher< LambdaCapture > | lambdaCapture |
Matches lambda captures. | |
const internal::VariadicFunction< internal::PolymorphicMatcher< internal::HasAnyOperatorNameMatcher, AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator, UnaryOperator), std::vector< std::string > >, StringRef, internal::hasAnyOperatorNameFunc > | hasAnyOperatorName = {} |
Matches operator expressions (binary or unary) that have any of the specified names. | |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, QualifiedTypeLoc > | qualifiedTypeLoc |
Matches QualifiedTypeLoc s in the clang AST. | |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, PointerTypeLoc > | pointerTypeLoc |
Matches pointer TypeLoc s. | |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, ReferenceTypeLoc > | referenceTypeLoc |
Matches reference TypeLoc s. | |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, TemplateSpecializationTypeLoc > | templateSpecializationTypeLoc |
Matches template specialization TypeLoc s. | |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, ElaboratedTypeLoc > | elaboratedTypeLoc |
Matches C or C++ elaborated TypeLoc s. | |
const AstTypeMatcher< BuiltinType > | builtinType |
Matches builtin Types. | |
const AstTypeMatcher< ArrayType > | arrayType |
Matches all kinds of arrays. | |
const AstTypeMatcher< ComplexType > | complexType |
Matches C99 complex types. | |
const AstTypeMatcher< ConstantArrayType > | constantArrayType |
Matches C arrays with a specified constant size. | |
const AstTypeMatcher< DependentSizedArrayType > | dependentSizedArrayType |
Matches C++ arrays whose size is a value-dependent expression. | |
const AstTypeMatcher< DependentSizedExtVectorType > | dependentSizedExtVectorType |
Matches C++ extended vector type where either the type or size is dependent. | |
const AstTypeMatcher< IncompleteArrayType > | incompleteArrayType |
Matches C arrays with unspecified size. | |
const AstTypeMatcher< VariableArrayType > | variableArrayType |
Matches C arrays with a specified size that is not an integer-constant-expression. | |
const AstTypeMatcher< AtomicType > | atomicType |
Matches atomic types. | |
const AstTypeMatcher< AutoType > | autoType |
Matches types nodes representing C++11 auto types. | |
const AstTypeMatcher< DecltypeType > | decltypeType |
Matches types nodes representing C++11 decltype(<expr>) types. | |
const AstTypeMatcher< FunctionType > | functionType |
Matches FunctionType nodes. | |
const AstTypeMatcher< FunctionProtoType > | functionProtoType |
Matches FunctionProtoType nodes. | |
const AstTypeMatcher< ParenType > | parenType |
Matches ParenType nodes. | |
const AstTypeMatcher< BlockPointerType > | blockPointerType |
Matches block pointer types, i.e. | |
const AstTypeMatcher< MemberPointerType > | memberPointerType |
Matches member pointer types. | |
const AstTypeMatcher< PointerType > | pointerType |
Matches pointer types, but does not match Objective-C object pointer types. | |
const AstTypeMatcher< ObjCObjectPointerType > | objcObjectPointerType |
Matches an Objective-C object pointer type, which is different from a pointer type, despite being syntactically similar. | |
const AstTypeMatcher< ReferenceType > | referenceType |
Matches both lvalue and rvalue reference types. | |
const AstTypeMatcher< LValueReferenceType > | lValueReferenceType |
Matches lvalue reference types. | |
const AstTypeMatcher< RValueReferenceType > | rValueReferenceType |
Matches rvalue reference types. | |
const AstTypeMatcher< TypedefType > | typedefType |
Matches typedef types. | |
const AstTypeMatcher< MacroQualifiedType > | macroQualifiedType |
Matches qualified types when the qualifier is applied via a macro. | |
const AstTypeMatcher< EnumType > | enumType |
Matches enum types. | |
const AstTypeMatcher< TemplateSpecializationType > | templateSpecializationType |
Matches template specialization types. | |
const AstTypeMatcher< DeducedTemplateSpecializationType > | deducedTemplateSpecializationType |
Matches C++17 deduced template specialization types, e.g. | |
const AstTypeMatcher< UnaryTransformType > | unaryTransformType |
Matches types nodes representing unary type transformations. | |
const AstTypeMatcher< RecordType > | recordType |
Matches record types (e.g. | |
const AstTypeMatcher< TagType > | tagType |
Matches tag types (record and enum types). | |
const AstTypeMatcher< ElaboratedType > | elaboratedType |
Matches types specified with an elaborated type keyword or with a qualified name. | |
const AstTypeMatcher< UsingType > | usingType |
Matches types specified through a using declaration. | |
const AstTypeMatcher< SubstTemplateTypeParmType > | substTemplateTypeParmType |
Matches types that represent the result of substituting a type for a template type parameter. | |
const AstTypeMatcher< TemplateTypeParmType > | templateTypeParmType |
Matches template type parameter types. | |
const AstTypeMatcher< InjectedClassNameType > | injectedClassNameType |
Matches injected class name types. | |
const AstTypeMatcher< DecayedType > | decayedType |
Matches decayed type Example matches i[] in declaration of f. | |
const internal::VariadicAllOfMatcher< NestedNameSpecifier > | nestedNameSpecifier |
Matches nested name specifiers. | |
const internal::VariadicAllOfMatcher< NestedNameSpecifierLoc > | nestedNameSpecifierLoc |
Same as nestedNameSpecifier but matches NestedNameSpecifierLoc . | |
const internal::VariadicAllOfMatcher< Attr > | attr |
Matches attributes. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, CUDAKernelCallExpr > | cudaKernelCallExpr |
Matches CUDA kernel call expression. | |
const internal::VariadicDynCastAllOfMatcher< Stmt, OMPExecutableDirective > | ompExecutableDirective |
Matches any #pragma omp executable directive. | |
const internal::VariadicDynCastAllOfMatcher< OMPClause, OMPDefaultClause > | ompDefaultClause |
Matches OpenMP default clause. | |
using clang::ast_matchers::AstTypeMatcher = typedef internal::VariadicDynCastAllOfMatcher<Type, NodeType> |
Definition at line 7015 of file ASTMatchers.h.
using clang::ast_matchers::AttrMatcher = typedef internal::Matcher<Attr> |
Definition at line 154 of file ASTMatchers.h.
using clang::ast_matchers::CXXBaseSpecifierMatcher = typedef internal::Matcher<CXXBaseSpecifier> |
Definition at line 149 of file ASTMatchers.h.
using clang::ast_matchers::CXXCtorInitializerMatcher = typedef internal::Matcher<CXXCtorInitializer> |
Definition at line 150 of file ASTMatchers.h.
using clang::ast_matchers::DeclarationMatcher = typedef internal::Matcher<Decl> |
Types of matchers for the top-level classes in the AST class hierarchy.
Definition at line 143 of file ASTMatchers.h.
using clang::ast_matchers::LambdaCaptureMatcher = typedef internal::Matcher<LambdaCapture> |
Definition at line 153 of file ASTMatchers.h.
using clang::ast_matchers::NestedNameSpecifierLocMatcher = typedef internal::Matcher<NestedNameSpecifierLoc> |
Definition at line 148 of file ASTMatchers.h.
using clang::ast_matchers::NestedNameSpecifierMatcher = typedef internal::Matcher<NestedNameSpecifier> |
Definition at line 147 of file ASTMatchers.h.
using clang::ast_matchers::StatementMatcher = typedef internal::Matcher<Stmt> |
Definition at line 144 of file ASTMatchers.h.
using clang::ast_matchers::TemplateArgumentLocMatcher = typedef internal::Matcher<TemplateArgumentLoc> |
Definition at line 152 of file ASTMatchers.h.
using clang::ast_matchers::TemplateArgumentMatcher = typedef internal::Matcher<TemplateArgument> |
Definition at line 151 of file ASTMatchers.h.
using clang::ast_matchers::TypeLocMatcher = typedef internal::Matcher<TypeLoc> |
Definition at line 146 of file ASTMatchers.h.
using clang::ast_matchers::TypeMatcher = typedef internal::Matcher<QualType> |
Definition at line 145 of file ASTMatchers.h.
|
strong |
Gtest's comparison operations.
Enumerator | |
---|---|
Eq | |
Ne | |
Ge | |
Gt | |
Le | |
Lt |
Definition at line 25 of file GtestMatchers.h.
|
strong |
This enum indicates whether the mock method in the matched ON_CALL or EXPECT_CALL macro has arguments.
For example, None
can be used to match ON_CALL(mock, TwoParamMethod)
whereas Some
can be used to match ON_CALL(mock, TwoParamMethod(m1, m2))
.
Enumerator | |
---|---|
None | |
Some |
Definition at line 38 of file GtestMatchers.h.
|
inline |
Same as unaryExprOrTypeTraitExpr, but only matching alignof.
Definition at line 3049 of file ASTMatchers.h.
References allOf, anyOf, stmt, and unaryExprOrTypeTraitExpr.
|
inline |
Matches any node.
Useful when another matcher requires a child matcher, but there's no additional constraint. This will often be used with an explicit conversion to an internal::Matcher<>
type such as TypeMatcher
.
Example: DeclarationMatcher(anything())
matches all declarations, e.g.,
Usable as: Any Matcher
Definition at line 171 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER | ( | ArraySubscriptExpr | , |
isSafeArraySubscript | |||
) |
Definition at line 415 of file UnsafeBufferUsage.cpp.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CallExpr | , |
usesADL | |||
) |
Matches call expressions which were resolved using ADL.
Example matches y(x) but not y(42) or NS::y(x).
Definition at line 1499 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXCatchStmt | , |
isCatchAll | |||
) |
Matches a C++ catch statement that has a catch-all handler.
Given
cxxCatchStmt(isCatchAll()) matches catch(...) but not catch(int).
Definition at line 4749 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructExpr | , |
isListInitialization | |||
) |
Matches a constructor call expression which uses list initialization.
Definition at line 4987 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructExpr | , |
isSafeSpanTwoParamConstruct | |||
) |
Definition at line 355 of file UnsafeBufferUsage.cpp.
References clang::Expr::getIntegerConstantExpr(), clang::Stmt::getStmtClass(), clang::Expr::getType(), clang::Expr::IgnoreImplicit(), clang::Type::isConstantArrayType(), and Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructExpr | , |
requiresZeroInitialization | |||
) |
Matches a constructor call expression which requires zero initialization.
Given
initListExpr(has(cxxConstructExpr(requiresZeroInitialization())) will match the implicit array filler for pt[1].
Definition at line 5003 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructorDecl | , |
isCopyConstructor | |||
) |
Matches constructor declarations that are copy constructors.
Given
cxxConstructorDecl(isCopyConstructor()) will match #2, but not #1 or #3.
Definition at line 7943 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructorDecl | , |
isDefaultConstructor | |||
) |
Matches constructor declarations that are default constructors.
Given
cxxConstructorDecl(isDefaultConstructor()) will match #1, but not #2 or #3.
Definition at line 7973 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructorDecl | , |
isDelegatingConstructor | |||
) |
Matches constructors that delegate to another constructor.
Given
cxxConstructorDecl(isDelegatingConstructor()) will match #3 and #4, but not #1 or #2.
Definition at line 7990 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructorDecl | , |
isInheritingConstructor | |||
) |
Definition at line 6343 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructorDecl | , |
isMoveConstructor | |||
) |
Matches constructor declarations that are move constructors.
Given
cxxConstructorDecl(isMoveConstructor()) will match #3, but not #1 or #2.
Definition at line 7958 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXCtorInitializer | , |
isBaseInitializer | |||
) |
Matches a constructor initializer if it is initializing a base, as opposed to a member.
Given
cxxConstructorDecl(hasAnyConstructorInitializer(isBaseInitializer())) will match E(), but not match D(int).
Definition at line 4848 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXCtorInitializer | , |
isMemberInitializer | |||
) |
Matches a constructor initializer if it is initializing a member, as opposed to a base.
Given
cxxConstructorDecl(hasAnyConstructorInitializer(isMemberInitializer())) will match D(int), but not match E().
Definition at line 4868 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXCtorInitializer | , |
isWritten | |||
) |
Matches a constructor initializer if it is explicitly written in code (as opposed to implicitly added by the compiler).
Given
cxxConstructorDecl(hasAnyConstructorInitializer(isWritten())) will match Foo(int), but not Foo()
Definition at line 4828 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isBinaryFold | |||
) |
Matches binary fold expressions, i.e.
fold expressions with an initializer.
Example matches (0 + ... + args)
(matcher = cxxFoldExpr(isBinaryFold()))
Definition at line 4677 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isLeftFold | |||
) |
Matches left-folding fold expressions.
Example matches (0 + ... + args)
(matcher = cxxFoldExpr(isLeftFold()))
Definition at line 4642 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isRightFold | |||
) |
Matches right-folding fold expressions.
Example matches (args * ... * 1)
(matcher = cxxFoldExpr(isRightFold()))
Definition at line 4625 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isUnaryFold | |||
) |
Matches unary fold expressions, i.e.
fold expressions without an initializer.
Example matches (args * ...)
(matcher = cxxFoldExpr(isUnaryFold()))
Definition at line 4660 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isConst | |||
) |
Matches if the given method declaration is const.
Given
cxxMethodDecl(isConst()) matches A::foo() but not A::bar()
Definition at line 6391 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isCopyAssignmentOperator | |||
) |
Matches if the given method declaration declares a copy assignment operator.
Given
cxxMethodDecl(isCopyAssignmentOperator()) matches the first method but not the second one.
Definition at line 6408 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isExplicitObjectMemberFunction | |||
) |
Matches if the given method declaration declares a member function with an explicit object parameter.
Given
cxxMethodDecl(isExplicitObjectMemberFunction()) matches the first two methods but not the last two.
Definition at line 5052 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isMoveAssignmentOperator | |||
) |
Matches if the given method declaration declares a move assignment operator.
Given
cxxMethodDecl(isMoveAssignmentOperator()) matches the second method but not the first one.
Definition at line 6425 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isOverride | |||
) |
Matches if the given method declaration overrides another method.
Given
matches B::x
Definition at line 6443 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isPure | |||
) |
Matches if the given method declaration is pure.
Given
matches A::x
Definition at line 6378 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isUserProvided | |||
) |
Matches method declarations that are user-provided.
Given
cxxConstructorDecl(isUserProvided()) will match #1, but not #2 or #3.
Definition at line 6458 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXMethodDecl | , |
isVirtualAsWritten | |||
) |
Matches if the given method declaration has an explicit "virtual".
Given
matches A::x but not B::x
Definition at line 6339 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXNewExpr | , |
isArray | |||
) |
Matches array new expressions.
Given:
cxxNewExpr(isArray()) matches the expression 'new MyClass[10]'.
Definition at line 8462 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXRecordDecl | , |
hasDefinition | |||
) |
Matches a class declaration that is defined.
Example matches x (matcher = cxxRecordDecl(hasDefinition()))
Definition at line 8515 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | CXXRecordDecl | , |
isLambda | |||
) |
Matches the generated class of lambda expressions.
Given:
cxxRecordDecl(isLambda())
matches the implicit class declaration of decltype(x)
Definition at line 3457 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Decl | , |
isInAnonymousNamespace | |||
) |
Matches declarations in an anonymous namespace.
Given
cxxRecordDecl(hasName("vector"), isInAnonymousNamespace()) will match #1, #2 and #3.
Definition at line 8139 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Decl | , |
isInStdNamespace | |||
) |
Matches declarations in the namespace std
, but not in nested namespaces.
Given
cxxRecordDecl(hasName("vector"), isInStdNamespace()) will match only #1.
Definition at line 8117 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | EnumDecl | , |
isScoped | |||
) |
Matches C++11 scoped enum declaration.
Example matches Y (matcher = enumDecl(isScoped()))
Definition at line 8526 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Expr | , |
isInstantiationDependent | |||
) |
Matches expressions that are instantiation-dependent even if it is neither type- nor value-dependent.
In the following example, the expression sizeof(sizeof(T() + T())) is instantiation-dependent (since it involves a template parameter T), but is neither type- nor value-dependent, since the type of the inner sizeof is known (std::size_t) and therefore the size of the outer sizeof is known.
expr(isInstantiationDependent()) matches sizeof(sizeof(T() + T())
Definition at line 1021 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Expr | , |
isTypeDependent | |||
) |
Matches expressions that are type-dependent because the template type is not yet instantiated.
For example, the expressions "x" and "x + y" are type-dependent in the following code, but "y" is not type-dependent:
expr(isTypeDependent()) matches x + y
Definition at line 1037 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Expr | , |
isValueDependent | |||
) |
Matches expression that are value-dependent because they contain a non-type template parameter.
For example, the array bound of "Chars" in the following example is value-dependent.
expr(isValueDependent()) matches return Size
Definition at line 1048 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FieldDecl | , |
isBitField | |||
) |
Matches non-static data members that are bit-fields.
Given
fieldDecl(isBitField()) matches 'int a;' but not 'int b;'.
Definition at line 693 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
hasTrailingReturn | |||
) |
Matches a function declared with a trailing return type.
Example matches Y (matcher = functionDecl(hasTrailingReturn()))
Definition at line 8537 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isDefaulted | |||
) |
Matches defaulted function declarations.
Given:
functionDecl(isDefaulted()) matches the declaration of ~B, but not ~A.
Definition at line 5443 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isDeleted | |||
) |
Matches deleted function declarations.
Given:
functionDecl(isDeleted()) matches the declaration of DeletedFunc, but not Func.
Definition at line 5430 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isMain | |||
) |
Determines whether the function is "main", which is the entry point into an executable program.
Definition at line 738 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isNoReturn | |||
) |
Matches FunctionDecls
that have a noreturn attribute.
Given
functionDecl(isNoReturn()) matches all of those except
Definition at line 5366 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isVariadic | |||
) |
Matches if a function declaration is variadic.
Example matches f, but not g or h. The function i will not match, even when compiled in C mode.
Definition at line 6228 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | FunctionDecl | , |
isWeak | |||
) |
Matches weak function declarations.
Given:
functionDecl(isWeak()) matches the weak declaration "foo", but not "bar".
Definition at line 5456 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | LambdaCapture | , |
capturesThis | |||
) |
Matches a LambdaCapture
that refers to 'this'.
Given
lambdaExpr(hasAnyCapture(lambdaCapture(capturesThis()))) matches [this]() { return cc; }
.
Definition at line 4984 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | NamedDecl | , |
hasExternalFormalLinkage | |||
) |
Matches a declaration that has external formal linkage.
Example matches only z (matcher = varDecl(hasExternalFormalLinkage()))
Example matches f() because it has external formal linkage despite being unique to the translation unit as though it has internal likage (matcher = functionDecl(hasExternalFormalLinkage()))
Definition at line 8425 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | NamespaceDecl | , |
isAnonymous | |||
) |
Matches anonymous namespace declarations.
Given
namespaceDecl(isAnonymous()) will match #1 but not ::n.
Definition at line 8092 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMessageExpr | , |
hasKeywordSelector | |||
) |
Matches when the selector is a keyword selector.
objCMessageExpr(hasKeywordSelector()) matches the generated setFrame message expression in
Definition at line 3878 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMessageExpr | , |
hasNullSelector | |||
) |
Matches when the selector is the empty selector.
Matches only when the selector of the objCMessageExpr is NULL. This may represent an error condition in the tree!
Definition at line 3850 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMessageExpr | , |
hasUnarySelector | |||
) |
Matches when the selector is a Unary Selector.
matcher = objCMessageExpr(matchesSelector(hasUnarySelector()); matches self.bodyView in the code below, but NOT the outer message invocation of "loadHTMLString:baseURL:".
Definition at line 3862 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMessageExpr | , |
isClassMessage | |||
) |
Returns true when the Objective-C message is sent to a class.
Example matcher = objcMessageExpr(isClassMessage()) matches
but not
Definition at line 3767 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMessageExpr | , |
isInstanceMessage | |||
) |
Returns true when the Objective-C message is sent to an instance.
Example matcher = objcMessageExpr(isInstanceMessage()) matches
but not
Definition at line 3784 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMethodDecl | , |
isClassMethod | |||
) |
Returns true when the Objective-C method declaration is a class method.
Example matcher = objcMethodDecl(isClassMethod()) matches
but not
Definition at line 3734 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ObjCMethodDecl | , |
isInstanceMethod | |||
) |
Returns true when the Objective-C method declaration is an instance method.
Example matcher = objcMethodDecl(isInstanceMethod()) matches
but not
Definition at line 3750 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | OMPDefaultClause | , |
isFirstPrivateKind | |||
) |
Matches if the OpenMP default
clause has firstprivate
kind specified.
Given
ompDefaultClause(isFirstPrivateKind())
matches only default(firstprivate)
.
Definition at line 8751 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | OMPDefaultClause | , |
isNoneKind | |||
) |
Matches if the OpenMP default
clause has none
kind specified.
Given
ompDefaultClause(isNoneKind())
matches only default(none)
.
Definition at line 8696 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | OMPDefaultClause | , |
isPrivateKind | |||
) |
Matches if the OpenMP default
clause has private
kind specified.
Given
ompDefaultClause(isPrivateKind())
matches only default(private)
.
Definition at line 8732 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | OMPDefaultClause | , |
isSharedKind | |||
) |
Matches if the OpenMP default
clause has shared
kind specified.
Given
ompDefaultClause(isSharedKind())
matches only default(shared)
.
Definition at line 8713 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | OMPExecutableDirective | , |
isStandaloneDirective | |||
) |
Matches standalone OpenMP directives, i.e., directives that can't have a structured block.
Given
ompExecutableDirective(isStandaloneDirective()))
matches omp taskyield
.
Definition at line 8621 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | ParmVarDecl | , |
hasDefaultArgument | |||
) |
Matches a declaration that has default arguments.
Example matches y (matcher = parmVarDecl(hasDefaultArgument()))
Deprecated. Use hasInitializer() instead to be able to match on the contents of the default argument. For example:
parmVarDecl(hasInitializer(integerLiteral(equals(42)))) matches the parameter of y
A matcher such as parmVarDecl(hasInitializer(anything())) is equivalent to parmVarDecl(hasDefaultArgument()).
Definition at line 8450 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
hasLocalQualifiers | |||
) |
Matches QualType nodes that have local CV-qualifiers attached to the node, not hidden within a typedef.
Given
varDecl
(hasType(hasLocalQualifiers())) matches only j
and k
. i
is const-qualified but the qualifier is not local.
Definition at line 6619 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isAnyCharacter | |||
) |
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isAnyPointer | |||
) |
Matches QualType nodes that are of any pointer type; this includes the Objective-C object pointer type, which is different despite being syntactically similar.
Given
varDecl(hasType(isAnyPointer())) matches "int *i" and "Foo *f", but not "int j".
Definition at line 6564 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isConstQualified | |||
) |
Matches QualType nodes that are const-qualified, i.e., that include "top-level" const.
Given
functionDecl(hasAnyParameter(hasType(isConstQualified()))) matches "void b(int const)", "void c(const int)" and "void e(int const) {}". It does not match d as there is no top-level const on the parameter type "const int *".
Definition at line 6583 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isInteger | |||
) |
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isSignedInteger | |||
) |
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isUnsignedInteger | |||
) |
Matches QualType nodes that are of unsigned integer type.
Given
functionDecl(hasAnyParameter(hasType(isUnsignedInteger()))) matches "b(unsigned long)", but not "a(int)" and "c(double)".
Definition at line 6516 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | QualType | , |
isVolatileQualified | |||
) |
Matches QualType nodes that are volatile-qualified, i.e., that include "top-level" volatile.
Given
functionDecl(hasAnyParameter(hasType(isVolatileQualified()))) matches "void b(int volatile)", "void c(volatile int)" and "void e(int volatile) {}". It does not match d as there is no top-level volatile on the parameter type "volatile int *".
Definition at line 6602 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | TagDecl | , |
isClass | |||
) |
clang::ast_matchers::AST_MATCHER | ( | TagDecl | , |
isEnum | |||
) |
clang::ast_matchers::AST_MATCHER | ( | TagDecl | , |
isStruct | |||
) |
clang::ast_matchers::AST_MATCHER | ( | TagDecl | , |
isUnion | |||
) |
clang::ast_matchers::AST_MATCHER | ( | TemplateArgument | , |
isIntegral | |||
) |
Matches a TemplateArgument that is an integral value.
Given
classTemplateSpecializationDecl( hasAnyTemplateArgument(isIntegral())) matches the implicit instantiation of C in C<42> with isIntegral() matching 42.
Definition at line 1184 of file ASTMatchers.h.
References clang::TemplateArgument::Integral, and Node.
clang::ast_matchers::AST_MATCHER | ( | Type | , |
booleanType | |||
) |
Matches type bool
.
Given
functionDecl(returns(booleanType())) matches "bool func();"
Definition at line 6998 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Type | , |
realFloatingPointType | |||
) |
Matches any real floating-point type (float, double, long double).
Given
realFloatingPointType() matches "float f" but not "int i"
Definition at line 7062 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | Type | , |
voidType | |||
) |
Matches type void
.
Given
functionDecl(returns(voidType())) matches "void func();"
Definition at line 7010 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | UnaryOperator | , |
isPreInc | |||
) |
Definition at line 255 of file UnsafeBufferUsage.cpp.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
hasAutomaticStorageDuration | |||
) |
Matches a variable declaration that has automatic storage duration.
Example matches x, but not y, z, or a. (matcher = varDecl(hasAutomaticStorageDuration())
Definition at line 4439 of file ASTMatchers.h.
References Node, and clang::SD_Automatic.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
hasGlobalStorage | |||
) |
Matches a variable declaration that does not have local storage.
Example matches y and z (matcher = varDecl(hasGlobalStorage())
Definition at line 4423 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
hasLocalStorage | |||
) |
Matches a variable declaration that has function scope and is a non-static local variable.
Example matches x (matcher = varDecl(hasLocalStorage())
Definition at line 4409 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
hasStaticStorageDuration | |||
) |
Matches a variable declaration that has static storage duration.
It includes the variable declared at namespace scope and those declared with "static" and "extern" storage class specifiers.
Definition at line 4459 of file ASTMatchers.h.
References Node, and clang::SD_Static.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
hasThreadStorageDuration | |||
) |
Matches a variable declaration that has thread storage duration.
Example matches z, but not x, z, or a. (matcher = varDecl(hasThreadStorageDuration())
Definition at line 4475 of file ASTMatchers.h.
References Node, and clang::SD_Thread.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
isConstinit | |||
) |
Matches constinit variable declarations.
Given:
varDecl(isConstinit()) matches the declaration of foo
and bar
, but not baz
and xyz
.
Definition at line 5563 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
isExceptionVariable | |||
) |
Matches a variable declaration that is an exception variable from a C++ catch block, or an Objective-C @catch statement.
Example matches x (matcher = varDecl(isExceptionVariable())
Definition at line 4490 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
isInitCapture | |||
) |
Matches a variable serving as the implicit variable for a lambda init- capture.
Example matches x (matcher = varDecl(isInitCapture()))
Definition at line 4352 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
isStaticLocal | |||
) |
Matches a static variable with local scope.
Example matches y (matcher = varDecl(isStaticLocal()))
Definition at line 4394 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_FUNCTION | ( | internal::Matcher< Decl > | , |
isInstantiated | |||
) |
Matches declarations that are template instantiations or are inside template instantiations.
Given
functionDecl(isInstantiated()) matches 'A(int) {...};' and 'A(unsigned) {...}'.
Definition at line 6751 of file ASTMatchers.h.
References anyOf, cxxRecordDecl, decl, functionDecl, hasAncestor, and clang::isTemplateInstantiation().
clang::ast_matchers::AST_MATCHER_FUNCTION | ( | internal::Matcher< Expr > | , |
nullPointerConstant | |||
) |
Matches expressions that resolve to a null pointer constant, such as GNU's __null, C++11's nullptr, or C's NULL macro.
Given:
expr(nullPointerConstant()) matches the initializer for v1, v2, v3, cp, and ip. Does not match the initializer for i.
Definition at line 8218 of file ASTMatchers.h.
References anyOf, cxxNullPtrLiteralExpr, equals(), expr, gnuNullExpr, hasParent, integerLiteral, and pointerType.
clang::ast_matchers::AST_MATCHER_FUNCTION | ( | internal::Matcher< Stmt > | , |
isInTemplateInstantiation | |||
) |
Matches statements inside of a template instantiation.
Given
declStmt(isInTemplateInstantiation()) matches 'int i;' and 'unsigned i'. unless(stmt(isInTemplateInstantiation())) will NOT match j += 42; as it's shared between the template definition and instantiation.
Definition at line 6771 of file ASTMatchers.h.
References anyOf, cxxRecordDecl, decl, functionDecl, hasAncestor, clang::isTemplateInstantiation(), and stmt.
clang::ast_matchers::AST_MATCHER_FUNCTION_P_OVERLOAD | ( | internal::BindableMatcher< NestedNameSpecifierLoc > | , |
loc | , | ||
internal::Matcher< NestedNameSpecifier > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Matches NestedNameSpecifierLocs
for which the given inner NestedNameSpecifier-matcher matches.
Definition at line 7733 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_FUNCTION_P_OVERLOAD | ( | internal::BindableMatcher< TypeLoc > | , |
loc | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | , | ||
0 | |||
) |
Matches TypeLocs
for which the given inner QualType-matcher matches.
Definition at line 6797 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | AbstractConditionalOperator | , |
hasFalseExpression | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the false branch expression of a conditional operator (binary or ternary).
Example matches b
Definition at line 6184 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | AbstractConditionalOperator | , |
hasTrueExpression | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the true branch expression of a conditional operator.
Example 1 (conditional ternary operator): matches a
Example 2 (conditional binary operator): matches opaqueValueExpr(condition)
Definition at line 6169 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ArraySubscriptExpr | , |
hasBase | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the base expression of an array subscript expression.
Given
arraySubscriptExpression(hasBase(implicitCastExpr( hasSourceExpression(declRefExpr())))) matches i
[1] with the declRefExpr()
matching i
Definition at line 5718 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ArraySubscriptExpr | , |
hasIndex | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the index expression of an array subscript expression.
Given
arraySubscriptExpression(hasIndex(integerLiteral())) matches i
[1] with the integerLiteral()
matching 1
Definition at line 5701 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | BaseUsingDecl | , |
hasAnyUsingShadowDecl | , | ||
internal::Matcher< UsingShadowDecl > | , | ||
InnerMatcher | |||
) |
Matches any using shadow declaration.
Given
usingDecl(hasAnyUsingShadowDecl(hasName("b")))) matches
Definition at line 6679 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | BindingDecl | , |
forDecomposition | , | ||
internal::Matcher< ValueDecl > | , | ||
InnerMatcher | |||
) |
Matches the DecompositionDecl the binding belongs to.
For example, in:
The matcher:
matches 'f' in 'auto &[f, s, t]'.
Definition at line 8242 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CaseStmt | , |
hasCaseConstant | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
If the given case statement does not use the GNU case range extension, matches the constant given in the statement.
Given
caseStmt(hasCaseConstant(integerLiteral())) matches "case 1:"
Definition at line 8152 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CastExpr | , |
castSubExpr | , | ||
internal::Matcher< Expr > | , | ||
innerMatcher | |||
) |
Definition at line 250 of file UnsafeBufferUsage.cpp.
References Node.
Matches casts that has a given cast kind.
Example: matches the implicit cast around 0
(matcher = castExpr(hasCastKind(CK_NullToPointer)))
If the matcher is use from clang-query, CastKind parameter should be passed as a quoted string. e.g., hasCastKind("CK_NullToPointer").
Definition at line 6085 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | ClassTemplateSpecializationDecl | , |
hasSpecializedTemplate | , | ||
internal::Matcher< ClassTemplateDecl > | , | ||
InnerMatcher | |||
) |
Matches the specialized template of a specialization declaration.
Given
classTemplateSpecializationDecl(hasSpecializedTemplate(classTemplateDecl())) matches '#2' with classTemplateDecl() matching the class template declaration of 'A' at #1.
Definition at line 752 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CompoundStmt | , |
statementCountIs | , | ||
unsigned | , | ||
N | |||
) |
Checks that a compound statement contains a specific number of child statements.
Example: Given
compoundStmt(statementCountIs(0))) matches '{}' but does not match the outer compound statement.
Definition at line 5816 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXConstructorDecl | , |
forEachConstructorInitializer | , | ||
internal::Matcher< CXXCtorInitializer > | , | ||
InnerMatcher | |||
) |
Matches each constructor initializer in a constructor definition.
Given
cxxConstructorDecl(forEachConstructorInitializer( forField(decl().bind("x")) )) will trigger two matches, binding for 'i' and 'j' respectively.
Definition at line 7915 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | CXXConstructorDecl | , |
hasAnyConstructorInitializer | , | ||
internal::Matcher< CXXCtorInitializer > | , | ||
InnerMatcher | |||
) |
Matches a constructor initializer.
Given
cxxRecordDecl(has(cxxConstructorDecl( hasAnyConstructorInitializer(anything()) ))) record matches Foo, hasAnyConstructorInitializer matches foo_(1)
Definition at line 4766 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXCtorInitializer | , |
forField | , | ||
internal::Matcher< FieldDecl > | , | ||
InnerMatcher | |||
) |
Matches the field declaration of a constructor initializer.
Given
cxxRecordDecl(has(cxxConstructorDecl(hasAnyConstructorInitializer( forField(hasName("foo_")))))) matches Foo with forField matching foo_
Definition at line 4788 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXCtorInitializer | , |
withInitializer | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the initializer expression of a constructor initializer.
Given
cxxRecordDecl(has(cxxConstructorDecl(hasAnyConstructorInitializer( withInitializer(integerLiteral(equals(1))))))) matches Foo with withInitializer matching (1)
Definition at line 4808 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXDependentScopeMemberExpr | , |
hasMemberName | , | ||
std::string | , | ||
N | |||
) |
Matches template-dependent, but known, member names.
In template declarations, dependent members are not resolved and so can not be matched to particular named declarations.
This matcher allows to match on the known name of members.
Given
cxxDependentScopeMemberExpr
(hasMemberName("mem")) matches s.mem()
Definition at line 3185 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXDependentScopeMemberExpr | , |
memberHasSameNameAsBoundNode | , | ||
std::string | , | ||
BindingID | |||
) |
Matches template-dependent, but known, member names against an already-bound node.
In template declarations, dependent members are not resolved and so can not be matched to particular named declarations.
This matcher allows to match on the name of already-bound VarDecl, FieldDecl and CXXMethodDecl nodes.
Given
The matcher
first matches and binds the mem
member of the S
template, then compares its name to the usage in s.mem()
in the x
function template
Definition at line 3223 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | CXXFoldExpr | , |
hasFoldInit | , | ||
internal::Matcher< Expr > | , | ||
InnerMacher | |||
) |
Matches the operand that does not contain the parameter pack.
Example matches (0 + ... + args)
and (args * ... * 1)
(matcher = cxxFoldExpr(hasFoldInit(expr()))) with hasFoldInit(...) matching 0
and 1
respectively
Definition at line 4583 of file ASTMatchers.h.
References clang::Init, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXFoldExpr | , |
hasPattern | , | ||
internal::Matcher< Expr > | , | ||
InnerMacher | |||
) |
Matches the operand that contains the parameter pack.
Example matches (0 + ... + args)
(matcher = cxxFoldExpr(hasPattern(expr()))) with hasPattern(...) matching args
Definition at line 4605 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXForRangeStmt | , |
hasLoopVariable | , | ||
internal::Matcher< VarDecl > | , | ||
InnerMatcher | |||
) |
Matches the initialization statement of a for loop.
Example: forStmt(hasLoopVariable(anything())) matches 'int x' in
Definition at line 2203 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXForRangeStmt | , |
hasRangeInit | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the range initialization statement of a for loop.
Example: forStmt(hasRangeInit(anything())) matches 'a' in
Definition at line 2217 of file ASTMatchers.h.
References clang::Init, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXMemberCallExpr | , |
on | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches on the implicit object argument of a member call expression, after stripping off any parentheses or implicit casts.
Given
cxxMemberCallExpr(on(hasType(cxxRecordDecl(hasName("Y"))))) matches y.m()
and (g()).m()
. cxxMemberCallExpr(on(hasType(cxxRecordDecl(hasName("X"))))) matches x.m()
. cxxMemberCallExpr(on(callExpr())) matches (g()).m()
.
FIXME: Overload to allow directly matching types?
Definition at line 3697 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXMemberCallExpr | , |
onImplicitObjectArgument | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches on the implicit object argument of a member call expression.
Unlike on
, matches the argument directly without stripping away anything.
Given
cxxMemberCallExpr(onImplicitObjectArgument(hasType( cxxRecordDecl(hasName("Y"))))) matches y.m()
, x.m()
and (g()).m(), but not x.g()
. cxxMemberCallExpr(on(callExpr())) does not match (g()).m()
, because the parens are not ignored.
FIXME: Overload to allow directly matching types?
Definition at line 4205 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXMethodDecl | , |
forEachOverridden | , | ||
internal::Matcher< CXXMethodDecl > | , | ||
InnerMatcher | |||
) |
Matches each method overridden by the given method.
This matcher may produce multiple matches.
Given
cxxMethodDecl(ofClass(hasName("C")), forEachOverridden(cxxMethodDecl().bind("b"))).bind("d") matches once, with "b" binding "A::f" and "d" binding "C::f" (Note that B::f is not overridden by C::f).
The check can produce multiple matches in case of multiple inheritance, e.g.
cxxMethodDecl(ofClass(hasName("C")), forEachOverridden(cxxMethodDecl().bind("b"))).bind("d") matches twice, once with "b" binding "A1::f" and "d" binding "C::f", and once with "b" binding "A2::f" and "d" binding "C::f".
Definition at line 6283 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | CXXMethodDecl | , |
ofClass | , | ||
internal::Matcher< CXXRecordDecl > | , | ||
InnerMatcher | |||
) |
Matches the class declaration that the given method declaration belongs to.
FIXME: Generalize this for other kinds of declarations. FIXME: What other kind of declarations would we need to generalize this to?
Example matches A() in the last line (matcher = cxxConstructExpr(hasDeclaration(cxxMethodDecl( ofClass(hasName("A"))))))
Definition at line 6249 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | CXXNewExpr | , |
hasAnyPlacementArg | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches any placement new expression arguments.
Given:
cxxNewExpr(hasAnyPlacementArg(anything())) matches the expression 'new (Storage, 16) MyClass()'.
Definition at line 8488 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXNewExpr | , |
hasArraySize | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches array new expressions with a given array size.
Given:
cxxNewExpr(hasArraySize(integerLiteral(equals(10)))) matches the expression 'new MyClass[10]'.
Definition at line 8503 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXRecordDecl | , |
hasAnyBase | , | ||
internal::Matcher< CXXBaseSpecifier > | , | ||
BaseSpecMatcher | |||
) |
Matches C++ classes that have a direct or indirect base matching BaseSpecMatcher
.
Example: matcher hasAnyBase(hasType(cxxRecordDecl(hasName("SpecialBase"))))
Definition at line 3315 of file ASTMatchers.h.
References clang::ast_matchers::internal::matchesAnyBase(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXRecordDecl | , |
hasDirectBase | , | ||
internal::Matcher< CXXBaseSpecifier > | , | ||
BaseSpecMatcher | |||
) |
Matches C++ classes that have a direct base matching BaseSpecMatcher
.
Example: matcher hasDirectBase(hasType(cxxRecordDecl(hasName("SpecialBase"))))
Definition at line 3332 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | CXXRecordDecl | , |
hasMethod | , | ||
internal::Matcher< CXXMethodDecl > | , | ||
InnerMatcher | |||
) |
Matches the first method of a class or struct that satisfies InnerMatcher
.
Given:
cxxRecordDecl
(hasMethod(hasName("func"))) matches the declaration of A
but not B
.
Definition at line 3434 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | DecayedType | , |
hasDecayedType | , | ||
internal::Matcher< QualType > | , | ||
InnerType | |||
) |
Matches the decayed type, whoes decayed type matches InnerMatcher
.
Definition at line 7686 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Decl | , |
hasAttr | , | ||
attr::Kind | , | ||
AttrKind | |||
) |
Matches declaration that has a given attribute.
Given
decl(hasAttr(clang::attr::CUDADevice)) matches the function declaration of f. If the matcher is used from clang-query, attr::Kind parameter should be passed as a quoted string. e.g., hasAttr("attr::CUDADevice").
Definition at line 8169 of file ASTMatchers.h.
References clang::Attr::getKind(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | Decl | , |
hasDeclContext | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches declarations whose declaration context, interpreted as a Decl, matches InnerMatcher
.
Given
cxxRcordDecl
(hasDeclContext(namedDecl(hasName("M")))) matches the declaration of class
D
.
Definition at line 7705 of file ASTMatchers.h.
References clang::Decl::castFromDeclContext(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | DeclRefExpr | , |
to | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches a DeclRefExpr that refers to a declaration that matches the specified matcher.
Example matches x in if(x) (matcher = declRefExpr(to(varDecl(hasName("x")))))
Definition at line 4252 of file ASTMatchers.h.
References Node.
Matches declaration statements that contain a specific number of declarations.
Example: Given
declCountIs(2) matches 'int a, b;' and 'int d = 2, e;', but not 'int c;'.
Definition at line 4703 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | DecompositionDecl | , |
hasAnyBinding | , | ||
internal::Matcher< BindingDecl > | , | ||
InnerMatcher | |||
) |
Matches any binding of a DecompositionDecl.
For example, in:
The matcher:
matches the decomposition decl with 'f' bound to "fBinding".
Definition at line 8291 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | DesignatedInitExpr | , |
designatorCountIs | , | ||
unsigned | , | ||
N | |||
) |
Matches designated initializer expressions that contain a specific number of designators.
Example: Given
designatorCountIs(2) matches '{ [2].y = 1.0, [0].x = 1.0 }', but not '{ [2].y = 1.0, [2].x = 0.0, [0].x = 1.0 }'.
Definition at line 2786 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ElaboratedType | , |
hasQualifier | , | ||
internal::Matcher< NestedNameSpecifier > | , | ||
InnerMatcher | |||
) |
Matches ElaboratedTypes whose qualifier, a NestedNameSpecifier, matches InnerMatcher
if the qualifier exists.
Given
elaboratedType
(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))) matches the type of the variable declaration of d
.
Definition at line 7581 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ElaboratedType | , |
namesType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches ElaboratedTypes whose named type matches InnerMatcher
.
Given
elaboratedType
(namesType(recordType( hasDeclaration(namedDecl(hasName("D")))))) matches the type of the variable declaration of d
.
Definition at line 7604 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ElaboratedTypeLoc | , |
hasNamedTypeLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
InnerMatcher | |||
) |
clang::ast_matchers::AST_MATCHER_P | ( | ExplicitCastExpr | , |
hasDestinationType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches casts whose destination type matches a given matcher.
(Note: Clang's AST refers to other conversions as "casts" too, and calls actual casts "explicit" casts.)
Definition at line 6093 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Expr | , |
ignoringElidableConstructorCall | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches expressions that match InnerMatcher that are possibly wrapped in an elidable constructor and other corresponding bookkeeping nodes.
In C++17, elidable copy constructors are no longer being generated in the AST as it is not permitted by the standard. They are, however, part of the AST in C++14 and earlier. So, a matcher must abstract over these differences to work in all language modes. This matcher skips elidable constructor-call AST nodes, ExprWithCleanups
nodes wrapping elidable constructor-calls and various implicit nodes inside the constructor calls, all of which will not appear in the C++17 AST.
Given
varDecl(hasInitializer(ignoringElidableConstructorCall(callExpr())))
matches H D = G()
in C++11 through C++17 (and beyond).
Definition at line 8566 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | Expr | , |
ignoringImpCasts | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches expressions that match InnerMatcher after any implicit casts are stripped off.
Parentheses and explicit casts are not discarded. Given
The matchers
would match the declarations for a, b, c, and d, but not e. While
only match the declarations for a.
Definition at line 923 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Expr | , |
ignoringImplicit | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches expressions that match InnerMatcher after any implicit AST nodes are stripped off.
Parentheses and explicit casts are not discarded. Given
The matchers
would match the declarations for a, b, and c. While
only match the declarations for b and c.
Definition at line 893 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Expr | , |
ignoringParenCasts | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches expressions that match InnerMatcher after parentheses and casts are stripped off.
Implicit and non-C Style casts are also discarded. Given
The matcher varDecl(hasInitializer(ignoringParenCasts(integerLiteral()))) would match the declarations for a, b, c, and d. while varDecl(hasInitializer(integerLiteral())) only match the declaration for a.
Definition at line 945 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Expr | , |
ignoringParenImpCasts | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches expressions that match InnerMatcher after implicit casts and parentheses are stripped off.
Explicit casts are not discarded. Given
The matchers varDecl(hasInitializer(ignoringParenImpCasts(integerLiteral()))) varDecl(hasInitializer(ignoringParenImpCasts(declRefExpr()))) would match the declarations for a, b, c, and d, but not e. while varDecl(hasInitializer(integerLiteral())) varDecl(hasInitializer(declRefExpr())) would only match the declaration for a.
Definition at line 970 of file ASTMatchers.h.
References Node.
Matches non-static data members that are bit-fields of the specified bit width.
Given
fieldDecl(hasBitWidth(2)) matches 'int a;' and 'int c;' but not 'int b;'.
Definition at line 710 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | FieldDecl | , |
hasInClassInitializer | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches non-static data members that have an in-class initializer.
Given
fieldDecl(hasInClassInitializer(integerLiteral(equals(2)))) matches 'int a;' but not 'int b;'. fieldDecl(hasInClassInitializer(anything())) matches 'int a;' and 'int b;' but not 'int c;'.
Definition at line 729 of file ASTMatchers.h.
References clang::Initializer, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | ForStmt | , |
hasIncrement | , | ||
internal::Matcher< Stmt > | , | ||
InnerMatcher | |||
) |
Matches the increment statement of a for loop.
Example: forStmt(hasIncrement(unaryOperator(hasOperatorName("++")))) matches '++x' in
Definition at line 2164 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ForStmt | , |
hasLoopInit | , | ||
internal::Matcher< Stmt > | , | ||
InnerMatcher | |||
) |
Matches the initialization statement of a for loop.
Example: forStmt(hasLoopInit(declStmt())) matches 'int x = 0' in
Definition at line 2179 of file ASTMatchers.h.
References clang::Init, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | FunctionDecl | , |
hasAnyBody | , | ||
internal::Matcher< Stmt > | , | ||
InnerMatcher | |||
) |
Matches a function declaration that has a given body present in the AST.
Note that this matcher matches all the declarations of a function whose body is present in the AST.
Given
functionDecl(hasAnyBody(compoundStmt())) matches both 'void f();' and 'void f() {}' with compoundStmt() matching '{}' but does not match 'void g();'
Definition at line 5777 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | FunctionDecl | , |
hasExplicitSpecifier | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the expression in an explicit specifier if present in the given declaration.
Given
cxxConstructorDecl(hasExplicitSpecifier(constantExpr())) will match #7, #8 and #9, but not #1 or #2. cxxConversionDecl(hasExplicitSpecifier(constantExpr())) will not match #3 or #4. cxxDeductionGuideDecl(hasExplicitSpecifier(constantExpr())) will not match #5 or #6.
Definition at line 8043 of file ASTMatchers.h.
References clang::ExplicitSpecifier::getExpr(), clang::ExplicitSpecifier::getFromDecl(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | FunctionDecl | , |
hasReturnTypeLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
ReturnMatcher | |||
) |
Matches a function declared with the specified return TypeLoc
.
Given
functionDecl(hasReturnTypeLoc(loc(asString("int")))) matches the declaration of f
, but not g
.
Definition at line 6838 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | FunctionDecl | , |
returns | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches the return type of a function declaration.
Given:
cxxMethodDecl(returns(asString("int"))) matches int f() { return 1; }
Definition at line 5376 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | IfStmt | , |
hasConditionVariableStatement | , | ||
internal::Matcher< DeclStmt > | , | ||
InnerMatcher | |||
) |
Matches the condition variable statement in an if statement.
Given
hasConditionVariableStatement(...) matches 'A* a = GetAPointer()'.
Definition at line 5684 of file ASTMatchers.h.
References Node.
Matches the else-statement of an if statement.
Examples matches the if statement (matcher = ifStmt(hasElse(cxxBoolLiteral(equals(true)))))
Definition at line 5634 of file ASTMatchers.h.
References Node.
Matches the then-statement of an if statement.
Examples matches the if statement (matcher = ifStmt(hasThen(cxxBoolLiteral(equals(true)))))
Definition at line 5622 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ImplicitCastExpr | , |
hasImplicitDestinationType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches implicit casts whose destination type matches a given matcher.
Definition at line 6101 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | InitListExpr | , |
hasSyntacticForm | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the syntactic form of init list expressions (if expression have it).
Definition at line 1705 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | LambdaCapture | , |
capturesVar | , | ||
internal::Matcher< ValueDecl > | , | ||
InnerMatcher | |||
) |
Matches a LambdaCapture
that refers to the specified VarDecl
.
The VarDecl
can be a separate variable that is captured by value or reference, or a synthesized variable if the capture has an initializer.
Given
In the matcher lambdaExpr(hasAnyCapture(lambdaCapture(capturesVar(hasName("x")))), capturesVar(hasName("x")) matches x
and x = 1
.
Definition at line 4962 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | LambdaExpr | , |
forEachLambdaCapture | , | ||
internal::Matcher< LambdaCapture > | , | ||
InnerMatcher | |||
) |
Matches each lambda capture in a lambda expression.
Given
lambdaExpr(forEachLambdaCapture( lambdaCapture(capturesVar(varDecl(hasType(isInteger())))))) will trigger two matches, binding for 'x' and 'y' respectively.
Definition at line 4367 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | LambdaExpr | , |
hasAnyCapture | , | ||
internal::Matcher< LambdaCapture > | , | ||
InnerMatcher | |||
) |
Matches any capture in a lambda expression.
Given
lambdaExpr(hasAnyCapture(lambdaCapture())) and lambdaExpr(hasAnyCapture(lambdaCapture(refersToVarDecl(hasName("t"))))) both match [=](){ return t; }
.
Definition at line 4935 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | MemberExpr | , |
member | , | ||
internal::Matcher< ValueDecl > | , | ||
InnerMatcher | |||
) |
Matches a member expression where the member is matched by a given matcher.
Given
memberExpr(member(hasName("first"))) matches second.first but not first.second (because the member name there is "second").
Definition at line 6635 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | NamedDecl | , |
hasUnderlyingDecl | , | ||
internal::Matcher< NamedDecl > | , | ||
InnerMatcher | |||
) |
Matches a NamedDecl
whose underlying declaration matches the given matcher.
Given
unresolvedLookupExpr
(hasAnyDeclaration( namedDecl(hasUnderlyingDecl(hasName("::N::f"))))) matches the use of f
in g()
.
Definition at line 3671 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | NestedNameSpecifier | , |
specifiesNamespace | , | ||
internal::Matcher< NamespaceDecl > | , | ||
InnerMatcher | |||
) |
Matches nested name specifiers that specify a namespace matching the given namespace matcher.
Given
nestedNameSpecifier(specifiesNamespace(hasName("ns"))) matches "ns::"
Definition at line 7823 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | NestedNameSpecifier | , |
specifiesType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches nested name specifiers that specify a type matching the given QualType
matcher without qualifiers.
Given
nestedNameSpecifier(specifiesType( hasDeclaration(cxxRecordDecl(hasName("A"))) )) matches "A::"
Definition at line 7753 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | NestedNameSpecifierLoc | , |
specifiesTypeLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
InnerMatcher | |||
) |
Matches nested name specifier locs that specify a type matching the given TypeLoc
.
Given
nestedNameSpecifierLoc(specifiesTypeLoc(loc(type( hasDeclaration(cxxRecordDecl(hasName("A"))))))) matches "A::"
Definition at line 7771 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
hasAnySelectorMatcher | , | ||
std::vector< std::string > | , | ||
Matches | |||
) |
Definition at line 45 of file ASTMatchersInternal.cpp.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
hasReceiver | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches if the Objective-C message is sent to an instance, and the inner matcher matches on that instance.
For example the method call in
is matched by objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
Definition at line 3798 of file ASTMatchers.h.
References clang::Expr::IgnoreParenImpCasts(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
hasReceiverType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches on the receiver of an ObjectiveC Message expression.
Example matcher = objCMessageExpr(hasReceiverType(asString("UIWebView *"))); matches the [webView ...] message invocation.
Definition at line 3716 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
hasSelector | , | ||
std::string | , | ||
BaseName | |||
) |
Matches when BaseName == Selector.getAsString()
matcher = objCMessageExpr(hasSelector("loadHTMLString:baseURL:")); matches the outer message expr in the code below, but NOT the message invocation for self.bodyView.
Definition at line 3814 of file ASTMatchers.h.
References clang::Selector::getAsString(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
numSelectorArgs | , | ||
unsigned | , | ||
N | |||
) |
Matches when the selector has the specified number of arguments.
matcher = objCMessageExpr(numSelectorArgs(0)); matches self.bodyView in the code below
matcher = objCMessageExpr(numSelectorArgs(2)); matches the invocation of "loadHTMLString:baseURL:" but not that of self.bodyView
Definition at line 3893 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | OMPExecutableDirective | , |
hasAnyClause | , | ||
internal::Matcher< OMPClause > | , | ||
InnerMatcher | |||
) |
Matches any clause in an OpenMP directive.
Given
ompExecutableDirective(hasAnyClause(anything()))
matches omp parallel default(none)
.
Definition at line 8658 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | OMPExecutableDirective | , |
hasStructuredBlock | , | ||
internal::Matcher< Stmt > | , | ||
InnerMatcher | |||
) |
Matches the structured-block of the OpenMP executable directive.
Prerequisite: the executable directive must not be standalone directive. If it is, it will never match.
Given
ompExecutableDirective(hasStructuredBlock(nullStmt()))
will match ;
Definition at line 8640 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | OMPExecutableDirective | , |
isAllowedToContainClauseKind | , | ||
OpenMPClauseKind | , | ||
CKind | |||
) |
Matches if the OpenMP directive is allowed to contain the specified OpenMP clause kind.
Given
ompExecutableDirective(isAllowedToContainClause(OMPC_default))
matches
omp parallel
and
omp parallel for
`.
If the matcher is use from clang-query, OpenMPClauseKind
parameter should be passed as a quoted string. e.g., isAllowedToContainClauseKind("OMPC_default").
Definition at line 8772 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | OverloadExpr | , |
hasAnyDeclaration | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches an OverloadExpr
if any of the declarations in the set of overloads matches the given matcher.
Given
unresolvedLookupExpr(hasAnyDeclaration( functionTemplateDecl(hasName("foo")))) matches foo
in foo(t)
; but not bar
in bar(t)
;
Definition at line 4305 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ParmVarDecl | , |
isAtPosition | , | ||
unsigned | , | ||
N | |||
) |
Matches the ParmVarDecl nodes that are at the N'th position in the parameter list.
The parameter list could be that of either a block, function, or objc-method.
Given
parmVarDecl(isAtPosition(0))
matches int a
.
parmVarDecl(isAtPosition(1))
matches int b
.
Definition at line 5228 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | PointerTypeLoc | , |
hasPointeeLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
PointeeMatcher | |||
) |
Matches pointer TypeLoc
s that have a pointee TypeLoc
matching PointeeMatcher
.
Given
pointerTypeLoc(hasPointeeLoc(loc(asString("int")))) matches int*
.
Definition at line 6864 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | QualifiedTypeLoc | , |
hasUnqualifiedLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
InnerMatcher | |||
) |
Matches QualifiedTypeLoc
s that have an unqualified TypeLoc
matching InnerMatcher
.
Given
qualifiedTypeLoc(hasUnqualifiedLoc(pointerTypeLoc())) matches the TypeLoc
of the variable declaration of x
, but not y
.
Definition at line 6824 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | QualType | , |
asString | , | ||
std::string | , | ||
Name | |||
) |
Matches if the matched type is represented by the given string.
Given
cxxMemberCallExpr(on(hasType(asString("class Y *")))) matches y->x()
Definition at line 4099 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | QualType | , |
hasCanonicalType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches QualTypes whose canonical type matches InnerMatcher.
Given:
varDecl
(hasType(qualType(referenceType()))))) will not match the declaration of b but varDecl
(hasType(qualType(hasCanonicalType(referenceType())))))) does.
Definition at line 4174 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | QualType | , |
pointsTo | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches if the matched type is a pointer type and the pointee type matches the specified matcher.
Example matches y->x() (matcher = cxxMemberCallExpr(on(hasType(pointsTo cxxRecordDecl(hasName("Y")))))))
Definition at line 4113 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | QualType | , |
references | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches if the matched type is a reference type and the referenced type matches the specified matcher.
Example matches X &x and const X &y (matcher = varDecl(hasType(references(cxxRecordDecl(hasName("X"))))))
Definition at line 4156 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ReferenceTypeLoc | , |
hasReferentLoc | , | ||
internal::Matcher< TypeLoc > | , | ||
ReferentMatcher | |||
) |
Matches reference TypeLoc
s that have a referent TypeLoc
matching ReferentMatcher
.
Given
referenceTypeLoc(hasReferentLoc(loc(asString("int")))) matches int&
.
Definition at line 6892 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | ReturnStmt | , |
hasReturnValue | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the return value expression of a return statement.
Given
hasReturnValue(binaryOperator()) matches 'return a + b' with binaryOperator() matching 'a + b'
Definition at line 8187 of file ASTMatchers.h.
References Node, and RetValue().
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
forCallable | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches declaration of the function, method, or block the statement belongs to.
Given:
returnStmt(forCallable(functionDecl(hasName("operator=")))) matches 'return *this' but does not match 'return v > 0'
Given:
declStmt(forCallable(objcMethodDecl())) matches 'int x = 1' but does not match 'int y = 2'. whereas declStmt(forCallable(blockDecl())) matches 'int y = 2' but does not match 'int x = 1'.
Definition at line 8366 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
forEachDescendantEvaluatedStmt | , | ||
internal::Matcher< Stmt > | , | ||
innerMatcher | |||
) |
Definition at line 221 of file UnsafeBufferUsage.cpp.
References clang::DynTypedNode::create(), clang::ast_matchers::MatchDescendantVisitor::findMatch(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
forEachDescendantStmt | , | ||
internal::Matcher< Stmt > | , | ||
innerMatcher | |||
) |
Definition at line 230 of file UnsafeBufferUsage.cpp.
References clang::DynTypedNode::create(), clang::ast_matchers::MatchDescendantVisitor::findMatch(), and Node.
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
forFunction | , | ||
internal::Matcher< FunctionDecl > | , | ||
InnerMatcher | |||
) |
Matches declaration of the function the statement belongs to.
Deprecated. Use forCallable() to correctly handle the situation when the declaration is not a function (but a block or an Objective-C method). forFunction() not only fails to take non-functions into account but also may match the wrong declaration in their presence.
Given:
returnStmt(forFunction(hasName("operator="))) matches 'return *this' but does not match 'return v > 0'
Definition at line 8315 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
ignoreUnsafeBufferInContainer | , | ||
const UnsafeBufferUsageHandler * | , | ||
Handler | |||
) |
Definition at line 245 of file UnsafeBufferUsage.cpp.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | Stmt | , |
notInSafeBufferOptOut | , | ||
const UnsafeBufferUsageHandler * | , | ||
Handler | |||
) |
Definition at line 240 of file UnsafeBufferUsage.cpp.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | StringLiteral | , |
mentionsBoundType | , | ||
std::string | , | ||
BindingID | |||
) |
Definition at line 39 of file OSObjectCStyleCast.cpp.
clang::ast_matchers::AST_MATCHER_P | ( | SwitchStmt | , |
forEachSwitchCase | , | ||
internal::Matcher< SwitchCase > | , | ||
InnerMatcher | |||
) |
Matches each case or default statement belonging to the given switch statement.
This matcher may produce multiple matches.
Given
switchStmt(forEachSwitchCase(caseStmt().bind("c"))).bind("s") matches four times, with "c" binding each of "case 1:", "case 2:", "case 3:" and "case 4:", and "s" respectively binding "switch (1)", "switch (1)", "switch (2)" and "switch (2)".
Definition at line 7884 of file ASTMatchers.h.
References Node, and clang::Result.
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
equalsIntegralValue | , | ||
std::string | , | ||
Value | |||
) |
Matches a TemplateArgument of integral type with a given value.
Note that 'Value' is a string as the template argument's value is an arbitrary precision integer. 'Value' must be euqal to the canonical representation of that integral value in base 10.
Given
classTemplateSpecializationDecl( hasAnyTemplateArgument(equalsIntegralValue("42"))) matches the implicit instantiation of C in C<42>.
Definition at line 1219 of file ASTMatchers.h.
References clang::TemplateArgument::Integral, Node, and toString().
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
isExpr | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches a sugar TemplateArgument that refers to a certain expression.
Given
templateSpecializationType(hasAnyTemplateArgument( isExpr(hasDescendant(declRefExpr(to(fieldDecl(hasName("next")))))))) matches the specialization A<&B::next>
with fieldDecl(...)
matching B::next
Definition at line 1167 of file ASTMatchers.h.
References clang::TemplateArgument::Expression, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
refersToDeclaration | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches a canonical TemplateArgument that refers to a certain declaration.
Given
classTemplateSpecializationDecl(hasAnyTemplateArgument( refersToDeclaration(fieldDecl(hasName("next"))))) matches the specialization A<&B::next>
with fieldDecl(...)
matching B::next
Definition at line 1148 of file ASTMatchers.h.
References clang::TemplateArgument::Declaration, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
refersToIntegralType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches a TemplateArgument that refers to an integral type.
Given
classTemplateSpecializationDecl( hasAnyTemplateArgument(refersToIntegralType(asString("int")))) matches the implicit instantiation of C in C<42>.
Definition at line 1198 of file ASTMatchers.h.
References clang::TemplateArgument::Integral, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
refersToTemplate | , | ||
internal::Matcher< TemplateName > | , | ||
InnerMatcher | |||
) |
Matches a TemplateArgument that refers to a certain template.
Given
classTemplateSpecializationDecl(hasAnyTemplateArgument( refersToTemplate(templateName()))) matches the specialization X<Y>
Definition at line 1128 of file ASTMatchers.h.
References Node, and clang::TemplateArgument::Template.
clang::ast_matchers::AST_MATCHER_P | ( | TemplateArgument | , |
refersToType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
Matches a TemplateArgument that refers to a certain type.
Given
classTemplateSpecializationDecl(hasAnyTemplateArgument(refersToType( recordType(hasDeclaration(recordDecl(hasName("X"))))))) matches the specialization of struct
A generated by A<X>
.
Definition at line 1110 of file ASTMatchers.h.
References Node, and clang::TemplateArgument::Type.
clang::ast_matchers::AST_MATCHER_P | ( | Type | , |
hasUnqualifiedDesugaredType | , | ||
internal::Matcher< Type > | , | ||
InnerMatcher | |||
) |
Matches if the matched type matches the unqualified desugared type of the matched node.
For example, in:
The matcher type(hasUnqualifiedDesugaredType(recordType())) matches both B and A.
Definition at line 4137 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | UnaryExprOrTypeTraitExpr | , |
hasArgumentOfType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | |||
) |
clang::ast_matchers::AST_MATCHER_P | ( | UnaryExprOrTypeTraitExpr | , |
ofKind | , | ||
UnaryExprOrTypeTrait | , | ||
Kind | |||
) |
Matches unary expressions of a certain kind.
Given
unaryExprOrTypeTraitExpr(ofKind(UETT_SizeOf)) matches sizeof(x)
If the matcher is use from clang-query, UnaryExprOrTypeTrait parameter should be passed as a quoted string. e.g., ofKind("UETT_SizeOf").
Definition at line 3043 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | UsingShadowDecl | , |
hasTargetDecl | , | ||
internal::Matcher< NamedDecl > | , | ||
InnerMatcher | |||
) |
Matches a using shadow declaration where the target declaration is matched by the given matcher.
Given
usingDecl(hasAnyUsingShadowDecl(hasTargetDecl(functionDecl()))) matches
but not
Definition at line 6698 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P | ( | VarDecl | , |
hasInitializer | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches a variable declaration that has an initializer expression that matches the given matcher.
Example matches x (matcher = varDecl(hasInitializer(callExpr())))
Definition at line 4337 of file ASTMatchers.h.
References clang::Initializer, and Node.
clang::ast_matchers::AST_MATCHER_P | ( | VariableArrayType | , |
hasSizeExpr | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches VariableArrayType
nodes that have a specific size expression.
Given
variableArrayType(hasSizeExpr(ignoringImpCasts(declRefExpr(to( varDecl(hasName("b"))))))) matches "int a[b]"
Definition at line 7186 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P2 | ( | CXXNewExpr | , |
hasPlacementArg | , | ||
unsigned | , | ||
Index | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches placement new expression arguments.
Given:
cxxNewExpr(hasPlacementArg(1, integerLiteral(equals(16)))) matches the expression 'new (Storage, 16) MyClass()'.
Definition at line 8474 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P2 | ( | DeclStmt | , |
containsDeclaration | , | ||
unsigned | , | ||
N | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | |||
) |
Matches the n'th declaration of a declaration statement.
Note that this does not work for global declarations because the AST breaks up multiple-declaration DeclStmt's into multiple single-declaration DeclStmt's. Example: Given non-global declarations
declStmt(containsDeclaration( 0, varDecl(hasInitializer(anything())))) matches only 'int d = 2, e;', and declStmt(containsDeclaration(1, varDecl()))
Definition at line 4726 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P2 | ( | DecompositionDecl | , |
hasBinding | , | ||
unsigned | , | ||
N | , | ||
internal::Matcher< BindingDecl > | , | ||
InnerMatcher | |||
) |
Matches the Nth binding of a DecompositionDecl.
For example, in:
The matcher:
matches the decomposition decl with 'f' bound to "fBinding".
Definition at line 8267 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P2 | ( | InitListExpr | , |
hasInit | , | ||
unsigned | , | ||
N | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | |||
) |
Matches the n'th item of an initializer list expression.
Example matches y. (matcher = initListExpr(hasInit(0, expr())))
Definition at line 4686 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | CXXMemberCallExpr | , |
thisPointerType | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Overloaded to match the type's declaration.
Definition at line 4236 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | CXXMemberCallExpr | , |
thisPointerType | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | , | ||
0 | |||
) |
Matches if the type of the expression's implicit object argument either matches the InnerMatcher, or is a pointer to a type that matches the InnerMatcher.
Given
cxxMemberCallExpr(thisPointerType(hasDeclaration( cxxRecordDecl(hasName("Y"))))) matches y.m()
, p->m()
and x.m()
. cxxMemberCallExpr(thisPointerType(hasDeclaration( cxxRecordDecl(hasName("X"))))) matches x.g()
.
Definition at line 4228 of file ASTMatchers.h.
Overloads for the equalsNode
matcher.
FIXME: Implement for other node types. Matches if a node equals another node.
Decl
has pointer identity in the AST.
Definition at line 7855 of file ASTMatchers.h.
References Node, and clang::Other.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | Expr | , |
ignoringParens | , | ||
internal::Matcher< Expr > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Overload ignoringParens
for Expr
.
Given
The matcher
would match the implicit cast resulting from the assignment.
Definition at line 1002 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | NestedNameSpecifier | , |
hasPrefix | , | ||
internal::Matcher< NestedNameSpecifier > | , | ||
InnerMatcher | , | ||
0 | |||
) |
Matches on the prefix of a NestedNameSpecifier
.
Given
nestedNameSpecifier(hasPrefix(specifiesType(asString("struct A")))) and matches "A::"
Definition at line 7786 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | NestedNameSpecifierLoc | , |
hasPrefix | , | ||
internal::Matcher< NestedNameSpecifierLoc > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Matches on the prefix of a NestedNameSpecifierLoc
.
Given
nestedNameSpecifierLoc(hasPrefix(loc(specifiesType(asString("struct A"))))) matches "A::"
Definition at line 7804 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | QualType | , |
ignoringParens | , | ||
internal::Matcher< QualType > | , | ||
InnerMatcher | , | ||
0 | |||
) |
Matches types that match InnerMatcher after any parens are stripped.
Given
The matcher
would match the declaration for fp.
Definition at line 986 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | QualType | , |
pointsTo | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Overloaded to match the pointee type's declaration.
Definition at line 4121 of file ASTMatchers.h.
References hasDeclaration(), Node, and qualType.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | QualType | , |
references | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | , | ||
1 | |||
) |
Overloaded to match the referenced type's declaration.
Definition at line 4182 of file ASTMatchers.h.
References hasDeclaration(), Node, and qualType.
Matches if a node equals another node.
Stmt
has pointer identity in the AST.
Definition at line 7861 of file ASTMatchers.h.
References Node, and clang::Other.
Matches if a node equals another node.
Type
has pointer identity in the AST.
Definition at line 7867 of file ASTMatchers.h.
References Node, and clang::Other.
clang::ast_matchers::AST_MATCHER_REGEX | ( | NamedDecl | , |
matchesName | , | ||
RegExp | |||
) |
Matches NamedDecl nodes whose fully qualified names contain a substring matched by the given RegExp.
Supports specifying enclosing namespaces or classes by prefixing the name with '<enclosing>::'. Does not match typedefs of an underlying type with the given name.
Example matches X (regexp == "::X")
Example matches X (regexp is one of "::X", "^foo::.*X", among others)
Definition at line 3114 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_MATCHER_REGEX | ( | ObjCMessageExpr | , |
matchesSelector | , | ||
RegExp | |||
) |
Matches ObjC selectors whose name contains a substring matched by the given RegExp.
matcher = objCMessageExpr(matchesSelector("loadHTMLString\:baseURL?")); matches the outer message expr in the code below, but NOT the message invocation for self.bodyView.
Definition at line 3841 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | hasDynamicExceptionSpec | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, FunctionProtoType) | |||
) |
Matches functions that have a dynamic exception specification.
Given:
functionDecl(hasDynamicExceptionSpec()) and functionProtoType(hasDynamicExceptionSpec()) match the declarations of j, k, and l, but not f, g, h, or i.
Definition at line 5473 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isArrow | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(MemberExpr, UnresolvedMemberExpr, CXXDependentScopeMemberExpr) | |||
) |
Matches member expressions that are called with '->' as opposed to '.
'.
Member calls on the implicit this pointer match as called with '->'.
Given
memberExpr(isArrow()) matches this->x, x, y.x, a, this->b cxxDependentScopeMemberExpr(isArrow()) matches this->m unresolvedMemberExpr(isArrow()) matches this->f<T>, f<T>
Definition at line 6486 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isAssignmentOperator | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator) | |||
) |
Matches all kinds of assignment operators.
Example 1: matches a += b (matcher = binaryOperator(isAssignmentOperator()))
Example 2: matches s1 = s2 (matcher = cxxOperatorCallExpr(isAssignmentOperator()))
Definition at line 5938 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isComparisonOperator | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator) | |||
) |
Matches comparison operators.
Example 1: matches a == b (matcher = binaryOperator(isComparisonOperator()))
Example 2: matches s1 < s2 (matcher = cxxOperatorCallExpr(isComparisonOperator()))
Definition at line 5959 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isConsteval | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, IfStmt) | |||
) |
Matches consteval function declarations and if consteval/if ! consteval statements.
Given:
functionDecl(isConsteval()) matches the declaration of "int a()". ifStmt(isConsteval()) matches the if statement in "void b()", "void c()", "void d()".
Definition at line 5525 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isConstexpr | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(VarDecl, FunctionDecl, IfStmt) | |||
) |
Matches constexpr variable and function declarations, and if constexpr.
Given:
varDecl(isConstexpr()) matches the declaration of foo. functionDecl(isConstexpr()) matches the declaration of bar. ifStmt(isConstexpr()) matches the if statement in baz.
Definition at line 5545 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isDefinition | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(TagDecl, VarDecl, ObjCMethodDecl, FunctionDecl) | |||
) |
Matches if a declaration has a body attached.
Example matches A, va, fa
Usable as: Matcher<TagDecl>, Matcher<VarDecl>, Matcher<FunctionDecl>, Matcher<ObjCMethodDecl>
Definition at line 6211 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isExpansionInMainFile | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc) | |||
) |
Matches AST nodes that were expanded within the main-file.
Example matches X but not Y (matcher = cxxRecordDecl(isExpansionInMainFile())
Y.h:
Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
Definition at line 247 of file ASTMatchers.h.
References clang::SourceManager::getExpansionLoc(), clang::SourceManager::isInMainFile(), and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isExpansionInSystemHeader | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc) | |||
) |
Matches AST nodes that were expanded within system-header-files.
Example matches Y but not X (matcher = cxxRecordDecl(isExpansionInSystemHeader())
SystemHeader.h:
Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
Definition at line 268 of file ASTMatchers.h.
References clang::SourceManager::getExpansionLoc(), clang::SourceManager::isInSystemHeader(), and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isExplicit | , |
AST_POLYMORPHIC_SUPPORTED_TYPES( CXXConstructorDecl, CXXConversionDecl, CXXDeductionGuideDecl) | |||
) |
Matches constructor, conversion function, and deduction guide declarations that have an explicit specifier if this explicit specifier is resolved to true.
Given
cxxConstructorDecl(isExplicit()) will match #2 and #8, but not #1, #7 or #9. cxxConversionDecl(isExplicit()) will match #4, but not #3. cxxDeductionGuideDecl(isExplicit()) will match #6, but not #5.
Definition at line 8016 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isExplicitTemplateSpecialization | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl, CXXRecordDecl) | |||
) |
Matches explicit template specializations of function, class, or static member variable template instantiations.
Given
functionDecl(isExplicitTemplateSpecialization()) matches the specialization A<int>().
Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl>
Definition at line 6789 of file ASTMatchers.h.
References Node, and clang::TSK_ExplicitSpecialization.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isExternC | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, VarDecl) | |||
) |
Matches extern "C" function or variable declarations.
Given:
functionDecl(isExternC()) matches the declaration of f and g, but not the declaration of h. varDecl(isExternC()) matches the declaration of x and y, but not the declaration of z.
Definition at line 5396 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isFinal | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, CXXMethodDecl) | |||
) |
Matches if the given method or class declaration is final.
Given:
matches A and C::f, but not B, C, or B::f
Definition at line 6362 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isImplicit | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Attr, LambdaCapture) | |||
) |
Matches an entity that has been implicitly added by the compiler (e.g.
implicit default/copy constructors).
Definition at line 761 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isInline | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(NamespaceDecl, FunctionDecl, VarDecl) | |||
) |
Matches functions, variables and namespace declarations that are marked with the inline keyword.
Given
functionDecl(isInline()) will match ::f(). namespaceDecl(isInline()) will match n::m. varDecl(isInline()) will match Foo;
Definition at line 8069 of file ASTMatchers.h.
References Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isNoThrow | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, FunctionProtoType) | |||
) |
Matches functions that have a non-throwing exception specification.
Given:
functionDecl(isNoThrow()) and functionProtoType(isNoThrow()) match the declarations of g, and h, but not f, i or j.
Definition at line 5493 of file ASTMatchers.h.
References clang::FunctionProtoType::getExceptionSpecType(), clang::FunctionProtoType::isNothrow(), clang::isUnresolvedExceptionSpec(), and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isPrivate | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | |||
) |
Matches private C++ declarations and C++ base specifers that specify private inheritance.
Examples:
Definition at line 676 of file ASTMatchers.h.
References clang::AS_private, and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isProtected | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | |||
) |
Matches protected C++ declarations and C++ base specifers that specify protected inheritance.
Examples:
Definition at line 653 of file ASTMatchers.h.
References clang::AS_protected, and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isPublic | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | |||
) |
Matches public C++ declarations and C++ base specifers that specify public inheritance.
Examples:
Definition at line 631 of file ASTMatchers.h.
References clang::AS_public, and Node.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isStaticStorageClass |