Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp2517 FunctionDecl *FDPattern = getPatternFunctionDecl(FD); in LambdaScopeForCallOperatorInstantiationRAII() local
2518 if (!FDPattern) in LambdaScopeForCallOperatorInstantiationRAII()
2526 while (FDPattern && FD) { in LambdaScopeForCallOperatorInstantiationRAII()
2527 InstantiationAndPatterns.emplace_back(FDPattern, FD); in LambdaScopeForCallOperatorInstantiationRAII()
2529 FDPattern = in LambdaScopeForCallOperatorInstantiationRAII()
2530 dyn_cast<FunctionDecl>(getLambdaAwareParentOfDeclContext(FDPattern)); in LambdaScopeForCallOperatorInstantiationRAII()
2544 for (auto [FDPattern, FD] : llvm::reverse(InstantiationAndPatterns)) { in LambdaScopeForCallOperatorInstantiationRAII()
2545 SemaRef.addInstantiatedParametersToScope(FD, FDPattern, Scope, MLTAL); in LambdaScopeForCallOperatorInstantiationRAII()
2546 SemaRef.addInstantiatedLocalVarsToScope(FD, FDPattern, Scope); in LambdaScopeForCallOperatorInstantiationRAII()
2549 SemaRef.addInstantiatedCapturesToScope(FD, FDPattern, Scope, MLTAL); in LambdaScopeForCallOperatorInstantiationRAII()