Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/AST/
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()
82 if (isLambdaCallOperator(DC)) in getLambdaAwareParentOfDeclContext()
/external/clang/include/clang/AST/
DASTLambda.h28 inline bool isLambdaCallOperator(const CXXMethodDecl *MD) { in isLambdaCallOperator() function
34 inline bool isLambdaCallOperator(const DeclContext *DC) { in isLambdaCallOperator() function
36 return isLambdaCallOperator(cast<CXXMethodDecl>(DC)); in isLambdaCallOperator()
43 return isLambdaCallOperator(MD) && in isGenericLambdaCallOperatorSpecialization()
72 if (isLambdaCallOperator(DC)) in getLambdaAwareParentOfDeclContext()
/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DUnusedParametersCheck.cpp147 isLambdaCallOperator(Function)) { in warnOnUnusedParameter()
/external/llvm-project/clang/lib/Index/
DIndexBody.cpp464 if (DC && isLambdaCallOperator(DC)) in VisitParmVarDecl()
/external/llvm-project/clang/lib/Sema/
DSemaCoroutine.cpp559 if (MD->isInstance() && !isLambdaCallOperator(MD)) { in buildCoroutinePromise()
1286 if (MD->isInstance() && !isLambdaCallOperator(MD)) { in makeNewAndDeleteExpr()
DSemaExprCXX.cpp1124 if (isLambdaCallOperator(CurDC)) { in adjustCVQualifiersForCXXThisWithinLambda()
1161 Closure = isLambdaCallOperator(Closure->getParent()) in adjustCVQualifiersForCXXThisWithinLambda()
1178 if (ThisTy.isNull() && isLambdaCallOperator(CurContext) && in getCurrentThisType()
1197 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext)) in getCurrentThisType()
8427 const bool IsInLambdaDeclContext = isLambdaCallOperator(DC); in ActOnFinishFullExpr()
DSemaLambda.cpp128 isLambdaCallOperator(EnclosingDC)); in getStackIndexOfNearestEnclosingCaptureReadyLambda()
DSemaTemplateInstantiate.cpp1024 if (NewMD && isLambdaCallOperator(NewMD)) { in transformedLocalDecl()
DSemaDecl.cpp7625 !isLambdaCallOperator(ParentDC)) { in CheckShadow()
14020 if (!isLambdaCallOperator(FD)) in ActOnStartOfFunctionDef()
14305 ExitFunctionBodyRAII ExitRAII(*this, isLambdaCallOperator(FD)); in ActOnFinishFunctionBody()
14328 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { in ActOnFinishFunctionBody()
DSemaExpr.cpp17104 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) in getParentOfCapturingContextOrNull()
/external/clang/lib/Sema/
DSemaLambda.cpp125 isLambdaCallOperator(EnclosingDC)); in getStackIndexOfNearestEnclosingCaptureReadyLambda()
DSemaExprCXX.cpp921 if (isLambdaCallOperator(CurDC)) { in adjustCVQualifiersForCXXThisWithinLambda()
953 Closure = isLambdaCallOperator(Closure->getParent()) in adjustCVQualifiersForCXXThisWithinLambda()
995 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext)) in getCurrentThisType()
7075 const bool IsInLambdaDeclContext = isLambdaCallOperator(CurContext); in ActOnFinishFullExpr()
DSemaTemplateInstantiate.cpp718 if (NewMD && isLambdaCallOperator(NewMD)) { in transformedLocalDecl()
DSemaDecl.cpp1091 if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) { in getContainingDC()
11468 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { in ActOnFinishFunctionBody()
DSemaExpr.cpp13214 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) in getParentOfCapturingContextOrNull()
/external/llvm-project/clang/lib/AST/
DDeclBase.cpp1102 if (isLambdaCallOperator(this)) in getLookupParent()
DASTDiagnostic.cpp450 } else if (isLambdaCallOperator(DC)) { in FormatASTNodeDiagnosticArgument()
DExprConstant.cpp3233 assert(isLambdaCallOperator(Frame->Callee) && in evaluateVarDeclInit()
6097 } else if (MD && isLambdaCallOperator(MD)) { in HandleFunctionCall()
8130 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) && in VisitVarDecl()
8626 if (isLambdaCallOperator(Info.CurrentCall->Callee)) { in VisitCXXThisExpr()
/external/clang/lib/AST/
DASTDiagnostic.cpp418 } else if (isLambdaCallOperator(DC)) { in FormatASTNodeDiagnosticArgument()
DExprConstant.cpp2134 assert(isLambdaCallOperator(Frame->Callee) && in evaluateVarDeclInit()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenFunction.cpp1136 if (isLambdaCallOperator(MD) && in StartFunction()