Home | History | Annotate | Download | only in Sema

Lines Matching refs:EPI

2368   FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
2369 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2370 EPI.NumExceptions = Exceptions.size();
2371 EPI.Exceptions = Exceptions.data();
2372 EPI.NoexceptExpr = NoexceptExpr;
2377 EPI));
2444 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
2449 EPI.ExceptionSpecType != EST_None &&
2450 EPI.ExceptionSpecType != EST_DynamicNone &&
2451 EPI.ExceptionSpecType != EST_BasicNoexcept) {
2453 if (EPI.ExceptionSpecType == EST_Uninstantiated)
2454 ExceptionSpecTemplate = EPI.ExceptionSpecTemplate;
2460 EPI = NewProto->getExtProtoInfo();
2461 EPI.ExceptionSpecType = EST_Uninstantiated;
2462 EPI.ExceptionSpecDecl = New;
2463 EPI.ExceptionSpecTemplate = ExceptionSpecTemplate;
2467 EPI));