Home | History | Annotate | Download | only in Sema

Lines Matching refs:Invoker

10563   // and static-invoker. 
10582 // For both the conversion and static-invoker template specializations
10590 // Retrieve the static invoker...
10591 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker();
10597 Invoker->getDescribedFunctionTemplate();
10603 "Must have a corresponding static invoker specialization");
10604 Invoker = cast<CXXMethodDecl>(InvokeSpec);
10607 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(),
10620 Invoker->markUsed(Context);
10621 Invoker->setReferenced();
10622 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
10626 L->CompletedImplicitDefinition(Invoker);