Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Lambda

2909   const CXXRecordDecl *Lambda = variable->getType()->getAsCXXRecordDecl();
2910 const CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
2916 CGM.ErrorUnsupported(CurCodeDecl, "lambda conversion to variadic function");
2923 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2931 assert(!Lambda->isGenericLambda() &&
2932 "generic lambda interconversion to block not implemented");
2937 const CXXRecordDecl *Lambda = MD->getParent();
2942 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2950 const CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
2951 // For a generic lambda, find the corresponding call operator specialization
2953 if (Lambda->isGenericLambda()) {
2970 CGM.ErrorUnsupported(MD, "lambda conversion to variadic function");