Home
last modified time | relevance | path

Searched refs:isLambdaCallOperator (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTLambda.h27 inline bool isLambdaCallOperator(const CXXMethodDecl *MD) { in isLambdaCallOperator() function
33 inline bool isLambdaCallOperator(const DeclContext *DC) { in isLambdaCallOperator() function
35 return isLambdaCallOperator(cast<CXXMethodDecl>(DC)); in isLambdaCallOperator()
42 return isLambdaCallOperator(MD) && in isGenericLambdaCallOperatorSpecialization()
73 return (isLambdaCallOperator(MD) || MD->isLambdaStaticInvoker()) && in isGenericLambdaCallOperatorOrStaticInvokerSpecialization()
81 if (isLambdaCallOperator(DC)) in getLambdaAwareParentOfDeclContext()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DUnusedParametersCheck.cpp151 isLambdaCallOperator(Function)) { in warnOnUnusedParameter()
/llvm-project-15.0.7/clang/lib/Index/
H A DIndexBody.cpp465 if (DC && (isLambdaCallOperator(DC) || isa<RequiresExprBodyDecl>(DC))) in VisitParmVarDecl()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCoroutine.cpp513 if (MD->isInstance() && !isLambdaCallOperator(MD)) { in buildCoroutinePromise()
1248 if (MD->isInstance() && !isLambdaCallOperator(MD)) { in collectPlacementArgs()
H A DSemaExprCXX.cpp1145 if (CurLSI && isLambdaCallOperator(CurDC)) { in adjustCVQualifiersForCXXThisWithinLambda()
1180 Closure = isLambdaCallOperator(Closure->getParent()) in adjustCVQualifiersForCXXThisWithinLambda()
1197 if (ThisTy.isNull() && isLambdaCallOperator(CurContext) && in getCurrentThisType()
1212 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext)) in getCurrentThisType()
8835 const bool IsInLambdaDeclContext = isLambdaCallOperator(DC); in ActOnFinishFullExpr()
H A DSemaLambda.cpp128 isLambdaCallOperator(EnclosingDC)); in getStackIndexOfNearestEnclosingCaptureReadyLambda()
H A DSemaTemplateInstantiate.cpp1041 if (NewMD && isLambdaCallOperator(NewMD)) { in transformedLocalDecl()
H A DSemaDecl.cpp8121 !isLambdaCallOperator(ParentDC)) { in CheckShadow()
14722 if (!isLambdaCallOperator(FD)) in ActOnStartOfFunctionDef()
15009 ExitFunctionBodyRAII ExitRAII(*this, isLambdaCallOperator(FD)); in ActOnFinishFunctionBody()
15034 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { in ActOnFinishFunctionBody()
H A DSemaExpr.cpp18327 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) in getParentOfCapturingContextOrNull()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclBase.cpp1114 if (isLambdaCallOperator(this)) in getLookupParent()
H A DASTDiagnostic.cpp483 } else if (isLambdaCallOperator(DC)) { in FormatASTNodeDiagnosticArgument()
H A DExprConstant.cpp3255 assert(isLambdaCallOperator(Frame->Callee) && in evaluateVarDeclInit()
6187 } else if (MD && isLambdaCallOperator(MD)) { in HandleFunctionCall()
8234 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) && in VisitVarDecl()
8745 if (isLambdaCallOperator(Info.CurrentCall->Callee)) { in VisitCXXThisExpr()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1184 if (isLambdaCallOperator(MD) && in StartFunction()