clang 22.0.0git
|
Namespaces | |
namespace | dynamic |
namespace | internal |
Classes | |
class | BoundNodes |
Maps string IDs to AST nodes matched by parts of a matcher. More... | |
class | MatchFinder |
A class to allow finding matches over the Clang AST. More... |
Typedefs | |
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 specifiers that specify public inheritance. | |
AST_POLYMORPHIC_MATCHER (isProtected, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier)) | |
Matches protected C++ declarations and C++ base specifiers that specify protected inheritance. | |
AST_POLYMORPHIC_MATCHER (isPrivate, AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier)) | |
Matches private C++ declarations and C++ base specifiers 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, VarTemplateSpecializationDecl, FunctionDecl, 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 (hasDependentName, AST_POLYMORPHIC_SUPPORTED_TYPES(DependentScopeDeclRefExpr, DependentNameType), std::string, N) | |
Matches the dependent name of a DependentScopeDeclRefExpr or DependentNameType. | |
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, ObjCInterfaceDecl), 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 (OMPExecutableDirective, isAllowedToContainClauseKind, OpenMPClauseKind, CKind) | |
/ Matches each case or default statement belonging to the given switch / statement. | |
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. | |
void | matchEachArgumentWithParamType (const CallExpr &Node, llvm::function_ref< void(QualType, const Expr *)> OnParamAndArg) |
void | matchEachArgumentWithParamType (const CXXConstructExpr &Node, llvm::function_ref< void(QualType, const Expr *)> OnParamAndArg) |
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, ObjCObjectPointerType)) | |
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) |
static const FunctionDecl * | getCallee (const CXXConstructExpr &D) |
static const FunctionDecl * | getCallee (const CallExpr &D) |
template<class ExprNode> | |
static void | matchEachArgumentWithParamTypeImpl (const ExprNode &Node, llvm::function_ref< void(QualType, const Expr *)> OnParamAndArg) |
AST_MATCHER_P (StringLiteral, mentionsBoundType, std::string, BindingID) | |
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, UsingShadowDecl > | usingShadowDecl |
Matches shadow declarations introduced into a scope by a (resolved) using declaration. | |
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, ExportDecl > | exportDecl |
Matches any export declaration. | |
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< Expr, RequiresExpr > | requiresExpr |
Matches concept requirement. | |
const internal::VariadicDynCastAllOfMatcher< Decl, RequiresExprBodyDecl > | requiresExprBodyDecl |
Matches concept requirement body declaration. | |
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, DependentScopeDeclRefExpr > | dependentScopeDeclRefExpr |
Matches expressions that refer to dependent scope 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 eg. | |
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::VariadicDynCastAllOfMatcher< TypeLoc, QualifiedTypeLoc > | qualifiedTypeLoc |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, PointerTypeLoc > | pointerTypeLoc |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, ReferenceTypeLoc > | referenceTypeLoc |
const internal::VariadicDynCastAllOfMatcher< TypeLoc, TemplateSpecializationTypeLoc > | templateSpecializationTypeLoc |
const internal::VariadicFunction< internal::HasOpNameMatcher, StringRef, internal::hasAnyOperatorNameFunc > | hasAnyOperatorName = {} |
const internal::VariadicAllOfMatcher< NestedNameSpecifier > | nestedNameSpecifier |
const internal::VariadicAllOfMatcher< NestedNameSpecifierLoc > | nestedNameSpecifierLoc |
const internal::VariadicAllOfMatcher< Attr > | attr |
const internal::VariadicDynCastAllOfMatcher< Stmt, CUDAKernelCallExpr > | cudaKernelCallExpr |
const AstTypeMatcher< BuiltinType > | builtinType |
const AstTypeMatcher< ArrayType > | arrayType |
const AstTypeMatcher< ComplexType > | complexType |
const AstTypeMatcher< ConstantArrayType > | constantArrayType |
const AstTypeMatcher< DeducedTemplateSpecializationType > | deducedTemplateSpecializationType |
const AstTypeMatcher< DependentSizedArrayType > | dependentSizedArrayType |
const AstTypeMatcher< DependentSizedExtVectorType > | dependentSizedExtVectorType |
const AstTypeMatcher< IncompleteArrayType > | incompleteArrayType |
const AstTypeMatcher< VariableArrayType > | variableArrayType |
const AstTypeMatcher< AtomicType > | atomicType |
const AstTypeMatcher< AutoType > | autoType |
const AstTypeMatcher< DecltypeType > | decltypeType |
const AstTypeMatcher< FunctionType > | functionType |
const AstTypeMatcher< FunctionProtoType > | functionProtoType |
const AstTypeMatcher< ParenType > | parenType |
const AstTypeMatcher< BlockPointerType > | blockPointerType |
const AstTypeMatcher< MacroQualifiedType > | macroQualifiedType |
const AstTypeMatcher< MemberPointerType > | memberPointerType |
const AstTypeMatcher< PointerType > | pointerType |
const AstTypeMatcher< ObjCObjectPointerType > | objcObjectPointerType |
const AstTypeMatcher< ReferenceType > | referenceType |
const AstTypeMatcher< LValueReferenceType > | lValueReferenceType |
const AstTypeMatcher< RValueReferenceType > | rValueReferenceType |
const AstTypeMatcher< TypedefType > | typedefType |
const AstTypeMatcher< EnumType > | enumType |
const AstTypeMatcher< TemplateSpecializationType > | templateSpecializationType |
const AstTypeMatcher< UnaryTransformType > | unaryTransformType |
const AstTypeMatcher< RecordType > | recordType |
const AstTypeMatcher< TagType > | tagType |
const AstTypeMatcher< UsingType > | usingType |
const AstTypeMatcher< SubstTemplateTypeParmType > | substTemplateTypeParmType |
const AstTypeMatcher< TemplateTypeParmType > | templateTypeParmType |
const AstTypeMatcher< InjectedClassNameType > | injectedClassNameType |
const AstTypeMatcher< DecayedType > | decayedType |
const AstTypeMatcher< DependentNameType > | dependentNameType |
const AstTypeMatcher< DependentTemplateSpecializationType > | dependentTemplateSpecializationType |
const internal::VariadicDynCastAllOfMatcher< Stmt, OMPExecutableDirective > | ompExecutableDirective |
const internal::VariadicDynCastAllOfMatcher< OMPClause, OMPDefaultClause > | ompDefaultClause |
using clang::ast_matchers::AttrMatcher = internal::Matcher<Attr> |
Definition at line 156 of file ASTMatchers.h.
using clang::ast_matchers::CXXBaseSpecifierMatcher = internal::Matcher<CXXBaseSpecifier> |
Definition at line 151 of file ASTMatchers.h.
using clang::ast_matchers::CXXCtorInitializerMatcher = internal::Matcher<CXXCtorInitializer> |
Definition at line 152 of file ASTMatchers.h.
using clang::ast_matchers::DeclarationMatcher = internal::Matcher<Decl> |
Types of matchers for the top-level classes in the AST class hierarchy.
Definition at line 145 of file ASTMatchers.h.
using clang::ast_matchers::LambdaCaptureMatcher = internal::Matcher<LambdaCapture> |
Definition at line 155 of file ASTMatchers.h.
using clang::ast_matchers::NestedNameSpecifierLocMatcher = internal::Matcher<NestedNameSpecifierLoc> |
Definition at line 150 of file ASTMatchers.h.
using clang::ast_matchers::NestedNameSpecifierMatcher = internal::Matcher<NestedNameSpecifier> |
Definition at line 149 of file ASTMatchers.h.
using clang::ast_matchers::StatementMatcher = internal::Matcher<Stmt> |
Definition at line 146 of file ASTMatchers.h.
using clang::ast_matchers::TemplateArgumentLocMatcher = internal::Matcher<TemplateArgumentLoc> |
Definition at line 154 of file ASTMatchers.h.
using clang::ast_matchers::TemplateArgumentMatcher = internal::Matcher<TemplateArgument> |
Definition at line 153 of file ASTMatchers.h.
using clang::ast_matchers::TypeLocMatcher = internal::Matcher<TypeLoc> |
Definition at line 148 of file ASTMatchers.h.
using clang::ast_matchers::TypeMatcher = internal::Matcher<QualType> |
Definition at line 147 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 3133 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 173 of file ASTMatchers.h.
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 1552 of file ASTMatchers.h.
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 4862 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER | ( | CXXConstructExpr | , |
isListInitialization | ) |
Matches a constructor call expression which uses list initialization.
Definition at line 5100 of file ASTMatchers.h.
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 5116 of file ASTMatchers.h.
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 4961 of file ASTMatchers.h.
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 4981 of file ASTMatchers.h.
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 4941 of file ASTMatchers.h.
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 4790 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isLeftFold | ) |
Matches left-folding fold expressions.
Example matches (0 + ... + args) (matcher = cxxFoldExpr(isLeftFold()))
Definition at line 4755 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER | ( | CXXFoldExpr | , |
isRightFold | ) |
Matches right-folding fold expressions.
Example matches (args * ... * 1) (matcher = cxxFoldExpr(isRightFold()))
Definition at line 4738 of file ASTMatchers.h.
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 4773 of file ASTMatchers.h.
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 5165 of file ASTMatchers.h.
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 3564 of file ASTMatchers.h.
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 1036 of file ASTMatchers.h.
References clang::Expr::isInstantiationDependent().
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 1052 of file ASTMatchers.h.
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 1063 of file ASTMatchers.h.
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 708 of file ASTMatchers.h.
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 753 of file ASTMatchers.h.
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 5097 of file ASTMatchers.h.
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 3985 of file ASTMatchers.h.
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 3957 of file ASTMatchers.h.
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 3969 of file ASTMatchers.h.
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 3874 of file ASTMatchers.h.
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 3891 of file ASTMatchers.h.
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 3841 of file ASTMatchers.h.
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 3857 of file ASTMatchers.h.
References clang::isInstanceMethod().
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 1206 of file ASTMatchers.h.
References clang::TemplateArgument::Integral.
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 4552 of file ASTMatchers.h.
References 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 4536 of file ASTMatchers.h.
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 4522 of file ASTMatchers.h.
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 4572 of file ASTMatchers.h.
References 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 4588 of file ASTMatchers.h.
References clang::SD_Thread.
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 4603 of file ASTMatchers.h.
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 4465 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER | ( | VarDecl | , |
isStaticLocal | ) |
Matches a static variable with local scope.
Example matches y (matcher = varDecl(isStaticLocal()))
Definition at line 4507 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 767 of file ASTMatchers.h.
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 4879 of file ASTMatchers.h.
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 4901 of file ASTMatchers.h.
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 4921 of file ASTMatchers.h.
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 3269 of file ASTMatchers.h.
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 3307 of file ASTMatchers.h.
References clang::DynTypedNode::get(), and clang::isa().
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 4696 of file ASTMatchers.h.
References clang::Init.
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 4718 of file ASTMatchers.h.
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 2266 of file ASTMatchers.h.
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 2280 of file ASTMatchers.h.
References clang::Init.
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 3804 of file ASTMatchers.h.
References clang::Expr::IgnoreParenImpCasts().
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())) only matches (g()).m() (the parens are ignored).
FIXME: Overload to allow directly matching types?
Definition at line 4312 of file ASTMatchers.h.
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 3422 of file ASTMatchers.h.
References clang::ast_matchers::internal::matchesAnyBase().
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 3439 of file ASTMatchers.h.
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 3541 of file ASTMatchers.h.
References clang::Result.
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 4359 of file ASTMatchers.h.
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 4816 of file ASTMatchers.h.
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 2870 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 938 of file ASTMatchers.h.
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 908 of file ASTMatchers.h.
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 960 of file ASTMatchers.h.
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 985 of file ASTMatchers.h.
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 725 of file ASTMatchers.h.
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 744 of file ASTMatchers.h.
References clang::Initializer.
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 2227 of file ASTMatchers.h.
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 2242 of file ASTMatchers.h.
References clang::Init.
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 1758 of file ASTMatchers.h.
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 5075 of file ASTMatchers.h.
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 4480 of file ASTMatchers.h.
References 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 5048 of file ASTMatchers.h.
References clang::Result.
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 3778 of file ASTMatchers.h.
References clang::NamedDecl::getUnderlyingDecl().
clang::ast_matchers::AST_MATCHER_P | ( | ObjCMessageExpr | , |
hasAnySelectorMatcher | , | ||
std::vector< std::string > | , | ||
Matches | ) |
Definition at line 44 of file ASTMatchersInternal.cpp.
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 3905 of file ASTMatchers.h.
References clang::Expr::IgnoreParenImpCasts().
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 3823 of file ASTMatchers.h.
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 3921 of file ASTMatchers.h.
References clang::Selector::getAsString().
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 4000 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | OMPExecutableDirective | , |
isAllowedToContainClauseKind | , | ||
OpenMPClauseKind | , | ||
CKind | ) |
/ 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)". AST_MATCHER_P(SwitchStmt, forEachSwitchCase, internal::Matcher<SwitchCase>, InnerMatcher) { BoundNodesTreeBuilder Result; FIXME: getSwitchCaseList() does not necessarily guarantee a stable iteration order. We should use the more general iterating matchers once they are capable of expressing this matcher (for example, it should ignore case statements belonging to nested switch statements). bool Matched = false; for (const SwitchCase *SC = Node.getSwitchCaseList(); SC; SC = SC->getNextSwitchCase()) { BoundNodesTreeBuilder CaseBuilder(*Builder); bool CaseMatched = InnerMatcher.matches(*SC, Finder, &CaseBuilder); if (CaseMatched) { Matched = true; Result.addMatch(CaseBuilder); } } Builder = std::move(Result); return Matched; }
/ 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. AST_MATCHER_P(CXXConstructorDecl, forEachConstructorInitializer, internal::Matcher<CXXCtorInitializer>, InnerMatcher) { BoundNodesTreeBuilder Result; bool Matched = false; for (const auto *I : Node.inits()) { if (Finder->isTraversalIgnoringImplicitNodes() && !I->isWritten()) continue; BoundNodesTreeBuilder InitBuilder(*Builder); if (InnerMatcher.matches(*I, Finder, &InitBuilder)) { Matched = true; Result.addMatch(InitBuilder); } } Builder = std::move(Result); return Matched; }
/ Matches constructor declarations that are copy constructors. / / Given /
/ cxxConstructorDecl(isCopyConstructor()) will match #2, but not #1 or #3. AST_MATCHER(CXXConstructorDecl, isCopyConstructor) { return Node.isCopyConstructor(); }
/ Matches constructor declarations that are move constructors. / / Given /
/ cxxConstructorDecl(isMoveConstructor()) will match #3, but not #1 or #2. AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { return Node.isMoveConstructor(); }
/ Matches constructor declarations that are default constructors. / / Given /
/ cxxConstructorDecl(isDefaultConstructor()) will match #1, but not #2 or #3. AST_MATCHER(CXXConstructorDecl, isDefaultConstructor) { return Node.isDefaultConstructor(); }
/ Matches constructors that delegate to another constructor. / / Given /
/ cxxConstructorDecl(isDelegatingConstructor()) will match #3 and #4, but not / #1 or #2. AST_MATCHER(CXXConstructorDecl, isDelegatingConstructor) { return Node.isDelegatingConstructor(); }
/ 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. AST_POLYMORPHIC_MATCHER(isExplicit, AST_POLYMORPHIC_SUPPORTED_TYPES( CXXConstructorDecl, CXXConversionDecl, CXXDeductionGuideDecl)) { return Node.isExplicit(); }
/ 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. AST_MATCHER_P(FunctionDecl, hasExplicitSpecifier, internal::Matcher<Expr>, InnerMatcher) { ExplicitSpecifier ES = ExplicitSpecifier::getFromDecl(&Node); if (!ES.getExpr()) return false;
ASTChildrenNotSpelledInSourceScope RAII(Finder, false);
return InnerMatcher.matches(*ES.getExpr(), Finder, Builder); }
/ 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; AST_POLYMORPHIC_MATCHER(isInline, AST_POLYMORPHIC_SUPPORTED_TYPES(NamespaceDecl, FunctionDecl, VarDecl)) { This is required because the spelling of the function used to determine whether inline is specified or not differs between the polymorphic types. if (const auto *FD = dyn_cast<FunctionDecl>(&Node)) return FD->isInlineSpecified(); if (const auto *NSD = dyn_cast<NamespaceDecl>(&Node)) return NSD->isInline(); if (const auto *VD = dyn_cast<VarDecl>(&Node)) return VD->isInline(); llvm_unreachable("Not a valid polymorphic type"); }
/ Matches anonymous namespace declarations. / / Given /
/ namespaceDecl(isAnonymous()) will match #1 but not ::n. AST_MATCHER(NamespaceDecl, isAnonymous) { return Node.isAnonymousNamespace(); }
/ Matches declarations in the namespace std, but not in nested namespaces. / / Given /
/ cxxRecordDecl(hasName("vector"), isInStdNamespace()) will match only #1. AST_MATCHER(Decl, isInStdNamespace) { return Node.isInStdNamespace(); }
/ Matches declarations in an anonymous namespace. / / Given /
/ cxxRecordDecl(hasName("vector"), isInAnonymousNamespace()) will match / #1, #2 and #3. AST_MATCHER(Decl, isInAnonymousNamespace) { return Node.isInAnonymousNamespace(); }
/ 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:" AST_MATCHER_P(CaseStmt, hasCaseConstant, internal::Matcher<Expr>, InnerMatcher) { if (Node.getRHS()) return false;
return InnerMatcher.matches(*Node.getLHS(), Finder, Builder); }
/ 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"). AST_MATCHER_P(Decl, hasAttr, attr::Kind, AttrKind) { for (const auto *Attr : Node.attrs()) { if (Attr->getKind() == AttrKind) return true; } return false; }
/ Matches the return value expression of a return statement / / Given /
/ hasReturnValue(binaryOperator()) / matches 'return a + b' / with binaryOperator() / matching 'a + b' AST_MATCHER_P(ReturnStmt, hasReturnValue, internal::Matcher<Expr>, InnerMatcher) { if (const auto *RetValue = Node.getRetValue()) return InnerMatcher.matches(*RetValue, Finder, Builder); return false; }
/ Matches CUDA kernel call expression. / / Example matches, /
extern const internal::VariadicDynCastAllOfMatcher<Stmt, CUDAKernelCallExpr> cudaKernelCallExpr;
/ 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. AST_MATCHER_FUNCTION(internal::Matcher<Expr>, nullPointerConstant) { return anyOf( gnuNullExpr(), cxxNullPtrLiteralExpr(), integerLiteral(equals(0), hasParent(expr(hasType(pointerType()))))); }
/ Matches the DecompositionDecl the binding belongs to. / / For example, in: /
/ The matcher: /
/ matches 'f' in 'auto &[f, s, t]'. AST_MATCHER_P(BindingDecl, forDecomposition, internal::Matcher<ValueDecl>, InnerMatcher) { if (const ValueDecl *VD = Node.getDecomposedDecl()) return InnerMatcher.matches(*VD, Finder, Builder); return false; }
/ Matches the Nth binding of a DecompositionDecl. / / For example, in: /
/ The matcher: /
/ matches the decomposition decl with 'f' bound to "fBinding". AST_MATCHER_P2(DecompositionDecl, hasBinding, unsigned, N, internal::Matcher<BindingDecl>, InnerMatcher) { if (Node.bindings().size() <= N) return false; return InnerMatcher.matches(*Node.bindings()[N], Finder, Builder); }
/ Matches any binding of a DecompositionDecl. / / For example, in: /
/ The matcher: /
/ matches the decomposition decl with 'f' bound to "fBinding". AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<BindingDecl>, InnerMatcher) { return llvm::any_of(Node.bindings(), [&](const auto *Binding) { return InnerMatcher.matches(*Binding, Finder, Builder); }); }
/ 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' AST_MATCHER_P(Stmt, forFunction, internal::Matcher<FunctionDecl>, InnerMatcher) { const auto &Parents = Finder->getASTContext().getParents(Node);
llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end()); while (!Stack.empty()) { const auto &CurNode = Stack.back(); Stack.pop_back(); if (const auto *FuncDeclNode = CurNode.get<FunctionDecl>()) { if (InnerMatcher.matches(*FuncDeclNode, Finder, Builder)) { return true; } } else if (const auto *LambdaExprNode = CurNode.get<LambdaExpr>()) { if (InnerMatcher.matches(*LambdaExprNode->getCallOperator(), Finder, Builder)) { return true; } } else { llvm::append_range(Stack, Finder->getASTContext().getParents(CurNode)); } } return false; }
/ 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'. AST_MATCHER_P(Stmt, forCallable, internal::Matcher<Decl>, InnerMatcher) { const auto &Parents = Finder->getASTContext().getParents(Node);
llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end()); while (!Stack.empty()) { const auto &CurNode = Stack.back(); Stack.pop_back(); if (const auto *FuncDeclNode = CurNode.get<FunctionDecl>()) { BoundNodesTreeBuilder B = *Builder; if (InnerMatcher.matches(*FuncDeclNode, Finder, &B)) { Builder = std::move(B); return true; } } else if (const auto *LambdaExprNode = CurNode.get<LambdaExpr>()) { BoundNodesTreeBuilder B = *Builder; if (InnerMatcher.matches(*LambdaExprNode->getCallOperator(), Finder, &B)) { Builder = std::move(B); return true; } } else if (const auto *ObjCMethodDeclNode = CurNode.get<ObjCMethodDecl>()) { BoundNodesTreeBuilder B = *Builder; if (InnerMatcher.matches(*ObjCMethodDeclNode, Finder, &B)) { Builder = std::move(B); return true; } } else if (const auto *BlockDeclNode = CurNode.get<BlockDecl>()) { BoundNodesTreeBuilder B = *Builder; if (InnerMatcher.matches(*BlockDeclNode, Finder, &B)) { Builder = std::move(B); return true; } } else { llvm::append_range(Stack, Finder->getASTContext().getParents(CurNode)); } } return false; }
/ 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 linkage / (matcher = functionDecl(hasExternalFormalLinkage())) / /
AST_MATCHER(NamedDecl, hasExternalFormalLinkage) { return Node.hasExternalFormalLinkage(); }
/ 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()). AST_MATCHER(ParmVarDecl, hasDefaultArgument) { return Node.hasDefaultArg(); }
/ Matches array new expressions. / / Given: /
/ cxxNewExpr(isArray()) / matches the expression 'new MyClass[10]'. AST_MATCHER(CXXNewExpr, isArray) { return Node.isArray(); }
/ Matches placement new expression arguments. / / Given: /
/ cxxNewExpr(hasPlacementArg(1, integerLiteral(equals(16)))) / matches the expression 'new (Storage, 16) MyClass()'. AST_MATCHER_P2(CXXNewExpr, hasPlacementArg, unsigned, Index, internal::Matcher<Expr>, InnerMatcher) { return Node.getNumPlacementArgs() > Index && InnerMatcher.matches(*Node.getPlacementArg(Index), Finder, Builder); }
/ Matches any placement new expression arguments. / / Given: /
/ cxxNewExpr(hasAnyPlacementArg(anything())) / matches the expression 'new (Storage, 16) MyClass()'. AST_MATCHER_P(CXXNewExpr, hasAnyPlacementArg, internal::Matcher<Expr>, InnerMatcher) { return llvm::any_of(Node.placement_arguments(), [&](const Expr *Arg) { return InnerMatcher.matches(*Arg, Finder, Builder); }); }
/ Matches array new expressions with a given array size. / / Given: /
/ cxxNewExpr(hasArraySize(integerLiteral(equals(10)))) / matches the expression 'new MyClass[10]'. AST_MATCHER_P(CXXNewExpr, hasArraySize, internal::Matcher<Expr>, InnerMatcher) { return Node.isArray() && *Node.getArraySize() && InnerMatcher.matches(**Node.getArraySize(), Finder, Builder); }
/ Matches a class declaration that is defined. / / Example matches x (matcher = cxxRecordDecl(hasDefinition())) /
AST_MATCHER(CXXRecordDecl, hasDefinition) { return Node.hasDefinition(); }
/ Matches C++11 scoped enum declaration. / / Example matches Y (matcher = enumDecl(isScoped())) /
AST_MATCHER(EnumDecl, isScoped) { return Node.isScoped(); }
/ Matches a function declared with a trailing return type. / / Example matches Y (matcher = functionDecl(hasTrailingReturn())) /
AST_MATCHER(FunctionDecl, hasTrailingReturn) { if (const auto *F = Node.getType()->getAs<FunctionProtoType>()) return F->hasTrailingReturn(); return false; }
/ 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). AST_MATCHER_P(Expr, ignoringElidableConstructorCall, internal::Matcher<Expr>, InnerMatcher) { E tracks the node that we are examining. const Expr *E = &Node; If present, remove an outer ExprWithCleanups corresponding to the underlying CXXConstructExpr. This check won't cover all cases of added ExprWithCleanups corresponding to CXXConstructExpr nodes (because the EWC is placed on the outermost node of the expression, which this may not be), but, it still improves the coverage of this matcher. if (const auto *CleanupsExpr = dyn_cast<ExprWithCleanups>(&Node)) E = CleanupsExpr->getSubExpr(); if (const auto *CtorExpr = dyn_cast<CXXConstructExpr>(E)) { if (CtorExpr->isElidable()) { if (const auto *MaterializeTemp = dyn_cast<MaterializeTemporaryExpr>(CtorExpr->getArg(0))) { return InnerMatcher.matches(*MaterializeTemp->getSubExpr(), Finder, Builder); } } } return InnerMatcher.matches(Node, Finder, Builder); }
-------------------------------------------------------------------------—// OpenMP handling. -------------------------------------------------------------------------—//
/ Matches any #pragma omp executable directive. / / Given / /
/ / ompExecutableDirective() matches omp parallel, / omp parallel default(none) and omp taskyield. extern const internal::VariadicDynCastAllOfMatcher<Stmt, OMPExecutableDirective> ompExecutableDirective;
/ Matches standalone OpenMP directives, / i.e., directives that can't have a structured block. / / Given / /
/ / ompExecutableDirective(isStandaloneDirective())) matches / omp taskyield. AST_MATCHER(OMPExecutableDirective, isStandaloneDirective) { return Node.isStandaloneDirective(); }
/ 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 ; AST_MATCHER_P(OMPExecutableDirective, hasStructuredBlock, internal::Matcher<Stmt>, InnerMatcher) { if (Node.isStandaloneDirective()) return false; // Standalone directives have no structured blocks. return InnerMatcher.matches(*Node.getStructuredBlock(), Finder, Builder); }
/ Matches any clause in an OpenMP directive. / / Given / /
/ / ompExecutableDirective(hasAnyClause(anything())) matches / omp parallel default(none). AST_MATCHER_P(OMPExecutableDirective, hasAnyClause, internal::Matcher<OMPClause>, InnerMatcher) { ArrayRef<OMPClause *> Clauses = Node.clauses(); return matchesFirstInPointerRange(InnerMatcher, Clauses.begin(), Clauses.end(), Finder, Builder) != Clauses.end(); }
/ Matches OpenMP default clause. / / Given / /
/ / ompDefaultClause() matches default(none), default(shared), / default(private) and default(firstprivate) extern const internal::VariadicDynCastAllOfMatcher<OMPClause, OMPDefaultClause> ompDefaultClause;
/ Matches if the OpenMP default clause has none kind specified. / / Given / /
/ / ompDefaultClause(isNoneKind()) matches only default(none). AST_MATCHER(OMPDefaultClause, isNoneKind) { return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_none; }
/ Matches if the OpenMP default clause has shared kind specified. / / Given / /
/ / ompDefaultClause(isSharedKind()) matches only default(shared). AST_MATCHER(OMPDefaultClause, isSharedKind) { return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_shared; }
/ Matches if the OpenMP default clause has private kind / specified. / / Given / /
/ / ompDefaultClause(isPrivateKind()) matches only / default(private). AST_MATCHER(OMPDefaultClause, isPrivateKind) { return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_private; }
/ Matches if the OpenMP default clause has firstprivate kind / specified. / / Given / /
/ / ompDefaultClause(isFirstPrivateKind()) matches only / default(firstprivate). AST_MATCHER(OMPDefaultClause, isFirstPrivateKind) { return Node.getDefaultKind() == llvm::omp::OMP_DEFAULT_firstprivate; }
/ 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 8832 of file ASTMatchers.h.
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 4418 of file ASTMatchers.h.
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 4206 of file ASTMatchers.h.
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 4281 of file ASTMatchers.h.
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 4220 of file ASTMatchers.h.
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 4263 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P | ( | StringLiteral | , |
mentionsBoundType | , | ||
std::string | , | ||
BindingID | ) |
Definition at line 39 of file OSObjectCStyleCast.cpp.
References clang::DynTypedNode::get().
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 equal 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 1241 of file ASTMatchers.h.
References clang::TemplateArgument::Integral, 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 1189 of file ASTMatchers.h.
References clang::TemplateArgument::Expression.
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 1170 of file ASTMatchers.h.
References clang::TemplateArgument::Declaration.
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 1220 of file ASTMatchers.h.
References clang::TemplateArgument::Integral.
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 1150 of file ASTMatchers.h.
References 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 1132 of file ASTMatchers.h.
References 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 4244 of file ASTMatchers.h.
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 3127 of file ASTMatchers.h.
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 4450 of file ASTMatchers.h.
References clang::Initializer.
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 4839 of file ASTMatchers.h.
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 4799 of file ASTMatchers.h.
clang::ast_matchers::AST_MATCHER_P_OVERLOAD | ( | CXXMemberCallExpr | , |
thisPointerType | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | , | ||
1 | ) |
Overloaded to match the type's declaration.
Definition at line 4343 of file ASTMatchers.h.
References anyOf.
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 4335 of file ASTMatchers.h.
References anyOf.
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 1017 of file ASTMatchers.h.
References clang::Expr::IgnoreParens().
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 1001 of file ASTMatchers.h.
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 4228 of file ASTMatchers.h.
References hasDeclaration(), 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 4289 of file ASTMatchers.h.
References hasDeclaration(), and qualType.
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 3198 of file ASTMatchers.h.
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 3948 of file ASTMatchers.h.
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 262 of file ASTMatchers.h.
References clang::SourceManager::getExpansionLoc(), and clang::SourceManager::isInMainFile().
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 283 of file ASTMatchers.h.
References clang::SourceManager::getExpansionLoc(), and clang::SourceManager::isInSystemHeader().
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 776 of file ASTMatchers.h.
References clang::Decl::isImplicit().
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isPrivate | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | ) |
Matches private C++ declarations and C++ base specifiers that specify private inheritance.
Examples:
Definition at line 691 of file ASTMatchers.h.
References clang::AS_private.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isProtected | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | ) |
Matches protected C++ declarations and C++ base specifiers that specify protected inheritance.
Examples:
Definition at line 668 of file ASTMatchers.h.
References clang::AS_protected.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER | ( | isPublic | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, CXXBaseSpecifier) | ) |
Matches public C++ declarations and C++ base specifiers that specify public inheritance.
Examples:
Definition at line 646 of file ASTMatchers.h.
References clang::AS_public.
clang::ast_matchers::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).
Example matches f(0, 0) and g(0, 0, 0) (matcher = callExpr(argumentCountAtLeast(2)))
Definition at line 4642 of file ASTMatchers.h.
References clang::isa().
clang::ast_matchers::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).
Example matches f(0, 0) (matcher = callExpr(argumentCountIs(2)))
Definition at line 4615 of file ASTMatchers.h.
References clang::isa().
clang::ast_matchers::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.
Given
callExpr(hasAnyArgument(declRefExpr())) matches x(1, y, 42) with hasAnyArgument(...) matching y
For ObjectiveC, given
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12)))) matches [i f:12]
Definition at line 5004 of file ASTMatchers.h.
References clang::isa(), and clang::Result.
clang::ast_matchers::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.
Given
classTemplateSpecializationDecl(hasAnyTemplateArgument( refersToType(asString("int")))) matches the specialization A<int>
functionDecl(hasAnyTemplateArgument(refersToType(asString("int")))) matches the specialization f<int>
Definition at line 803 of file ASTMatchers.h.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P | ( | hasDependentName | , |
AST_POLYMORPHIC_SUPPORTED_TYPES( DependentScopeDeclRefExpr, DependentNameType) | , | ||
std::string | , | ||
N | ) |
Matches the dependent name of a DependentScopeDeclRefExpr or DependentNameType.
Given:
dependentScopeDeclRefExpr
(hasDependentName("v")) matches T::v
Given:
dependentNameType
(hasDependentName("type")) matches T::type
Definition at line 3339 of file ASTMatchers.h.
clang::ast_matchers::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.
Examples:
declaratorDecl(hasTypeLoc(loc(asString("int")))) matches int x
cxxTemporaryObjectExpr(hasTypeLoc(loc(asString("int")))) matches int(3)
cxxFunctionalCastExpr(hasTypeLoc(loc(asString("struct Foo")))) matches Foo(1, 2)
Usable as: Matcher<BlockDecl>, Matcher<CXXBaseSpecifier>, Matcher<CXXCtorInitializer>, Matcher<CXXFunctionalCastExpr>, Matcher<CXXNewExpr>, Matcher<CXXTemporaryObjectExpr>, Matcher<CXXUnresolvedConstructExpr>, Matcher<CompoundLiteralExpr>, Matcher<DeclaratorDecl>, Matcher<ExplicitCastExpr>, Matcher<ObjCPropertyDecl>, Matcher<TemplateArgumentLoc>, Matcher<TypedefNameDecl>
Definition at line 4181 of file ASTMatchers.h.
References clang::TypeSourceInfo::getTypeLoc().
clang::ast_matchers::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
.
Note that a class is not considered to be derived from itself.
Example matches Y, Z, C (Base == hasName("X"))
In the following example, Bar matches isDerivedFrom(hasName("X")):
In the following example, Bar matches isDerivedFrom(hasName("NSObject"))
Usable as: Matcher<CXXRecordDecl>, Matcher<ObjCInterfaceDecl>
Definition at line 3376 of file ASTMatchers.h.
References clang::cast().
clang::ast_matchers::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.
Does not match if only part of the statement is expanded from that macro or if different parts of the statement are expanded from different appearances of the macro.
Definition at line 331 of file ASTMatchers.h.
References clang::ast_matchers::internal::getExpansionLocOfMacro().
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P | ( | templateArgumentCountIs | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(ClassTemplateSpecializationDecl, VarTemplateSpecializationDecl, FunctionDecl, TemplateSpecializationType) | , | ||
unsigned | , | ||
N | ) |
Matches if the number of template arguments equals N
.
Given
classTemplateSpecializationDecl(templateArgumentCountIs(1)) matches C<int>.
functionDecl(templateArgumentCountIs(1)) matches f<int>();
Definition at line 1112 of file ASTMatchers.h.
clang::ast_matchers::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.
Examples:
declRefExpr(throughUsingDecl(anything())) matches f
typeLoc(loc(usingType(throughUsingDecl(anything())))) matches X
Usable as: Matcher<DeclRefExpr>, Matcher<UsingType>
Definition at line 4387 of file ASTMatchers.h.
clang::ast_matchers::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.
Given
callExpr( forEachArgumentWithParam( declRefExpr(to(varDecl(hasName("y")))), parmVarDecl(hasType(isInteger())) )) matches f(y); with declRefExpr(...) matching int y and parmVarDecl(...) matching int i
Definition at line 5187 of file ASTMatchers.h.
References anyOf, callExpr, cxxConstructExpr, cxxConstructorDecl, cxxMethodDecl, cxxOperatorCallExpr, expr, functionDecl, hasDeclaration(), clang::Result, and unless.
clang::ast_matchers::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
.
It is very similar to forEachArgumentWithParam
but it works on calls through function pointers as well.
The difference is, that function pointers do not provide access to a ParmVarDecl
, but only the QualType
for each argument.
Given
callExpr( forEachArgumentWithParamType( declRefExpr(to(varDecl(hasName("y")))), qualType(isInteger()).bind("type) )) matches f(y) and f_ptr(y) with declRefExpr(...) matching int y and qualType(...) matching int
Definition at line 5250 of file ASTMatchers.h.
References clang::Call, matchEachArgumentWithParamType(), and clang::Result.
clang::ast_matchers::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.
Example matches y in x(y) (matcher = callExpr(hasArgument(0, declRefExpr())))
Definition at line 4666 of file ASTMatchers.h.
References clang::Expr::IgnoreParenImpCasts(), and clang::isa().
clang::ast_matchers::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.
Given
cxxMethodDecl(hasParameter(0, hasType(varDecl()))) matches f(int x) {} with hasParameter(...) matching int x
For ObjectiveC, given
the matcher objcMethodDecl(hasParameter(0, hasName("y"))) matches the declaration of method f with hasParameter matching y.
Definition at line 5140 of file ASTMatchers.h.
clang::ast_matchers::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.
Given
classTemplateSpecializationDecl(hasTemplateArgument( 1, refersToType(asString("int")))) matches the specialization A<bool, int>
functionDecl(hasTemplateArgument(0, refersToType(asString("int")))) matches the specialization f<int>
Definition at line 1084 of file ASTMatchers.h.
clang::ast_matchers::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.
Given
callExpr(callee(expr())) matches this->x(), x(), y.x(), f() with callee(...) matching this->x, x, y.x, f respectively
Given
cxxFoldExpr(callee(expr())) matches (args * ... * 1) with callee(...) matching *
Note: Callee cannot take the more general internal::Matcher<Expr> because this introduces ambiguous overloads with calls to Callee taking a internal::Matcher<Decl>, as the matcher hierarchy is purely implemented in terms of implicit casts.
Definition at line 4037 of file ASTMatchers.h.
clang::ast_matchers::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.
Example matches y.x() (matcher = callExpr(callee( cxxMethodDecl(hasName("x")))))
Example 2. Matches [I foo] with objcMessageExpr(callee(objcMethodDecl(hasName("foo"))))
Definition at line 4067 of file ASTMatchers.h.
References callExpr, clang::cast(), hasDeclaration(), and clang::isa().
clang::ast_matchers::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.
Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X"))))) and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X"))))) and U (matcher = typedefDecl(hasType(asString("int"))) and friend class X (matcher = friendDecl(hasType("X")) and public virtual X (matcher = cxxBaseSpecifier(hasType( asString("class X")))
Definition at line 4099 of file ASTMatchers.h.
References clang::QualType::isNull().
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P_OVERLOAD | ( | hasType | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(Expr, FriendDecl, ValueDecl, CXXBaseSpecifier, ObjCInterfaceDecl) | , | ||
internal::Matcher< Decl > | , | ||
InnerMatcher | , | ||
1 | ) |
Overloaded to match the declaration of the expression's or value declaration's type.
In case of a value declaration (for example a variable declaration), this resolves one layer of indirection. For example, in the value declaration "X x;", cxxRecordDecl(hasName("X")) matches the declaration of X, while varDecl(hasType(cxxRecordDecl(hasName("X")))) matches the declaration of x.
Example matches x (matcher = expr(hasType(cxxRecordDecl(hasName("X"))))) and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X"))))) and friend class X (matcher = friendDecl(hasType("X")) and public virtual X (matcher = cxxBaseSpecifier(hasType( cxxRecordDecl(hasName("X"))))
Example matches class Derived (matcher = cxxRecordDecl(hasAnyBase(hasType(cxxRecordDecl(hasName("Base"))))))
Usable as: Matcher<Expr>, Matcher<FriendDecl>, Matcher<ValueDecl>, Matcher<CXXBaseSpecifier>
Definition at line 4140 of file ASTMatchers.h.
References hasDeclaration(), clang::QualType::isNull(), and qualType.
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P_OVERLOAD | ( | isDerivedFrom | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl) | , | ||
std::string | , | ||
BaseName | , | ||
1 | ) |
Overloaded method as shortcut for isDerivedFrom(hasName(...))
.
Definition at line 3391 of file ASTMatchers.h.
References clang::cast(), and hasName().
clang::ast_matchers::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
.
Note that a class is not considered to be derived from itself.
Example matches Y, C (Base == hasName("X"))
In the following example, Bar matches isDerivedFrom(hasName("X")):
Definition at line 3501 of file ASTMatchers.h.
References clang::cast().
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P_OVERLOAD | ( | isDirectlyDerivedFrom | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl) | , | ||
std::string | , | ||
BaseName | , | ||
1 | ) |
Overloaded method as shortcut for isDirectlyDerivedFrom(hasName(...))
.
Definition at line 3516 of file ASTMatchers.h.
References clang::cast(), and hasName().
clang::ast_matchers::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
.
Definition at line 3449 of file ASTMatchers.h.
References anyOf, and clang::cast().
clang::ast_matchers::AST_POLYMORPHIC_MATCHER_P_OVERLOAD | ( | isSameOrDerivedFrom | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(CXXRecordDecl, ObjCInterfaceDecl) | , | ||
std::string | , | ||
BaseName | , | ||
1 | ) |
Overloaded method as shortcut for isSameOrDerivedFrom(hasName(...))
.
Definition at line 3464 of file ASTMatchers.h.
References clang::cast(), and hasName().
clang::ast_matchers::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.
Example matches Y but not X (matcher = cxxRecordDecl(isExpansionInFileMatching("AST.*"))
ASTMatcher.h:
Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
Definition at line 308 of file ASTMatchers.h.
References clang::SourceManager::getExpansionLoc(), clang::SourceManager::getFileEntryRefForID(), and clang::SourceManager::getFileID().
clang::ast_matchers::AST_TYPELOC_TRAVERSE_MATCHER_DEF | ( | hasElementType | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(ArrayType, ComplexType) | ) |
clang::ast_matchers::AST_TYPELOC_TRAVERSE_MATCHER_DEF | ( | hasValueType | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType) | ) |
clang::ast_matchers::AST_TYPELOC_TRAVERSE_MATCHER_DEF | ( | pointee | , |
AST_POLYMORPHIC_SUPPORTED_TYPES(BlockPointerType, MemberPointerType, PointerType, ReferenceType, ObjCObjectPointerType) | ) |
internal::Matcher< T > clang::ast_matchers::findAll | ( | const internal::Matcher< T > & | Matcher | ) |
Matches if the node or any descendant matches.
Generates results for each match.
For example, in:
The matcher:
will generate results for A
, B
and C
.
Usable as: Any Matcher
Definition at line 3675 of file ASTMatchers.h.
References eachOf, and forEachDescendant.
Referenced by clang::ASTReader::completeVisibleDeclsMap(), and clang::ento::getWidenedLoopState().
|
static |
Definition at line 22 of file LowLevelHelpers.cpp.
References clang::CallExpr::getDirectCallee().
|
static |
Definition at line 19 of file LowLevelHelpers.cpp.
References clang::CXXConstructExpr::getConstructor().
Referenced by clang::ento::PathDiagnosticCallPiece::dump(), clang::interp::InterpFrame::dump(), clang::CodeGen::CodeGenModule::getAddrOfCXXStructor(), clang::ento::SimpleFunctionCall::getDecl(), clang::ento::CXXMemberCall::getRuntimeDefinition(), and matchEachArgumentWithParamTypeImpl().
|
static |
Definition at line 33 of file GtestMatchers.cpp.
References cxxMethodDecl, cxxRecordDecl, Eq, functionDecl, Ge, Gt, hasName(), Le, Lt, and Ne.
Referenced by gtestComparisonInternal().
|
static |
Definition at line 65 of file GtestMatchers.cpp.
References Eq, Ge, Gt, Le, Lt, and Ne.
Referenced by getMacroName().
|
static |
Definition at line 83 of file GtestMatchers.cpp.
References getComparisonTypeName(), getMacroTypeName(), and clang::Macro.
Referenced by gtestCallInternal(), gtestComparisonInternal(), gtestThatInternal(), and clang::ento::SuppressInlineDefensiveChecksVisitor::VisitNode().
|
static |
Definition at line 87 of file GtestMatchers.cpp.
References getMacroTypeName(), and clang::Macro.
|
static |
Definition at line 53 of file GtestMatchers.cpp.
References clang::Macro.
Referenced by getMacroName(), and getMacroName().
|
static |
Definition at line 95 of file GtestMatchers.cpp.
References clang::Macro.
Referenced by gtestCallInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::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.
Definition at line 185 of file GtestMatchers.cpp.
References gtestComparisonInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestAssertThat | ( | StatementMatcher | Actual, |
StatementMatcher | Matcher ) |
Matcher for gtest's ASSERT_THAT macro.
Definition at line 195 of file GtestMatchers.cpp.
References gtestThatInternal().
|
static |
Definition at line 141 of file GtestMatchers.cpp.
References cxxMemberCallExpr, cxxOperatorCallExpr, functionDecl, getMacroName(), getSpecSetterName(), hasName(), hasOverloadedOperatorName(), clang::Macro, None, and Some.
Referenced by gtestCallInternal(), gtestExpectCall(), gtestExpectCall(), gtestOnCall(), and gtestOnCall().
|
static |
Definition at line 175 of file GtestMatchers.cpp.
References cxxMemberCallExpr, functionDecl, gtestCallInternal(), hasName(), and clang::Macro.
|
static |
Definition at line 117 of file GtestMatchers.cpp.
References callExpr, getComparisonDecl(), getMacroName(), and clang::Macro.
Referenced by gtestAssert(), and gtestExpect().
internal::BindableMatcher< Stmt > clang::ast_matchers::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.
Definition at line 190 of file GtestMatchers.cpp.
References gtestComparisonInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestExpectCall | ( | StatementMatcher | MockCall, |
MockArgs | Args ) |
Matcher for gtest's EXPECT_CALL macro.
MockCall matches the whole mock member method call. This API is more flexible but requires more knowledge of the AST structure of EXPECT_CALL macros.
Definition at line 222 of file GtestMatchers.cpp.
References gtestCallInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestExpectCall | ( | StatementMatcher | MockObject, |
llvm::StringRef | MockMethodName, | ||
MockArgs | Args ) |
Matcher for gtest's EXPECT_CALL macro.
MockObject matches the mock object and MockMethodName is the name of the method invoked on the mock object.
Definition at line 216 of file GtestMatchers.cpp.
References gtestCallInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestExpectThat | ( | StatementMatcher | Actual, |
StatementMatcher | Matcher ) |
Matcher for gtest's EXPECT_THAT macro.
Definition at line 200 of file GtestMatchers.cpp.
References gtestThatInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestOnCall | ( | StatementMatcher | MockCall, |
MockArgs | Args ) |
Like the second gtestExpectCall overload but for ON_CALL.
Definition at line 211 of file GtestMatchers.cpp.
References gtestCallInternal().
internal::BindableMatcher< Stmt > clang::ast_matchers::gtestOnCall | ( | StatementMatcher | MockObject, |
llvm::StringRef | MockMethodName, | ||
MockArgs | Args ) |
Like the first gtestExpectCall overload but for ON_CALL.
Definition at line 205 of file GtestMatchers.cpp.
References gtestCallInternal().
|
static |
Definition at line 125 of file GtestMatchers.cpp.
References callExpr, classTemplateSpecializationDecl, cxxOperatorCallExpr, expr, functionDecl, getMacroName(), hasName(), hasOverloadedOperatorName(), and clang::Macro.
Referenced by gtestAssertThat(), and gtestExpectThat().
|
inline |
Matches a node if the declaration associated with that node matches the given matcher.
The associated declaration is:
For type nodes, hasDeclaration will generally match the declaration of the sugared type. Given
in varDecl(hasType(hasDeclaration(decl()))) the decl will match the typedefDecl. A common use case is to match the underlying, desugared type. This can be achieved by using the hasUnqualifiedDesugaredType matcher:
In this matcher, the decl will match the CXXRecordDecl of class X.
Usable as: Matcher<AddrLabelExpr>, Matcher<CallExpr>, Matcher<CXXConstructExpr>, Matcher<CXXNewExpr>, Matcher<DeclRefExpr>, Matcher<EnumType>, Matcher<InjectedClassNameType>, Matcher<LabelStmt>, Matcher<MemberExpr>, Matcher<QualType>, Matcher<RecordType>, Matcher<TagType>, Matcher<TemplateSpecializationType>, Matcher<TemplateTypeParmType>, Matcher<TypedefType>, Matcher<UnresolvedUsingType>, Matcher<UsingType>
Definition at line 3760 of file ASTMatchers.h.
Referenced by AST_MATCHER_P_OVERLOAD(), AST_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P2(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), clang::ento::getAddrTo(), hasTypePointingTo(), hasTypePointingTo(), hasUnguardedAccess(), clang::tooling::isKnownPointerLikeType(), and potentiallyWritesIntoIvar().
|
inline |
Matches NamedDecl nodes that have the specified name.
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 (Name == "X")
Example matches X (Name is one of "::a::b::X", "a::b::X", "b::X", "X")
Definition at line 3163 of file ASTMatchers.h.
Referenced by AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), getComparisonDecl(), getRunLoopRunM(), gtestCallInternal(), gtestCallInternal(), gtestThatInternal(), and isExactClass().
|
inline |
Matches overloaded operator names.
Matches overloaded operator names specified in strings without the "operator" prefix: e.g. "<<".
Given:
cxxOperatorCallExpr
(hasOverloadedOperatorName("<<"))) matches the specified line and cxxRecordDecl
(hasMethod(hasOverloadedOperatorName("*"))) matches the declaration of A
.
Usable as: Matcher<CXXOperatorCallExpr>, Matcher<FunctionDecl>
Definition at line 3226 of file ASTMatchers.h.
References AST_POLYMORPHIC_SUPPORTED_TYPES.
Referenced by gtestCallInternal(), and gtestThatInternal().
auto clang::ast_matchers::mapAnyOf | ( | internal::VariadicDynCastAllOfMatcher< T, U > const & | ... | ) |
Matches any of the NodeMatchers
with InnerMatchers nested within.
Given
with the matcher
matches the if
and the for
. It is equivalent to:
The with() chain-call accepts zero or more matchers which are combined as-if with allOf() in each of the node matchers. Usable as: Any Matcher
Definition at line 2985 of file ASTMatchers.h.
SmallVector< BoundNodes, 1 > clang::ast_matchers::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.
Definition at line 324 of file ASTMatchFinder.h.
References clang::ast_matchers::MatchFinder::addMatcher(), and clang::ast_matchers::MatchFinder::matchAST().
SmallVector< BoundNodes, 1 > clang::ast_matchers::match | ( | MatcherT | Matcher, |
const DynTypedNode & | Node, | ||
ASTContext & | Context ) |
Definition at line 307 of file ASTMatchFinder.h.
References clang::ast_matchers::MatchFinder::addMatcher(), and clang::ast_matchers::MatchFinder::match().
SmallVector< BoundNodes, 1 > clang::ast_matchers::match | ( | MatcherT | Matcher, |
const NodeT & | Node, | ||
ASTContext & | Context ) |
Returns the results of matching Matcher
on Node
.
Collects the BoundNodes
of all callback invocations when matching Matcher
on Node
and returns the collected results.
Multiple results occur when using matchers like forEachDescendant
, which generate a result for each sub-match.
If you want to find all matches on the sub-tree rooted at Node
(rather than only the matches on Node
itself), surround the Matcher
with a findAll()
.
Definition at line 318 of file ASTMatchFinder.h.
References clang::DynTypedNode::create(), and match().
Referenced by clang::SemaObjC::ActOnAtEnd(), clang::Sema::ActOnCXXDelete(), clang::SemaOpenACC::ActOnIntExpr(), checkTempObjectsInNoPool(), checkTempObjectsInSamePool(), clang::tooling::IncludeCategoryManager::getIncludePriority(), clang::tooling::IncludeCategoryManager::getSortIncludePriority(), clang::ento::getWidenedLoopState(), hasUnguardedAccess(), isExactClass(), clang::tooling::isKnownPointerLikeType(), clang::ento::isPossiblyEscaped(), isSubclass(), clang::ExprMutationAnalyzer::isUnevaluated(), match(), clang::ASTContext::ObjCQualifiedClassTypesAreCompatible(), clang::ASTContext::ObjCQualifiedIdTypesAreCompatible(), potentiallyWritesIntoIvar(), clang::ento::shouldCompletelyUnroll(), clang::format::sortCppIncludes(), and clang::SemaObjC::WarnExactTypedMethods().
|
inline |
Definition at line 350 of file ASTMatchFinder.h.
References clang::ast_matchers::MatchFinder::addDynamicMatcher(), and clang::ast_matchers::MatchFinder::matchAST().
|
inline |
Definition at line 333 of file ASTMatchFinder.h.
References clang::ast_matchers::MatchFinder::addDynamicMatcher(), and clang::ast_matchers::MatchFinder::match().
Referenced by clang::dataflow::ASTMatchSwitchBuilder< BaseT, State, Result >::Build(), and matchDynamic().
SmallVector< BoundNodes, 1 > clang::ast_matchers::matchDynamic | ( | internal::DynTypedMatcher | Matcher, |
const NodeT & | Node, | ||
ASTContext & | Context ) |
Definition at line 343 of file ASTMatchFinder.h.
References clang::DynTypedNode::create(), and matchDynamic().
void clang::ast_matchers::matchEachArgumentWithParamType | ( | const CallExpr & | Node, |
llvm::function_ref< void(QualType, const Expr *)> | OnParamAndArg ) |
Definition at line 90 of file LowLevelHelpers.cpp.
References matchEachArgumentWithParamTypeImpl().
Referenced by AST_POLYMORPHIC_MATCHER_P2(), and findStmtsInUnspecifiedPointerContext().
void clang::ast_matchers::matchEachArgumentWithParamType | ( | const CXXConstructExpr & | Node, |
llvm::function_ref< void(QualType, const Expr *)> | OnParamAndArg ) |
Definition at line 97 of file LowLevelHelpers.cpp.
References matchEachArgumentWithParamTypeImpl().
|
static |
Definition at line 27 of file LowLevelHelpers.cpp.
References clang::Call, clang::Type::getAs(), getCallee(), clang::QualType::getCanonicalType(), clang::FunctionDecl::getNumParams(), clang::FunctionProtoType::getNumParams(), clang::FunctionProtoType::getParamType(), clang::Type::getPointeeType(), clang::Value::getType(), clang::Type::isFunctionPointerType(), clang::Type::isMemberFunctionPointerType(), and clang::FunctionProtoType::isVariadic().
Referenced by matchEachArgumentWithParamType(), and matchEachArgumentWithParamType().
const NodeT * clang::ast_matchers::selectFirst | ( | StringRef | BoundTo, |
const SmallVectorImpl< BoundNodes > & | Results ) |
Returns the first result of type NodeT
bound to BoundTo
.
Returns NULL
if there is no match, or if the matching node cannot be casted to NodeT
.
This is useful in combination with match()
:
Definition at line 283 of file ASTMatchFinder.h.
|
inline |
Same as unaryExprOrTypeTraitExpr, but only matching sizeof.
Definition at line 3142 of file ASTMatchers.h.
References allOf, stmt, and unaryExprOrTypeTraitExpr.
Referenced by clang::ExprMutationAnalyzer::isUnevaluated().
internal::TraversalWrapper< internal::ArgumentAdaptingMatcherFuncAdaptor< ArgumentAdapterT, T, ToTypes > > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::ArgumentAdaptingMatcherFuncAdaptor< ArgumentAdapterT, T, ToTypes > & | InnerMatcher ) |
Definition at line 862 of file ASTMatchers.h.
References clang::T.
internal::BindableMatcher< T > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::BindableMatcher< T > & | InnerMatcher ) |
Definition at line 842 of file ASTMatchers.h.
internal::Matcher< typename internal::GetClade< T... >::Type > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::MapAnyOfHelper< T... > & | InnerMatcher ) |
Definition at line 883 of file ASTMatchers.h.
References traverse().
internal::Matcher< T > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::Matcher< T > & | InnerMatcher ) |
Causes all nested matchers to be matched with the specified traversal kind.
Given
The matcher
matches the variable declaration with "init" bound to the "3.0".
Definition at line 832 of file ASTMatchers.h.
Referenced by clang::ast_matchers::MatchFinder::addMatcher(), clang::ast_matchers::MatchFinder::addMatcher(), clang::syntax::Node::assertInvariantsRecursive(), clang::threadSafety::BeforeSet::checkBeforeAfter(), clang::syntax::Node::dumpTokens(), traverse(), and traverse().
internal::TraversalWrapper< internal::PolymorphicMatcher< MatcherT, ReturnTypesF, P... > > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::PolymorphicMatcher< MatcherT, ReturnTypesF, P... > & | InnerMatcher ) |
Definition at line 873 of file ASTMatchers.h.
References traverse().
internal::TraversalWrapper< internal::VariadicOperatorMatcher< T... > > clang::ast_matchers::traverse | ( | TraversalKind | TK, |
const internal::VariadicOperatorMatcher< T... > & | InnerMatcher ) |
Definition at line 852 of file ASTMatchers.h.
References clang::T.
const internal::VariadicDynCastAllOfMatcher< Decl, AccessSpecDecl > clang::ast_matchers::accessSpecDecl |
Matches C++ access specifier declarations.
Given
accessSpecDecl() matches 'public:'
Definition at line 786 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, AddrLabelExpr > clang::ast_matchers::addrLabelExpr |
Matches address of label statements (GNU extension).
Given
addrLabelExpr() matches '&&FOO'
Definition at line 944 of file ASTMatchersInternal.cpp.
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> clang::ast_matchers::allOf = {internal::DynTypedMatcher::VO_AllOf} |
Matches if all given matchers match.
Usable as: Any Matcher
Definition at line 1035 of file ASTMatchersInternal.cpp.
Referenced by alignOfExpr(), clang::ento::assignedToRef(), clang::ento::forLoopMatcher(), and sizeOfExpr().
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> clang::ast_matchers::anyOf = {internal::DynTypedMatcher::VO_AnyOf} |
Matches if any of the given matchers matches.
Usable as: Any Matcher
Definition at line 1032 of file ASTMatchersInternal.cpp.
Referenced by alignOfExpr(), clang::ento::assignedToRef(), AST_MATCHER_P_OVERLOAD(), AST_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P2(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), clang::ento::changeIntBoundNode(), clang::ento::forLoopMatcher(), getOtherMessageSentM(), getRunLoopRunM(), clang::ento::hasSuspiciousStmt(), hasUnguardedAccess(), clang::ento::isPossiblyEscaped(), clang::ExprMutationAnalyzer::isUnevaluated(), and clang::ento::simpleCondition().
const internal::VariadicDynCastAllOfMatcher< Stmt, ArrayInitIndexExpr > clang::ast_matchers::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.
Within the per-element initializer, the current index may be obtained via an ArrayInitIndexExpr.
Given
arrayInitIndexExpr() matches the array index that implicitly iterates over the array a to copy each element to the anonymous array that backs the structured binding [x, y] elements of which are referred to by their aliases x and y.
Definition at line 916 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ArrayInitLoopExpr > clang::ast_matchers::arrayInitLoopExpr |
Matches a loop initializing the elements of an array in a number of contexts:
Given
arrayInitLoopExpr() matches the implicit loop that initializes each element of the implicit array field inside the lambda object, that represents the array a captured by value.
Definition at line 918 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ArraySubscriptExpr > clang::ast_matchers::arraySubscriptExpr |
Matches array subscript expressions.
Given
arraySubscriptExpr() matches "a[1]"
Definition at line 914 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<ArrayType> clang::ast_matchers::arrayType |
Definition at line 1077 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData(), clang::CIRGen::CIRGenFunction::emitAlloca(), clang::CIRGen::CIRGenFunction::emitArrayLength(), clang::CodeGen::CodeGenFunction::emitArrayLength(), clang::CodeGen::CodeGenFunction::EmitArraySubscriptExpr(), emitArraySubscriptGEP(), clang::CIRGen::CIRGenFunction::emitCaseDefaultCascade(), clang::CodeGen::CodeGenFunction::EmitCXXAggrConstructorCall(), clang::CIRGen::CIRGenFunction::emitCXXAggrConstructorCall(), clang::CodeGen::CodeGenFunction::EmitCXXConstructExpr(), clang::CIRGen::CIRGenFunction::emitCXXConstructExpr(), clang::CIRGen::CIRGenFunction::emitDestroy(), clang::CodeGen::CodeGenFunction::emitDestroy(), emitPartialArrayDestroy(), clang::CIRGen::CIRGenVTables::emitVTTDefinition(), clang::CIRGen::CIRGenVTables::getAddrOfVTT(), getArrayDepth(), clang::Type::getBaseElementTypeUnsafe(), clang::ASTContext::getDeclAlign(), clang::CFGImplicitDtor::getDestructorDecl(), and IsStringInit().
Matches asm statements.
asmStmt() matches '__asm("mov al, 2")'
Definition at line 956 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, AtomicExpr > clang::ast_matchers::atomicExpr |
Matches atomic builtins.
Example matches __atomic_load_n(ptr, 1)
Definition at line 987 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<AtomicType> clang::ast_matchers::atomicType |
Definition at line 1086 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData().
const internal::VariadicAllOfMatcher<Attr> clang::ast_matchers::attr |
Definition at line 1073 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAutoreleasePoolStmt > clang::ast_matchers::autoreleasePoolStmt |
Matches an Objective-C autorelease pool statement.
Given
autoreleasePoolStmt(stmt()) matches the declaration of "x" inside the autorelease pool.
Definition at line 751 of file ASTMatchersInternal.cpp.
Referenced by checkTempObjectsInNoPool(), and checkTempObjectsInSamePool().
const AstTypeMatcher<AutoType> clang::ast_matchers::autoType |
Definition at line 1087 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, BinaryConditionalOperator > clang::ast_matchers::binaryConditionalOperator |
Matches binary conditional operator expressions (GNU extension).
Example matches a ?: b
Definition at line 999 of file ASTMatchersInternal.cpp.
const internal::MapAnyOfMatcher< BinaryOperator, CXXOperatorCallExpr, CXXRewrittenBinaryOperator > clang::ast_matchers::binaryOperation |
Matches nodes which can be used with binary operators.
The code
might be represented in the clang AST as a binaryOperator, a cxxOperatorCallExpr or a cxxRewrittenBinaryOperator, depending on
This matcher elides details in places where the matchers for the nodes are compatible.
Given
matches each use of "!=" in:
Definition at line 993 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, BinaryOperator > clang::ast_matchers::binaryOperator |
Matches binary operator expressions.
Example matches a || b
See also the binaryOperation() matcher for more-general matching.
Definition at line 990 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::changeIntBoundNode(), clang::ento::forLoopMatcher(), potentiallyWritesIntoIvar(), and clang::ento::simpleCondition().
const internal::VariadicDynCastAllOfMatcher< Decl, BindingDecl > clang::ast_matchers::bindingDecl |
Matches binding declarations Example matches foo
and bar
(matcher = bindingDecl()
Definition at line 764 of file ASTMatchersInternal.cpp.
Matches block declarations.
Example matches the declaration of the nameless block printing an input integer.
Definition at line 867 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(), and clang::CodeGen::CodeGenFunction::GenerateBlockFunction().
Matches a reference to a block.
Example: matches "^{}":
Definition at line 931 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::CodeGenFunction::EmitBlockLiteral().
const AstTypeMatcher<BlockPointerType> clang::ast_matchers::blockPointerType |
Definition at line 1092 of file ASTMatchersInternal.cpp.
Matches break statements.
Given
breakStmt() matches 'break'
Definition at line 938 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<BuiltinType> clang::ast_matchers::builtinType |
Definition at line 1076 of file ASTMatchersInternal.cpp.
Matches call expressions.
Example matches x.y() and y()
Definition at line 848 of file ASTMatchersInternal.cpp.
Referenced by clang::SemaObjC::ActOnPropertyImplDecl(), AST_POLYMORPHIC_MATCHER_P2(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), clang::ento::callByRef(), getRunLoopRunM(), gtestComparisonInternal(), gtestThatInternal(), and hasUnguardedAccess().
Matches case statements inside switch statements.
Given
caseStmt() matches 'case 42:'.
Definition at line 947 of file ASTMatchersInternal.cpp.
Matches any cast nodes of Clang's AST.
Example: castExpr() matches each of the following:
but does not match
Definition at line 1018 of file ASTMatchersInternal.cpp.
Referenced by addFixitForObjCARCConversion(), CheckObjCBridgeCFCast(), CheckObjCBridgeNSCast(), clang::SemaObjC::CheckObjCBridgeRelatedCast(), clang::SemaObjC::CheckObjCConversion(), clang::SemaObjC::CheckTollFreeBridgeCast(), clang::SemaObjC::CheckTollFreeBridgeStaticCast(), clang::SemaObjC::diagnoseARCUnbridgedCast(), diagnoseObjCARCConversion(), getSimpleArrayDecayOperand(), and tryEmitARCCopyWeakInit().
const internal::VariadicDynCastAllOfMatcher< Stmt, CharacterLiteral > clang::ast_matchers::characterLiteral |
Matches character literals (also matches wchar_t).
Not matching Hex-encoded chars (e.g. 0x1234, which is a IntegerLiteral), though.
Example matches 'a', L'a'
Definition at line 962 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ChooseExpr > clang::ast_matchers::chooseExpr |
Matches GNU __builtin_choose_expr.
Definition at line 975 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplateDecl > clang::ast_matchers::classTemplateDecl |
Matches C++ class template declarations.
Example matches Z
Definition at line 775 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplatePartialSpecializationDecl > clang::ast_matchers::classTemplatePartialSpecializationDecl |
Matches C++ class template partial specializations.
Given
classTemplatePartialSpecializationDecl() matches the specialization A<T,T*,I>
but not A<int,int,1>
Definition at line 781 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ClassTemplateSpecializationDecl > clang::ast_matchers::classTemplateSpecializationDecl |
Matches C++ class template specializations.
Given
classTemplateSpecializationDecl() matches the specializations A<int>
and A<double>
Definition at line 778 of file ASTMatchersInternal.cpp.
Referenced by gtestThatInternal().
const internal::VariadicDynCastAllOfMatcher< Stmt, CoawaitExpr > clang::ast_matchers::coawaitExpr |
Matches co_await expressions.
Given
coawaitExpr() matches 'co_await 1'
Definition at line 979 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<ComplexType> clang::ast_matchers::complexType |
Definition at line 1078 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData(), clang::CodeGen::CodeGenFunction::emitAddrOfImagComponent(), clang::CodeGen::CodeGenFunction::emitAddrOfRealComponent(), and clang::CIRGen::ConstantEmitter::tryEmitPrivate().
const internal::VariadicDynCastAllOfMatcher< Stmt, CompoundLiteralExpr > clang::ast_matchers::compoundLiteralExpr |
Matches compound (i.e.
non-scalar) literals
Example match: {1}, (1, 2)
Definition at line 972 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CompoundStmt > clang::ast_matchers::compoundStmt |
Matches compound statements.
Example matches '{}' and '{{}}' in 'for (;;) {{}}'
Definition at line 949 of file ASTMatchersInternal.cpp.
Referenced by clang::CIRGen::CIRGenFunction::emitSwitchBody().
const internal::VariadicDynCastAllOfMatcher< Decl, ConceptDecl > clang::ast_matchers::conceptDecl |
Matches concept declarations.
Example matches integral
Definition at line 829 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ConditionalOperator > clang::ast_matchers::conditionalOperator |
Matches conditional operator expressions.
Example matches a ? b : c
Definition at line 997 of file ASTMatchersInternal.cpp.
Referenced by hasUnguardedAccess().
const AstTypeMatcher<ConstantArrayType> clang::ast_matchers::constantArrayType |
Definition at line 1079 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ConstantExpr > clang::ast_matchers::constantExpr |
Matches a constant expression wrapper.
Example matches the constant in the case statement: (matcher = constantExpr())
Definition at line 898 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ContinueStmt > clang::ast_matchers::continueStmt |
Matches continue statements.
Given
continueStmt() matches 'continue'
Definition at line 939 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ConvertVectorExpr > clang::ast_matchers::convertVectorExpr |
Matches builtin function __builtin_convertvector.
Definition at line 977 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CoreturnStmt > clang::ast_matchers::coreturnStmt |
Matches co_return statements.
Given
coreturnStmt() matches 'co_return'
Definition at line 940 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CoroutineBodyStmt > clang::ast_matchers::coroutineBodyStmt |
Matches coroutine body statements.
coroutineBodyStmt() matches the coroutine below
Definition at line 951 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CoyieldExpr > clang::ast_matchers::coyieldExpr |
Matches co_yield expressions.
Given
coyieldExpr() matches 'co_yield 1'
Definition at line 983 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CStyleCastExpr > clang::ast_matchers::cStyleCastExpr |
Matches a C-style cast expression.
Example: Matches (int) 2.2f in
Definition at line 1013 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher<Stmt, CUDAKernelCallExpr> clang::ast_matchers::cudaKernelCallExpr |
Definition at line 1075 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< CXXBaseSpecifier > clang::ast_matchers::cxxBaseSpecifier |
Matches class bases.
Examples matches public
virtual B.
Definition at line 787 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXBindTemporaryExpr > clang::ast_matchers::cxxBindTemporaryExpr |
Matches nodes where temporaries are created.
Example matches FunctionTakesString(GetStringByValue()) (matcher = cxxBindTemporaryExpr())
Definition at line 906 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXBoolLiteralExpr > clang::ast_matchers::cxxBoolLiteral |
Matches bool literals.
Example matches true
Definition at line 958 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXCatchStmt > clang::ast_matchers::cxxCatchStmt |
Matches catch statements.
cxxCatchStmt() matches 'catch(int i)'
Definition at line 952 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXConstCastExpr > clang::ast_matchers::cxxConstCastExpr |
Matches a const_cast expression.
Example: Matches const_cast<int*>(&r) in
Definition at line 1011 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXConstructExpr > clang::ast_matchers::cxxConstructExpr |
Matches constructor call expressions (including implicit ones).
Example matches string(ptr, n) and ptr within arguments of f (matcher = cxxConstructExpr())
Definition at line 901 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2().
const internal::VariadicDynCastAllOfMatcher< Decl, CXXConstructorDecl > clang::ast_matchers::cxxConstructorDecl |
Matches C++ constructor declarations.
Example matches Foo::Foo() and Foo::Foo(int)
Definition at line 819 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2().
const internal::VariadicDynCastAllOfMatcher< Decl, CXXConversionDecl > clang::ast_matchers::cxxConversionDecl |
Matches conversion operator declarations.
Example matches the operator.
Definition at line 828 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< CXXCtorInitializer > clang::ast_matchers::cxxCtorInitializer |
Matches constructor initializers.
Examples matches i(42)
.
Definition at line 788 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, CXXDeductionGuideDecl > clang::ast_matchers::cxxDeductionGuideDecl |
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDefaultArgExpr > clang::ast_matchers::cxxDefaultArgExpr |
Matches the value of a default argument at the call site.
Example matches the CXXDefaultArgExpr placeholder inserted for the default value of the second parameter in the call expression f(42) (matcher = cxxDefaultArgExpr())
Definition at line 920 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDeleteExpr > clang::ast_matchers::cxxDeleteExpr |
Matches delete expressions.
Given
cxxDeleteExpr() matches 'delete X'.
Definition at line 910 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDependentScopeMemberExpr > clang::ast_matchers::cxxDependentScopeMemberExpr |
Matches member expressions where the actual member referenced could not be resolved because the base expression or the member name was dependent.
Given
cxxDependentScopeMemberExpr() matches t.g
Definition at line 847 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, CXXDestructorDecl > clang::ast_matchers::cxxDestructorDecl |
Matches explicit C++ destructor declarations.
Example matches Foo::~Foo()
Definition at line 821 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXDynamicCastExpr > clang::ast_matchers::cxxDynamicCastExpr |
Matches a dynamic_cast expression.
Example: cxxDynamicCastExpr() matches dynamic_cast<D*>(&b); in
Definition at line 1009 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXFoldExpr > clang::ast_matchers::cxxFoldExpr |
Matches C++17 fold expressions.
Example matches (0 + ... + args):
Definition at line 925 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXForRangeStmt > clang::ast_matchers::cxxForRangeStmt |
Matches range-based for statements.
cxxForRangeStmt() matches 'for (auto a : i)'
Definition at line 935 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXFunctionalCastExpr > clang::ast_matchers::cxxFunctionalCastExpr |
Matches functional cast expressions.
Example: Matches Foo(bar);
Definition at line 1020 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXMemberCallExpr > clang::ast_matchers::cxxMemberCallExpr |
Matches member call expressions.
Example matches x.y()
Definition at line 851 of file ASTMatchersInternal.cpp.
Referenced by gtestCallInternal(), and gtestCallInternal().
const internal::VariadicDynCastAllOfMatcher< Decl, CXXMethodDecl > clang::ast_matchers::cxxMethodDecl |
Matches method declarations.
Example matches y
Definition at line 826 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2(), and getComparisonDecl().
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNewExpr > clang::ast_matchers::cxxNewExpr |
Matches new expressions.
Given
cxxNewExpr() matches 'new X'.
Definition at line 909 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNoexceptExpr > clang::ast_matchers::cxxNoexceptExpr |
Matches noexcept expressions.
Given
cxxNoexceptExpr() matches noexcept(a()), noexcept(b()) and noexcept(c()). doesn't match the noexcept specifier in the declarations a, b, c or d.
Definition at line 912 of file ASTMatchersInternal.cpp.
Referenced by clang::ExprMutationAnalyzer::isUnevaluated().
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXNullPtrLiteralExpr > clang::ast_matchers::cxxNullPtrLiteralExpr |
Matches nullptr literal.
Definition at line 974 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXOperatorCallExpr > clang::ast_matchers::cxxOperatorCallExpr |
Matches overloaded operator calls.
Note that if an operator isn't overloaded, it won't match. Instead, use binaryOperator matcher. Currently it does not match operators such as new delete. FIXME: figure out why these do not match?
Example matches both operator<<((o << b), c) and operator<<(o, b) (matcher = cxxOperatorCallExpr())
See also the binaryOperation() matcher for more-general matching of binary uses of this AST node.
Definition at line 922 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2(), gtestCallInternal(), and gtestThatInternal().
const internal::VariadicDynCastAllOfMatcher< Decl, CXXRecordDecl > clang::ast_matchers::cxxRecordDecl |
Matches C++ class declarations.
Example matches X
, Z
Definition at line 773 of file ASTMatchersInternal.cpp.
Referenced by clang::CIRGen::CIRGenTypes::convertRecordDeclType(), getComparisonDecl(), isExactClass(), clang::tooling::isKnownPointerLikeType(), isSubclass(), and clang::dataflow::UncheckedOptionalAccessModel::optionalClassDecl().
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXReinterpretCastExpr > clang::ast_matchers::cxxReinterpretCastExpr |
Matches a reinterpret_cast expression.
Either the source expression or the destination type can be matched using has(), but hasDestinationType() is more specific and can be more readable.
Example matches reinterpret_cast<char*>(&p) in
Definition at line 1005 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXRewrittenBinaryOperator > clang::ast_matchers::cxxRewrittenBinaryOperator |
Matches rewritten binary operators.
Example matches use of "<":
See also the binaryOperation() matcher for more-general matching of this AST node.
Definition at line 924 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXStaticCastExpr > clang::ast_matchers::cxxStaticCastExpr |
Matches a C++ static_cast expression.
Example: cxxStaticCastExpr() matches static_cast<long>(8) in
Definition at line 1007 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXStdInitializerListExpr > clang::ast_matchers::cxxStdInitializerListExpr |
Matches C++ initializer list expressions.
Given
cxxStdInitializerListExpr() matches "{ 1, 2, 3 }" and "{ 4, 5 }"
Definition at line 882 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXTemporaryObjectExpr > clang::ast_matchers::cxxTemporaryObjectExpr |
Matches functional cast expressions having N != 1 arguments.
Example: Matches Foo(bar, bar)
Definition at line 1022 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXThisExpr > clang::ast_matchers::cxxThisExpr |
Matches implicit and explicit this expressions.
Example matches the implicit this expression in "return i". (matcher = cxxThisExpr())
Definition at line 904 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXThrowExpr > clang::ast_matchers::cxxThrowExpr |
Matches throw expressions.
cxxThrowExpr() matches 'throw 5'
Definition at line 954 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXTryStmt > clang::ast_matchers::cxxTryStmt |
Matches try statements.
cxxTryStmt() matches 'try {}'
Definition at line 953 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXUnresolvedConstructExpr > clang::ast_matchers::cxxUnresolvedConstructExpr |
Matches unresolved constructor call expressions.
Example matches T(t) in return statement of f (matcher = cxxUnresolvedConstructExpr())
Definition at line 903 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DecayedType> clang::ast_matchers::decayedType |
Definition at line 1110 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< Decl > clang::ast_matchers::decl |
Matches declarations.
Examples matches X
, C
, and the friend declaration inside C
;
Definition at line 762 of file ASTMatchersInternal.cpp.
Referenced by clang::Sema::ActOnForEachDeclStmt(), clang::SemaObjC::ActOnMethodDeclaration(), clang::SemaObjC::actOnObjCTypeArgsOrProtocolQualifiers(), applyAPINotesType(), applyNullability(), checkMethodFamilyMismatch(), checkTempObjectsInSamePool(), CXXRecordMembersNamed(), clang::Sema::deduceHLSLAddressSpace(), clang::CIRGen::CIRGenModule::emitDeclContext(), clang::CIRGen::CIRGenModule::emitGlobalDefinition(), clang::CIRGen::CIRGenModule::emitTopLevelDecl(), clang::CIRGen::CIRGenModule::getGlobalVisibilityAttrFromDecl(), clang::ento::StoreManager::getLValueIvar(), clang::CodeGen::CodeGenModule::getMemberPointerConstant(), getTemplateOrInnerLocStart(), clang::ObjCInterfaceDecl::getTypeParamList(), cir::CIRGenerator::HandleTopLevelDecl(), hasOnlyNonStaticMemberFunctions(), clang::SemaObjC::inferObjCARCLifetime(), clang::ento::ProgramState::invalidateRegions(), isAccessedBy(), clang::ento::StoreManager::iterBindings(), clang::MSPropertyRefExpr::MSPropertyRefExpr(), clang::Sema::PopParsingDeclaration(), clang::CIRGen::CIRGenRecordLayout::print(), clang::ento::ExprEngine::ProcessInitializer(), clang::serialization::DataStreamBasicReader< Impl >::readLValuePathSerializationHelper(), clang::CIRGen::CIRGenModule::setFunctionAttributes(), clang::tryToFindPtrOrigin(), and clang::ASTDeclReader::VisitBlockDecl().
const internal::VariadicDynCastAllOfMatcher< Decl, DeclaratorDecl > clang::ast_matchers::declaratorDecl |
Matches declarator declarations (field, variable, function and non-type template parameter declarations).
Given
declaratorDecl() matches int
y.
Definition at line 783 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclRefExpr > clang::ast_matchers::declRefExpr |
Matches expressions that refer to declarations.
Example matches x in if (x)
Definition at line 927 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), clang::ento::callByRef(), clang::ento::changeIntBoundNode(), clang::ento::forLoopMatcher(), clang::ento::getAddrTo(), and clang::ento::simpleCondition().
Matches declaration statements.
Given
declStmt() matches 'int a'.
Definition at line 842 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), and clang::ento::forLoopMatcher().
const AstTypeMatcher<DecltypeType> clang::ast_matchers::decltypeType |
Definition at line 1088 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, DecompositionDecl > clang::ast_matchers::decompositionDecl |
Matches decomposition-declarations.
Examples matches the declaration node with foo
and bar
, but not number
. (matcher = declStmt(has(decompositionDecl())))
Definition at line 763 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DeducedTemplateSpecializationType> clang::ast_matchers::deducedTemplateSpecializationType |
Definition at line 1081 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, DefaultStmt > clang::ast_matchers::defaultStmt |
Matches default statements inside switch statements.
Given
defaultStmt() matches 'default:'.
Definition at line 948 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, DependentCoawaitExpr > clang::ast_matchers::dependentCoawaitExpr |
Matches co_await expressions where the type of the promise is dependent.
Definition at line 981 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DependentNameType> clang::ast_matchers::dependentNameType |
Definition at line 1111 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, DependentScopeDeclRefExpr > clang::ast_matchers::dependentScopeDeclRefExpr |
Matches expressions that refer to dependent scope declarations.
example matches T::v;
Definition at line 929 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DependentSizedArrayType> clang::ast_matchers::dependentSizedArrayType |
Definition at line 1082 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DependentSizedExtVectorType> clang::ast_matchers::dependentSizedExtVectorType |
Definition at line 1083 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<DependentTemplateSpecializationType> clang::ast_matchers::dependentTemplateSpecializationType |
Definition at line 1113 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, DesignatedInitExpr > clang::ast_matchers::designatedInitExpr |
Matches C99 designated initializer expressions [C99 6.7.8].
Example: Matches { [2].y = 1.0, [0].x = 1.0 }
Definition at line 1026 of file ASTMatchersInternal.cpp.
Matches do statements.
Given
doStmt() matches 'do {} while(true)'
Definition at line 937 of file ASTMatchersInternal.cpp.
const internal::VariadicOperatorMatcherFunc< 2, std::numeric_limits< unsigned >::max()> clang::ast_matchers::eachOf = {internal::DynTypedMatcher::VO_EachOf} |
Matches if any of the given matchers matches.
Unlike anyOf
, eachOf
will generate a match result for each matching submatcher.
For example, in:
The matcher:
will generate two results binding "v", the first of which binds the field declaration of a
, the second the field declaration of b
.
Usable as: Any Matcher
Definition at line 1029 of file ASTMatchersInternal.cpp.
Referenced by findAll().
const internal::VariadicDynCastAllOfMatcher< Decl, EnumConstantDecl > clang::ast_matchers::enumConstantDecl |
Matches enum constants.
Example matches A, B, C
Definition at line 824 of file ASTMatchersInternal.cpp.
Matches enum declarations.
Example matches X
Definition at line 822 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<EnumType> clang::ast_matchers::enumType |
Definition at line 1101 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ExplicitCastExpr > clang::ast_matchers::explicitCastExpr |
Matches explicit cast expressions.
Matches any cast expression written in user code, whether it be a C-style cast, a functional-style cast, or a keyword cast.
Does not match implicit conversions.
Note: the name "explicitCast" is chosen to match Clang's terminology, as Clang uses the term "cast" to apply to implicit conversions as well as to actual cast expressions.
Example: matches all five of the casts in
but does not match the implicit conversion in
Definition at line 1015 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ExportDecl > clang::ast_matchers::exportDecl |
Matches any export declaration.
Example matches following declarations.
Definition at line 816 of file ASTMatchersInternal.cpp.
Matches expressions.
Example matches x()
Definition at line 926 of file ASTMatchersInternal.cpp.
Referenced by clang::Sema::ActOnFileScopeAsmDecl(), AST_POLYMORPHIC_MATCHER_P2(), clang::CFGTemporaryDtor::CFGTemporaryDtor(), diagnoseScopedEnums(), clang::CIRGen::CIRGenFunction::emitAlignmentAssumption(), emitAtomicOp(), clang::CIRGen::CIRGenFunction::emitCaseDefaultCascade(), clang::CodeGen::CodeGenFunction::EmitConditionalOperatorLValue(), clang::CIRGen::CIRGenFunction::emitCXXPseudoDestructorExpr(), clang::CodeGen::CodeGenFunction::EmitObjCThrowOperand(), clang::CIRGen::CIRGenFunction::emitOpenACCIntExpr(), clang::CIRGen::CIRGenFunction::emitOpenACCWaitConstruct(), emitPointerArithmetic(), emitPointerArithmetic(), clang::CIRGen::CIRGenFunction::emitPointerWithAlignment(), clang::Expr::findBoundMemberType(), clang::CIRGen::CIRGenCallee::forPseudoDestructor(), clang::CodeGen::CGCXXABI::GetArrayCookieSize(), clang::CodeGen::CGCXXABI::GetDeletedVirtualCallName(), getDereferenceExpr(), getIncrementedVar(), clang::ento::SValBuilder::getMetadataSymbolVal(), gtestThatInternal(), clang::CodeGen::CGCXXABI::InitializeArrayCookie(), clang::ExprMutationAnalyzer::isUnevaluated(), clang::ento::SValBuilder::makeLoc(), clang::analyze_os_log::OSLogBufferItem::OSLogBufferItem(), clang::CodeGen::CGCXXABI::ReadArrayCookie(), clang::CodeGen::CGCXXABI::requiresArrayCookie(), clang::CodeGen::CGCXXABI::requiresArrayCookie(), clang::Sema::FullExprArg::Sema, clang::InitListExpr::setInit(), clang::CIRGen::CIRGenFunction::OpaqueValueMapping::shouldBindAsLValue(), clang::CIRGen::CIRGenFunction::OpaqueValueMappingData::shouldBindAsLValue(), clang::CodeGen::CodeGenFunction::OpaqueValueMapping::shouldBindAsLValue(), clang::CodeGen::CodeGenFunction::OpaqueValueMappingData::shouldBindAsLValue(), and clang::InitListExpr::updateInit().
const internal::VariadicDynCastAllOfMatcher< Stmt, ExprWithCleanups > clang::ast_matchers::exprWithCleanups |
Matches expressions that introduce cleanups to be run at the end of the sub-expression's evaluation.
Example matches std::string()
Definition at line 879 of file ASTMatchersInternal.cpp.
Matches field declarations.
Given
fieldDecl() matches 'm'.
Definition at line 834 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, FixedPointLiteral > clang::ast_matchers::fixedPointLiteral |
Matches fixed-point literals eg.
0.5r, 0.5hr, 0.5lr, 0.5uhr, 0.5ur, 0.5ulr 1.0k, 1.0hk, 1.0lk, 1.0uhk, 1.0uk, 1.0ulk Exponents 1.0e10k Hexadecimal numbers 0x0.2p2r
Does not match implicit conversions such as first two lines:
\compile_args{-ffixed-point;-std=c99}
The matcher \matcher{fixedPointLiteral()} matches \match{1.25hk}, \match{0.25hr}, \match{0.35uhr}, \match{1.45uhk}, \match{1.575e1k}, but does not match \nomatch{12.5} and \nomatch{2} from the code block.
Definition at line 968 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, FloatingLiteral > clang::ast_matchers::floatLiteral |
Matches float literals of all sizes / encodings, e.g.
1.0, 1.0f, 1.0L and 1e10.
Does not match implicit conversions such as
Definition at line 965 of file ASTMatchersInternal.cpp.
const internal::ArgumentAdaptingMatcherFunc< internal::ForEachMatcher > clang::ast_matchers::forEach |
Matches AST nodes that have child AST nodes that match the provided matcher.
Example matches X, Y, Y::X, Z::Y, Z::Y::X (matcher = cxxRecordDecl(forEach(cxxRecordDecl(hasName("X")))
ChildT must be an AST base type.
As opposed to 'has', 'forEach' will cause a match for each result that matches instead of only on the first one.
Usable as: Any Matcher
Definition at line 1054 of file ASTMatchersInternal.cpp.
const internal::ArgumentAdaptingMatcherFunc< internal::ForEachDescendantMatcher > clang::ast_matchers::forEachDescendant = {} |
Matches AST nodes that have descendant AST nodes that match the provided matcher.
Example matches X, A, A::X, B, B::C, B::C::X (matcher = cxxRecordDecl(forEachDescendant(cxxRecordDecl(hasName("X")))))
DescendantT must be an AST base type.
As opposed to 'hasDescendant', 'forEachDescendant' will cause a match for each result that matches instead of only on the first one.
Note: Recursively combined ForEachDescendant can cause many matches: cxxRecordDecl(forEachDescendant(cxxRecordDecl( forEachDescendant(cxxRecordDecl()) ))) will match 10 times (plus injected class name matches) on:
Usable as: Any Matcher
Definition at line 1057 of file ASTMatchersInternal.cpp.
Referenced by findAll().
Matches for statements.
Example matches 'for (;;) {}'
Definition at line 933 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::forLoopMatcher().
const internal::VariadicDynCastAllOfMatcher< Decl, FriendDecl > clang::ast_matchers::friendDecl |
Matches friend declarations.
Given
friendDecl() matches 'friend void foo()'.
Definition at line 840 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, FunctionDecl > clang::ast_matchers::functionDecl |
Matches function declarations.
Example matches f
Definition at line 837 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2(), callsNames(), checkTempObjectsInNoPool(), getComparisonDecl(), getRunLoopRunM(), gtestCallInternal(), gtestCallInternal(), gtestThatInternal(), and hasUnguardedAccess().
const AstTypeMatcher<FunctionProtoType> clang::ast_matchers::functionProtoType |
Definition at line 1090 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, FunctionTemplateDecl > clang::ast_matchers::functionTemplateDecl |
Matches C++ function template declarations.
Example matches f
Definition at line 839 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<FunctionType> clang::ast_matchers::functionType |
Definition at line 1089 of file ASTMatchersInternal.cpp.
Referenced by clang::CodeGen::CodeGenFunction::EmitCallee(), and clang::CIRGen::CIRGenFunction::emitCallee().
const internal::VariadicDynCastAllOfMatcher< Stmt, GenericSelectionExpr > clang::ast_matchers::genericSelectionExpr |
Matches C11 _Generic expression.
Definition at line 986 of file ASTMatchersInternal.cpp.
Referenced by clang::ExprMutationAnalyzer::isUnevaluated().
const internal::VariadicDynCastAllOfMatcher< Stmt, GNUNullExpr > clang::ast_matchers::gnuNullExpr |
Matches GNU __null expression.
Definition at line 984 of file ASTMatchersInternal.cpp.
Matches goto statements.
Given
gotoStmt() matches 'goto FOO'
Definition at line 942 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::hasSuspiciousStmt().
const internal::ArgumentAdaptingMatcherFunc< internal::HasMatcher > clang::ast_matchers::has = {} |
Matches AST nodes that have child AST nodes that match the provided matcher.
Example matches X, Y (matcher = cxxRecordDecl(has(cxxRecordDecl(hasName("X")))
ChildT must be an AST base type.
Usable as: Any Matcher Note that has is direct matcher, so it also matches things like implicit casts and paren casts. If you are matching with expr then you should probably consider using ignoringParenImpCasts like: has(ignoringParenImpCasts(expr())).
Definition at line 1051 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), getLiteralInfo(), and clang::SanitizerSet::has().
const internal::ArgumentAdaptingMatcherFunc< internal::HasAncestorMatcher, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr >, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr > > clang::ast_matchers::hasAncestor = {} |
Matches AST nodes that have an ancestor that matches the provided matcher.
Given
expr
(integerLiteral(hasAncestor(ifStmt()))) matches 42
, but not 43.
Usable as: Any Matcher
Definition at line 1067 of file ASTMatchersInternal.cpp.
Referenced by checkTempObjectsInNoPool(), checkTempObjectsInSamePool(), and clang::ExprMutationAnalyzer::isUnevaluated().
const internal::VariadicFunction< internal::Matcher< NamedDecl >, StringRef, internal::hasAnyNameFunc > clang::ast_matchers::hasAnyName = {} |
Matches NamedDecl nodes that have any of the specified names.
This matcher is only provided as a performance optimization of hasName.
is equivalent to, but faster than
Definition at line 1040 of file ASTMatchersInternal.cpp.
Referenced by callsNames(), hasUnguardedAccess(), and clang::tooling::isKnownPointerLikeType().
const internal::VariadicFunction<internal::HasOpNameMatcher, StringRef, internal::hasAnyOperatorNameFunc> clang::ast_matchers::hasAnyOperatorName = {} |
Definition at line 1044 of file ASTMatchersInternal.cpp.
const internal::VariadicFunction< internal::HasOverloadOpNameMatcher, StringRef, internal::hasAnyOverloadedOperatorNameFunc > clang::ast_matchers::hasAnyOverloadedOperatorName = {} |
Matches overloaded operator names.
Matches overloaded operator names specified in strings without the "operator" prefix: e.g. "<<".
hasAnyOverloadedOperatorName("+", "-") Is equivalent to anyOf(hasOverloadedOperatorName("+"), hasOverloadedOperatorName("-"))
Definition at line 1047 of file ASTMatchersInternal.cpp.
const internal::VariadicFunction< internal::Matcher< ObjCMessageExpr >, StringRef, internal::hasAnySelectorFunc > clang::ast_matchers::hasAnySelector = {} |
Matches when at least one of the supplied string equals to the Selector.getAsString()
matcher = objCMessageExpr(hasSelector("methodA:", "methodB:")); matches both of the expressions below:
Definition at line 1050 of file ASTMatchersInternal.cpp.
const internal::ArgumentAdaptingMatcherFunc< internal::HasDescendantMatcher > clang::ast_matchers::hasDescendant = {} |
Matches AST nodes that have descendant AST nodes that match the provided matcher.
Example matches X, Y, Z (matcher = cxxRecordDecl(hasDescendant(cxxRecordDecl(hasName("X")))))
DescendantT must be an AST base type.
Usable as: Any Matcher
Definition at line 1053 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), checkTempObjectsInNoPool(), checkTempObjectsInSamePool(), clang::ento::getWidenedLoopState(), clang::ento::hasSuspiciousStmt(), hasUnguardedAccess(), clang::ExprMutationAnalyzer::isUnevaluated(), and potentiallyWritesIntoIvar().
const internal::ArgumentAdaptingMatcherFunc< internal::HasParentMatcher, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr >, internal::TypeList< Decl, NestedNameSpecifierLoc, Stmt, TypeLoc, Attr > > clang::ast_matchers::hasParent = {} |
Matches AST nodes that have a parent that matches the provided matcher.
Given
compoundStmt
(hasParent(ifStmt())) matches "{ int x = 43; }".
Usable as: Any Matcher
Definition at line 1062 of file ASTMatchersInternal.cpp.
Matches if statements.
Example matches 'if (x) {}'
Definition at line 932 of file ASTMatchersInternal.cpp.
Referenced by hasUnguardedAccess().
const internal::VariadicDynCastAllOfMatcher< Stmt, ImaginaryLiteral > clang::ast_matchers::imaginaryLiteral |
Matches imaginary literals, which are based on integer and floating point literals e.g.: 1i, 1.0i.
Definition at line 966 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ImplicitCastExpr > clang::ast_matchers::implicitCastExpr |
Matches the implicit cast nodes of Clang's AST.
This matches many different places, including function call return value eliding, as well as any type conversions.
Definition at line 1017 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ImplicitValueInitExpr > clang::ast_matchers::implicitValueInitExpr |
Matches implicit initializers of init list expressions.
Given
implicitValueInitExpr() matches "[0].y" (implicitly)
Definition at line 884 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<IncompleteArrayType> clang::ast_matchers::incompleteArrayType |
Definition at line 1084 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, IndirectFieldDecl > clang::ast_matchers::indirectFieldDecl |
Matches indirect field declarations.
Given
indirectFieldDecl() matches 'a'.
Definition at line 836 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, InitListExpr > clang::ast_matchers::initListExpr |
Matches init list expressions.
Given
initListExpr() matches "{ 1, 2 }" and "{ 5, 6 }"
Definition at line 880 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef().
const AstTypeMatcher<InjectedClassNameType> clang::ast_matchers::injectedClassNameType |
Definition at line 1109 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, IntegerLiteral > clang::ast_matchers::integerLiteral |
Matches integer literals of all sizes / encodings, e.g.
1, 1L, 0x1 and 1U.
Does not match character-encoded integers such as L'a'.
Definition at line 964 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::forLoopMatcher(), and clang::ento::simpleCondition().
const internal::MapAnyOfMatcher< CallExpr, CXXConstructExpr > clang::ast_matchers::invocation |
Matches function calls and constructor calls.
Because CallExpr and CXXConstructExpr do not share a common base class with API accessing arguments etc, AST Matchers for code which should match both are typically duplicated. This matcher removes the need for duplication.
Given code
The matcher
matches the expression in both doCall and doConstruct
Definition at line 994 of file ASTMatchersInternal.cpp.
Matches a declaration of label.
Given
labelDecl() matches 'FOO:'
Definition at line 768 of file ASTMatchersInternal.cpp.
Matches label statements.
Given
labelStmt() matches 'FOO:'
Definition at line 943 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< LambdaCapture > clang::ast_matchers::lambdaCapture |
Matches lambda captures.
Given
In the matcher lambdaExpr(hasAnyCapture(lambdaCapture())), lambdaCapture() matches x and x=1.
Definition at line 799 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, LambdaExpr > clang::ast_matchers::lambdaExpr |
Matches lambda expressions.
Example matches [&](){return 5;}
Definition at line 849 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, LinkageSpecDecl > clang::ast_matchers::linkageSpecDecl |
Matches a declaration of a linkage specification.
Given
linkageSpecDecl() matches "extern "C" {}"
Definition at line 766 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<LValueReferenceType> clang::ast_matchers::lValueReferenceType |
Definition at line 1098 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<MacroQualifiedType> clang::ast_matchers::macroQualifiedType |
Definition at line 1093 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, MaterializeTemporaryExpr > clang::ast_matchers::materializeTemporaryExpr |
Matches nodes where temporaries are materialized.
Example: Given
materializeTemporaryExpr() matches 'f()' in these statements
but does not match
Definition at line 908 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, MemberExpr > clang::ast_matchers::memberExpr |
Matches member expressions.
Given
memberExpr() matches this->x, x, y.x, a, this->b
Definition at line 843 of file ASTMatchersInternal.cpp.
Referenced by hasUnguardedAccess().
const AstTypeMatcher<MemberPointerType> clang::ast_matchers::memberPointerType |
Definition at line 1094 of file ASTMatchersInternal.cpp.
Matches a declaration of anything that could have a name.
Example matches X
, S
, the anonymous union type, i
, and U
;
Definition at line 767 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, NamespaceAliasDecl > clang::ast_matchers::namespaceAliasDecl |
Matches a declaration of a namespace alias.
Given
namespaceAliasDecl() matches "namespace alias" but not "namespace test"
Definition at line 771 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, NamespaceDecl > clang::ast_matchers::namespaceDecl |
Matches a declaration of a namespace.
Given
namespaceDecl() matches "namespace {}" and "namespace test {}"
Definition at line 769 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher<NestedNameSpecifier> clang::ast_matchers::nestedNameSpecifier |
Definition at line 1070 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher<NestedNameSpecifierLoc> clang::ast_matchers::nestedNameSpecifierLoc |
Definition at line 1072 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, NonTypeTemplateParmDecl > clang::ast_matchers::nonTypeTemplateParmDecl |
Matches non-type template parameter declarations.
Given
nonTypeTemplateParmDecl() matches 'N', but not 'T'.
Definition at line 793 of file ASTMatchersInternal.cpp.
Matches null statements.
nullStmt() matches the second ';'
Definition at line 955 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtCatchStmt > clang::ast_matchers::objcCatchStmt |
Matches Objective-C @catch statements.
Example matches @catch
Definition at line 875 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCCategoryDecl > clang::ast_matchers::objcCategoryDecl |
Matches Objective-C category declarations.
Example matches Foo (Additions)
Definition at line 861 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCCategoryImplDecl > clang::ast_matchers::objcCategoryImplDecl |
Matches Objective-C category definitions.
Example matches Foo (Additions)
Definition at line 863 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtFinallyStmt > clang::ast_matchers::objcFinallyStmt |
Matches Objective-C @finally statements.
Example matches @finally
Definition at line 877 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCImplementationDecl > clang::ast_matchers::objcImplementationDecl |
Matches Objective-C implementation declarations.
Example matches Foo
Definition at line 857 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCInterfaceDecl > clang::ast_matchers::objcInterfaceDecl |
Matches Objective-C interface declarations.
Example matches Foo
Definition at line 855 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCIvarDecl > clang::ast_matchers::objcIvarDecl |
Matches Objective-C instance variable declarations.
Example matches _enabled
Definition at line 868 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCIvarRefExpr > clang::ast_matchers::objcIvarRefExpr |
Matches a reference to an ObjCIvar.
Example: matches "a" in "init" method:
Definition at line 930 of file ASTMatchersInternal.cpp.
Referenced by potentiallyWritesIntoIvar().
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCMessageExpr > clang::ast_matchers::objcMessageExpr |
Matches ObjectiveC Message invocation expressions.
The innermost message send invokes the "alloc" class method on the NSString class, while the outermost message send invokes the "initWithString" instance method on the object returned from NSString's "alloc". This matcher should match both message sends.
Definition at line 853 of file ASTMatchersInternal.cpp.
Referenced by getOtherMessageSentM(), and getRunLoopRunM().
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCMethodDecl > clang::ast_matchers::objcMethodDecl |
Matches Objective-C method declarations.
Example matches both declaration and definition of -[Foo method]
Definition at line 865 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<ObjCObjectPointerType> clang::ast_matchers::objcObjectPointerType |
Definition at line 1096 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCPropertyDecl > clang::ast_matchers::objcPropertyDecl |
Matches Objective-C property declarations.
Example matches enabled
Definition at line 870 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ObjCProtocolDecl > clang::ast_matchers::objcProtocolDecl |
Matches Objective-C protocol declarations.
Example matches FooDelegate
Definition at line 859 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCStringLiteral > clang::ast_matchers::objcStringLiteral |
Matches ObjectiveC String literal expressions.
Example matches "abcd" @code NSString *s = @"abcd";
Definition at line 960 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtThrowStmt > clang::ast_matchers::objcThrowStmt |
Matches Objective-C @throw statements.
Example matches @throw
Definition at line 872 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ObjCAtTryStmt > clang::ast_matchers::objcTryStmt |
Matches Objective-C @try statements.
Example matches @try
Definition at line 873 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher<OMPClause, OMPDefaultClause> clang::ast_matchers::ompDefaultClause |
Definition at line 1128 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher<Stmt, OMPExecutableDirective> clang::ast_matchers::ompExecutableDirective |
Definition at line 1126 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, OpaqueValueExpr > clang::ast_matchers::opaqueValueExpr |
Matches opaque value expressions.
They are used as helpers to reference another expressions and can be met in BinaryConditionalOperators, for example.
Example matches 'a'
Definition at line 1001 of file ASTMatchersInternal.cpp.
const internal::VariadicOperatorMatcherFunc< 1, 1 > clang::ast_matchers::optionally |
Matches any node regardless of the submatcher.
However, optionally
will retain any bindings generated by the submatcher. Useful when additional information which may or may not present about a main matching node is desired.
For example, in:
The matcher:
will produce a result binding for both "record" and "var". The matcher will produce a "record" binding for even if there is no data member named "bar" in that class.
Usable as: Any Matcher
Definition at line 1036 of file ASTMatchersInternal.cpp.
Matches parentheses used in expressions.
Example matches (foo() + 1)
Definition at line 899 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ParenListExpr > clang::ast_matchers::parenListExpr |
Matches paren list expressions.
ParenListExprs don't have a predefined type and are used for late parsing. In the final AST, they can be met in template declarations.
Given
parenListExpr() matches "*this" but NOT matches (a, b) because (a, b) has a predefined type and is a ParenExpr, not a ParenListExpr.
Definition at line 885 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<ParenType> clang::ast_matchers::parenType |
Definition at line 1091 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, ParmVarDecl > clang::ast_matchers::parmVarDecl |
Matches parameter variable declarations.
Given
parmVarDecl() matches int
x.
Definition at line 784 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::callByRef().
const AstTypeMatcher<PointerType> clang::ast_matchers::pointerType |
Definition at line 1095 of file ASTMatchersInternal.cpp.
Referenced by clang::SemaObjC::ActOnObjCAtSynchronizedOperand(), clang::Sema::BuildAtomicExpr(), clang::SemaARM::CheckARMBuiltinExclusiveCall(), CheckNonNullArguments(), clang::SemaObjC::CheckObjCForCollectionOperand(), clang::CodeGen::CodeGenFunction::EmitPointerArithmetic(), emitPointerArithmetic(), hasTypePointingTo(), and hasTypePointingTo().
const internal::VariadicDynCastAllOfMatcher<TypeLoc, PointerTypeLoc> clang::ast_matchers::pointerTypeLoc |
Definition at line 807 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, PredefinedExpr > clang::ast_matchers::predefinedExpr |
Matches predefined identifier expressions [C99 6.4.2.2].
Example: Matches func
Definition at line 1024 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher<TypeLoc, QualifiedTypeLoc> clang::ast_matchers::qualifiedTypeLoc |
Definition at line 805 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< QualType > clang::ast_matchers::qualType |
Matches QualTypes
in the clang AST.
Definition at line 800 of file ASTMatchersInternal.cpp.
Referenced by AST_MATCHER_P_OVERLOAD(), AST_MATCHER_P_OVERLOAD(), AST_POLYMORPHIC_MATCHER_P_OVERLOAD(), clang::ento::callByRef(), and clang::CIRGen::CIRGenTypes::convertTypeForMem().
const internal::VariadicDynCastAllOfMatcher< Decl, RecordDecl > clang::ast_matchers::recordDecl |
Matches class, struct, and union declarations.
Example matches X
, Z
, U
, and S
Definition at line 772 of file ASTMatchersInternal.cpp.
Referenced by classifyPointerDeclarator(), clang::CIRGen::CIRGenTypes::getRecordTypeName(), clang::serialization::DataStreamBasicReader< Impl >::readLValuePathSerializationHelper(), and clang::serialization::DataStreamBasicWriter< Impl >::writeLValuePathSerializationHelper().
const AstTypeMatcher<RecordType> clang::ast_matchers::recordType |
Definition at line 1104 of file ASTMatchersInternal.cpp.
Referenced by classifyType(), clang::CIRGen::CIRGenTypes::convertType(), and clang::tooling::isKnownPointerLikeType().
const AstTypeMatcher<ReferenceType> clang::ast_matchers::referenceType |
Definition at line 1097 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), and clang::ento::getWidenedLoopState().
const internal::VariadicDynCastAllOfMatcher<TypeLoc, ReferenceTypeLoc> clang::ast_matchers::referenceTypeLoc |
Definition at line 809 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Expr, RequiresExpr > clang::ast_matchers::requiresExpr |
Matches concept requirement.
Example matches 'requires(T p) { *p; }'
Definition at line 830 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, RequiresExprBodyDecl > clang::ast_matchers::requiresExprBodyDecl |
Matches concept requirement body declaration.
Example matches '{ *p; }'
Definition at line 832 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, ReturnStmt > clang::ast_matchers::returnStmt |
Matches return statements.
Given
returnStmt() matches 'return 1'
Definition at line 941 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::hasSuspiciousStmt().
const AstTypeMatcher<RValueReferenceType> clang::ast_matchers::rValueReferenceType |
Definition at line 1099 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, StaticAssertDecl > clang::ast_matchers::staticAssertDecl |
Matches a C++ static_assert declaration.
Example: staticAssertDecl() matches static_assert(sizeof(S) == sizeof(int)) in
Definition at line 1003 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< Stmt > clang::ast_matchers::stmt |
Matches statements.
Given
stmt() matches both the compound statement '{ ++a; }' and '++a'.
Definition at line 841 of file ASTMatchersInternal.cpp.
Referenced by alignOfExpr(), clang::CFG::BuildOptions::alwaysAdd(), clang::CallEnter::CallEnter(), clang::CFGAutomaticObjDtor::CFGAutomaticObjDtor(), clang::CFGLifetimeEnds::CFGLifetimeEnds(), clang::CFGLoopExit::CFGLoopExit(), clang::CIRGen::CIRGenFunction::emitCaseDefaultCascade(), clang::CIRGen::CIRGenFunction::emitCaseDefaultCascade(), clang::AnalysisDeclContext::getBlockForRegisteredExpression(), clang::ento::getWidenedLoopState(), clang::ento::hasSuspiciousStmt(), hasUnguardedAccess(), clang::ento::isPossiblyEscaped(), clang::ExprMutationAnalyzer::isUnevaluated(), potentiallyWritesIntoIvar(), clang::AnalysisDeclContext::registerForcedBlockExpression(), sizeOfExpr(), and clang::CFG::VisitBlockStmts().
Matches statement expression (GNU extension).
Example match: ({ int X = 4; X; })
Definition at line 988 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, StringLiteral > clang::ast_matchers::stringLiteral |
Matches string literals (also matches wide string literals).
Example matches "abcd", L"abcd"
Definition at line 959 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, SubstNonTypeTemplateParmExpr > clang::ast_matchers::substNonTypeTemplateParmExpr |
Matches substitutions of non-type template parameters.
Given
substNonTypeTemplateParmExpr() matches "N" in the right-hand side of "static const int n = N;"
Definition at line 887 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<SubstTemplateTypeParmType> clang::ast_matchers::substTemplateTypeParmType |
Definition at line 1107 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, SwitchCase > clang::ast_matchers::switchCase |
Matches case and default statements inside switch statements.
Given
switchCase() matches 'case 42:' and 'default:'.
Definition at line 946 of file ASTMatchersInternal.cpp.
Referenced by clang::CIRGen::CIRGenFunction::emitSwitchBody().
const internal::VariadicDynCastAllOfMatcher< Stmt, SwitchStmt > clang::ast_matchers::switchStmt |
Matches switch statements.
Given
switchStmt() matches 'switch(a)'.
Definition at line 945 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::hasSuspiciousStmt(), and hasUnguardedAccess().
const AstTypeMatcher<TagType> clang::ast_matchers::tagType |
Definition at line 1105 of file ASTMatchersInternal.cpp.
Referenced by clang::ASTContext::getCFConstantStringDecl(), and clang::CIRGen::CIRGenTypes::isFuncParamTypeConvertible().
const internal::VariadicAllOfMatcher< TemplateArgument > clang::ast_matchers::templateArgument |
Matches template arguments.
Given
templateArgument() matches 'int' in C<int>.
Definition at line 789 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< TemplateArgumentLoc > clang::ast_matchers::templateArgumentLoc |
Matches template arguments (with location info).
Given
templateArgumentLoc() matches 'int' in C<int>.
Definition at line 790 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< TemplateName > clang::ast_matchers::templateName |
Matches template name.
Given
templateName() matches 'X' in X<int>.
Definition at line 791 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<TemplateSpecializationType> clang::ast_matchers::templateSpecializationType |
Definition at line 1102 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher<TypeLoc, TemplateSpecializationTypeLoc> clang::ast_matchers::templateSpecializationTypeLoc |
Definition at line 812 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, TemplateTemplateParmDecl > clang::ast_matchers::templateTemplateParmDecl |
Matches template template parameter declarations.
Given
templateTypeParmDecl() matches 'Z', but not 'N'.
Definition at line 797 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, TemplateTypeParmDecl > clang::ast_matchers::templateTypeParmDecl |
Matches template type parameter declarations.
Given
templateTypeParmDecl() matches 'T', but not 'N'.
Definition at line 795 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<TemplateTypeParmType> clang::ast_matchers::templateTypeParmType |
Definition at line 1108 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, TranslationUnitDecl > clang::ast_matchers::translationUnitDecl |
Matches the top declaration context.
Given
decl(hasDeclContext(translationUnitDecl())) matches "int X", but not "int Y".
Definition at line 753 of file ASTMatchersInternal.cpp.
const internal::VariadicAllOfMatcher< Type > clang::ast_matchers::type |
Matches Types
in the clang AST.
Definition at line 801 of file ASTMatchersInternal.cpp.
Referenced by clang::Sema::ActOnForEachDeclStmt(), clang::Sema::ActOnIdExpression(), clang::SemaObjC::ActOnObjCAtSynchronizedOperand(), clang::SemaObjC::actOnObjCTypeArgsOrProtocolQualifiers(), clang::CIRGen::CallArgList::add(), clang::CodeGen::CallArgList::add(), addBlockLayout(), clang::CIRGen::CIRGenCXXABI::addImplicitConstructorArgs(), clang::Qualifiers::addObjCGCAttr(), clang::Qualifiers::addObjCLifetime(), clang::SemaSwift::AddParameterABIAttr(), clang::InitializationSequence::AddPassByIndirectCopyRestoreStep(), clang::CodeGen::ConstantAggregateBuilderBase::addPlaceholderWithSize(), clang::Sema::AddPushedVisibilityAttribute(), clang::CodeGen::ConstantAggregateBuilderBase::addRelativeOffset(), clang::CodeGen::ConstantAggregateBuilderBase::addRelativeOffsetToPosition(), clang::CodeGen::ConstantAggregateBuilderBase::addTaggedRelativeOffset(), clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData(), clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData(), clang::CodeGen::swiftcall::SwiftAggLowering::addTypedData(), clang::CIRGen::CallArgList::addUncopiedAggregate(), clang::CodeGen::CallArgList::addUncopiedAggregate(), clang::ASTContext::applyObjCProtocolQualifiers(), clang::applyObjCTypeArgs(), breakDownVectorType(), clang::Sema::BuildDeclarationNameExpr(), clang::Sema::BuildMemberReferenceExpr(), clang::SemaObjC::BuildObjCBoxedExpr(), clang::CIRGen::CIRGenCXXABI::buildStructorSignature(), clang::SemaPPC::BuiltinPPCMMACall(), clang::Type::canHaveNullability(), clang::CharacterLiteral::CharacterLiteral(), clang::Sema::CheckCompleteVariableDeclaration(), CheckNonNullArguments(), checkObjCKindOfType(), checkVarTypeForConstantEmission(), clang::CodeGen::swiftcall::classifyArgumentType(), classifyPointerDeclarator(), clang::CodeGen::swiftcall::classifyReturnType(), classifyType(), classifyTypeForARCConversion(), clang::SemaCodeCompletion::CodeCompleteCase(), clang::ento::SValBuilder::conjureSymbol(), clang::ento::SValBuilder::conjureSymbolVal(), clang::ento::SValBuilder::conjureSymbolVal(), clang::ento::SValBuilder::conjureSymbolVal(), clang::CIRGen::CIRGenFunction::convertTempToRValue(), clang::CodeGen::CodeGenFunction::convertTempToRValue(), clang::CIRGen::CIRGenModule::convertType(), clang::CIRGen::CIRGenTypes::convertType(), clang::IntegerLiteral::Create(), clang::OffsetOfExpr::Create(), clang::PseudoObjectExpr::Create(), clang::UnaryOperator::Create(), clang::FixedPointLiteral::CreateFromRawInt(), clang::CIRGen::CIRGenBuilderTy::createVersionedGlobal(), destroyARCStrongWithStore(), diagnoseBadTypeAttribute(), diagnoseScopedEnums(), distributeFunctionTypeAttr(), distributeNullabilityTypeAttr(), distributeObjCPointerTypeAttr(), clang::CodeGen::CodeGenFunction::EmitARCRetain(), clang::CodeGen::CodeGenFunction::EmitARCRetainAutorelease(), emitARCRetainLoadOfScalar(), clang::CodeGen::CodeGenFunction::EmitARCStoreStrong(), emitAutoreleasedReturnValueMarker(), clang::CodeGen::CodeGenFunction::EmitAutoVarInit(), clang::CIRGen::CIRGenFunction::emitAutoVarInit(), clang::CIRGen::CIRGenFunction::emitAutoVarTypeCleanup(), clang::CodeGen::CodeGenFunction::emitAutoVarTypeCleanup(), clang::CIRGen::CIRGenFunction::emitBuiltinExpr(), clang::CodeGen::CodeGenFunction::emitByrefStructureInit(), clang::CodeGen::CodeGenFunction::EmitCallArg(), clang::CIRGen::CIRGenFunction::emitCaseDefaultCascade(), clang::CIRGen::CIRGenFunction::emitCompoundStmt(), clang::CodeGen::CodeGenFunction::EmitCXXAggrConstructorCall(), clang::CIRGen::CIRGenFunction::emitCXXAggrConstructorCall(), clang::CIRGen::CIRGenFunction::emitCXXConstructExpr(), clang::CIRGen::CIRGenFunction::emitCXXConstructorCall(), clang::CIRGen::CIRGenFunction::emitCXXConstructorCall(), emitCXXDestructMethod(), clang::CIRGen::CIRGenFunction::emitCXXDestructorCall(), EmitCXXNewAllocSize(), emitCXXNewAllocSize(), clang::CodeGen::CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(), EmitDeclInit(), clang::CodeGen::CodeGenFunction::EmitDelegateCallArg(), clang::CIRGen::CIRGenFunction::emitDelegateCallArg(), clang::CIRGen::CIRGenFunction::emitDestroy(), clang::CodeGen::CodeGenFunction::emitDestroy(), clang::CIRGen::CIRGenCXXABI::emitDestructorCall(), clang::CodeGen::CodeGenFunction::EmitExprAsInit(), clang::CIRGen::CIRGenFunction::emitExprAsInit(), clang::CodeGen::CodeGenFunction::EmitExtVectorElementExpr(), clang::CodeGen::CodeGenFunction::EmitObjCConsumeObject(), clang::CodeGen::CodeGenFunction::EmitObjCExtendObjectLifetime(), emitPartialArrayDestroy(), clang::CIRGen::CIRGenFunction::emitVAArg(), clang::CodeGen::CodeGenFunction::EmitVariablyModifiedType(), clang::CIRGen::CIRGenFunction::emitVariablyModifiedType(), clang::CodeGen::CodeGenFunction::EnterDtorCleanups(), clang::ento::SValBuilder::evalBinOp(), clang::ento::SValBuilder::evalUnaryOp(), clang::CodeGen::ConstantAggregateBuilderBase::fillPlaceholderWithInt(), clang::Expr::findBoundMemberType(), clang::CodeGen::ConstantAggregateBuilderBase::finishArray(), clang::FixedPointLiteral::FixedPointLiteral(), clang::Sema::FixOverloadedFunctionReference(), clang::CodeGen::CodeGenFunction::generateDestroyHelper(), clang::CodeGen::ConstantAggregateBuilderBase::getAddrOfCurrentPosition(), clang::CodeGen::ConstantAggregateBuilderBase::getAddrOfPosition(), getArrayDepth(), clang::ASTContext::getAttributedType(), clang::ASTContext::getBaseElementType(), clang::Type::getBaseElementTypeUnsafe(), getBaseMessageSendResultType(), clang::CIRGen::CIRGenModule::getBuiltinLibFunction(), clang::CodeGen::swiftcall::SwiftAggLowering::getCoerceAndExpandTypes(), clang::CIRGen::CIRGenBuilderTy::getCompleteNamedRecordType(), getComplexType(), getComplexType(), clang::ento::SValBuilder::getConjuredHeapSymbolVal(), clang::CIRGen::CIRGenBuilderTy::getConstRecordOrZeroAttr(), clang::CIRGen::CIRGenFunction::getEvaluationKind(), clang::CodeGen::CodeGenFunction::getEvaluationKind(), clang::CIRGen::CIRGenCXXABI::getImplicitConstructorArgs(), getImpliedARCOwnership(), clang::ASTContext::getLifetimeQualifiedType(), clang::CodeGen::CodeGenModule::getMemberPointerConstant(), clang::ento::SValBuilder::getMetadataSymbolVal(), clang::CodeGen::swiftcall::getNaturalAlignment(), getNonMemoryType(), getNullForVariable(), clang::ASTContext::getObjCEncodingTypeSize(), clang::ASTContext::getObjCObjectType(), clang::Type::getPointeeOrArrayElementType(), getStorage(), getTypeAllocSize(), getTypeStoreSize(), clang::ASTContext::getUnqualifiedArrayType(), clang::ASTContext::getUnqualifiedObjCPointerType(), clang::ASTContext::getVariableArrayDecayedType(), clang::CodeGen::CodeGenFunction::getVLAElements1D(), clang::CodeGen::CodeGenFunction::getVLASize(), clang::CodeGen::CodeGenFunction::getVLASize(), clang::SemaObjC::handleBlocksAttr(), handleFunctionTypeAttr(), handleObjCGCTypeAttr(), handleObjCOwnershipTypeAttr(), handleObjCPointerTypeAttr(), handleVisibilityAttr(), clang::CIRGen::CIRGenFunction::hasAggregateEvaluationKind(), clang::CIRGen::CIRGenFunction::hasScalarEvaluationKind(), hasWeakMember(), inferARCLifetimeForPointee(), clang::SemaObjC::inferObjCARCLifetime(), clang::IntegerLiteral::IntegerLiteral(), isConstantEmittableObjectType(), isFullSizeType(), clang::CIRGen::CIRGenTypes::isFuncParamTypeConvertible(), isInAllocaArgument(), clang::tooling::isKnownPointerLikeType(), isMergeableEntryType(), isNonNullType(), clang::Type::isObjCLifetimeType(), clang::CodeGen::CodeGenModule::isPaddedAtomicType(), clang::CodeGen::CodeGenModule::isPaddedAtomicType(), isPlaceholderToRemoveAsArg(), clang::isPtrOfType(), isSafeForCXXConstantCapture(), isTriviallyCopyableTypeImpl(), clang::SemaObjC::LookupMethodInObjectType(), clang::CodeGen::LValue::MakeAddr(), clang::CodeGen::LValue::MakeBitfield(), clang::ento::SValBuilder::makeCompoundVal(), clang::CodeGen::LValue::MakeExtVectorElt(), clang::sema::DelayedDiagnostic::makeForbiddenType(), clang::CodeGen::LValue::MakeGlobalReg(), clang::ento::SValBuilder::makeIntVal(), clang::CodeGen::LValue::MakeMatrixElt(), clang::ento::SValBuilder::makeNonLoc(), clang::ento::SValBuilder::makeNonLoc(), clang::ento::SValBuilder::makeNonLoc(), clang::ento::SValBuilder::makeNonLoc(), clang::ento::SValBuilder::makeNullWithType(), clang::ento::SValBuilder::makeTruthVal(), clang::CodeGen::LValue::MakeVectorElt(), clang::ento::SValBuilder::makeZeroVal(), mergeTypeNullabilityForRedecl(), clang::ObjCIndirectCopyRestoreExpr::ObjCIndirectCopyRestoreExpr(), clang::CodeGen::SwiftABIInfo::occupiesMoreThan(), clang::SemaObjC::PrepareCastToObjCObjectPointer(), processTypeAttrs(), clang::CIRGen::CIRGenFunction::pushDestroy(), clang::CodeGen::CodeGenFunction::pushDestroy(), clang::CodeGen::CodeGenFunction::pushDestroy(), clang::CodeGen::CodeGenFunction::pushDestroyAndDeferDeactivation(), clang::CodeGen::CodeGenFunction::pushDestroyAndDeferDeactivation(), clang::CodeGen::CodeGenFunction::pushEHDestroy(), clang::CodeGen::CodeGenFunction::pushLifetimeExtendedDestroy(), clang::CodeGen::CodeGenFunction::pushLifetimeExtendedDestroy(), PushPragmaVisibility(), clang::Qualifiers::setObjCGCAttr(), clang::Qualifiers::setObjCLifetime(), clang::api_notes::VariableInfo::setType(), clang::ento::SValBuilder::simplifySVal(), clang::QualifierCollector::strip(), tryCaptureAsConstant(), tryEmitARCRetainLoadOfScalar(), tryEmitARCRetainLoadOfScalar(), and clang::UnaryOperator::UnaryOperator().
const internal::VariadicDynCastAllOfMatcher< Decl, TypeAliasDecl > clang::ast_matchers::typeAliasDecl |
Matches type alias declarations.
Given
typeAliasDecl() matches "using Y = int", but not "typedef int X"
Definition at line 757 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, TypeAliasTemplateDecl > clang::ast_matchers::typeAliasTemplateDecl |
Matches type alias template declarations.
typeAliasTemplateDecl() matches
Definition at line 761 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, TypedefDecl > clang::ast_matchers::typedefDecl |
Matches typedef declarations.
Given
typedefDecl() matches "typedef int X", but not "using Y = int"
Definition at line 754 of file ASTMatchersInternal.cpp.
Referenced by CheckNullabilityTypeSpecifier().
const internal::VariadicDynCastAllOfMatcher< Decl, TypedefNameDecl > clang::ast_matchers::typedefNameDecl |
Matches typedef name declarations.
Given
typedefNameDecl() matches "typedef int X" and "using Y = int"
Definition at line 756 of file ASTMatchersInternal.cpp.
Referenced by clang::CIRGen::CIRGenTypes::getRecordTypeName().
const AstTypeMatcher<TypedefType> clang::ast_matchers::typedefType |
Definition at line 1100 of file ASTMatchersInternal.cpp.
Referenced by clang::Type::isObjCIndependentClassType(), and clang::Type::isObjCNSObjectType().
const internal::VariadicAllOfMatcher< TypeLoc > clang::ast_matchers::typeLoc |
Matches TypeLocs
in the clang AST.
Definition at line 802 of file ASTMatchersInternal.cpp.
Referenced by clang::ExprMutationAnalyzer::isUnevaluated().
const internal::VariadicDynCastAllOfMatcher< Stmt, UnaryExprOrTypeTraitExpr > clang::ast_matchers::unaryExprOrTypeTraitExpr |
Matches sizeof (C99), alignof (C++11) and vec_step (OpenCL)
Given
unaryExprOrTypeTraitExpr() matches sizeof(x)
and alignof(x)
Definition at line 815 of file ASTMatchersInternal.cpp.
Referenced by alignOfExpr(), clang::ExprMutationAnalyzer::isUnevaluated(), and sizeOfExpr().
const internal::VariadicDynCastAllOfMatcher< Stmt, UnaryOperator > clang::ast_matchers::unaryOperator |
Matches unary operator expressions.
Example matches !a
Definition at line 995 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::changeIntBoundNode(), clang::ento::forLoopMatcher(), and clang::ento::getAddrTo().
const AstTypeMatcher<UnaryTransformType> clang::ast_matchers::unaryTransformType |
Definition at line 1103 of file ASTMatchersInternal.cpp.
const internal::VariadicOperatorMatcherFunc< 1, 1 > clang::ast_matchers::unless |
Matches if the provided matcher does not match.
Example matches Y (matcher = cxxRecordDecl(unless(hasName("X"))))
Usable as: Any Matcher
Definition at line 1068 of file ASTMatchersInternal.cpp.
Referenced by AST_POLYMORPHIC_MATCHER_P2(), clang::ento::callByRef(), checkTempObjectsInNoPool(), clang::ento::forLoopMatcher(), getOtherMessageSentM(), and clang::ExprMutationAnalyzer::isUnevaluated().
const internal::VariadicDynCastAllOfMatcher< Stmt, UnresolvedLookupExpr > clang::ast_matchers::unresolvedLookupExpr |
Matches reference to a name that can be looked up during parsing but could not be resolved to a specific declaration.
Given
unresolvedLookupExpr() matches
Definition at line 893 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, UnresolvedMemberExpr > clang::ast_matchers::unresolvedMemberExpr |
Matches unresolved member expressions.
Given
unresolvedMemberExpr() matches x.f<T>
Definition at line 845 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, UnresolvedUsingTypenameDecl > clang::ast_matchers::unresolvedUsingTypenameDecl |
Matches unresolved using value declarations that involve the typename.
Given
unresolvedUsingTypenameDecl() matches
Definition at line 897 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, UnresolvedUsingValueDecl > clang::ast_matchers::unresolvedUsingValueDecl |
Matches unresolved using value declarations.
Given
unresolvedUsingValueDecl() matches
Definition at line 895 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Stmt, UserDefinedLiteral > clang::ast_matchers::userDefinedLiteral |
Matches user defined literal operator call.
Example match: "foo"_suffix
Definition at line 970 of file ASTMatchersInternal.cpp.
Matches using declarations.
Given
usingDecl() matches
Definition at line 888 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, UsingDirectiveDecl > clang::ast_matchers::usingDirectiveDecl |
Matches using namespace declarations.
Given
usingDirectiveDecl() matches
Definition at line 891 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, UsingEnumDecl > clang::ast_matchers::usingEnumDecl |
Matches using-enum declarations.
Given
usingEnumDecl() matches
Definition at line 889 of file ASTMatchersInternal.cpp.
const internal::VariadicDynCastAllOfMatcher< Decl, UsingShadowDecl > clang::ast_matchers::usingShadowDecl |
Matches shadow declarations introduced into a scope by a (resolved) using declaration.
Given
usingShadowDecl() matches
Definition at line 759 of file ASTMatchersInternal.cpp.
const AstTypeMatcher<UsingType> clang::ast_matchers::usingType |
Definition at line 1106 of file ASTMatchersInternal.cpp.
Matches any value declaration.
Example matches A, B, C and F
Definition at line 817 of file ASTMatchersInternal.cpp.
Referenced by clang::serialization::DataStreamBasicWriter< Impl >::writeLValuePathSerializationHelper().
Matches variable declarations.
Note: this does not match declarations of member variables, which are "field" declarations in Clang parlance.
Example matches a
Definition at line 833 of file ASTMatchersInternal.cpp.
Referenced by clang::ento::assignedToRef(), clang::ento::callByRef(), clang::ento::changeIntBoundNode(), clang::ento::forLoopMatcher(), clang::ento::getWidenedLoopState(), clang::ento::ExprEngine::ProcessAutomaticObjDtor(), and clang::ento::simpleCondition().
const AstTypeMatcher<VariableArrayType> clang::ast_matchers::variableArrayType |
Definition at line 1085 of file ASTMatchersInternal.cpp.
Referenced by clang::ExprMutationAnalyzer::isUnevaluated().
Matches while statements.
Given
whileStmt() matches 'while (true) {}'.
Definition at line 936 of file ASTMatchersInternal.cpp.