Home
last modified time | relevance | path

Searched defs:LambdaCapture (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h2834 struct LambdaCapture { struct
2835 LambdaCaptureKind Kind;
2836 SourceLocation Loc;
2837 IdentifierInfo *Id;
2838 SourceLocation EllipsisLoc;
2839 LambdaCaptureInitKind InitKind;
2840 ExprResult Init;
2841 ParsedType InitCaptureType;
2842 SourceRange ExplicitRange;
2844 LambdaCapture(LambdaCaptureKind Kind, SourceLocation Loc, in LambdaCapture() function
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h763 LambdaCapture)) { in AST_POLYMORPHIC_MATCHER() argument
4368 internal::Matcher<LambdaCapture>, InnerMatcher) { in AST_MATCHER_P()
4935 AST_MATCHER_P(LambdaExpr, hasAnyCapture, internal::Matcher<LambdaCapture>, in AST_MATCHER_P()
4962 AST_MATCHER_P(LambdaCapture, capturesVar, internal::Matcher<ValueDecl>, in AST_MATCHER_P() argument
4984 AST_MATCHER(LambdaCapture, capturesThis) { return Node.capturesThis(); } in AST_MATCHER() argument
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp1216 LambdaCapture::LambdaCapture(SourceLocation Loc, bool Implicit, in LambdaCapture() function in LambdaCapture
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h60 class LambdaCapture; variable