• Home
  • Raw
  • Download

Lines Matching refs:EPI

2113     FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();  in adjustFunctionType()  local
2114 EPI.ExtInfo = Info; in adjustFunctionType()
2115 Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI); in adjustFunctionType()
2126 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); in adjustDeducedFunctionResultType() local
2127 FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI)); in adjustDeducedFunctionResultType()
2907 const FunctionProtoType::ExtProtoInfo &EPI) const { in getFunctionType()
2913 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI, in getFunctionType()
2923 EPI.ExceptionSpec.Type == EST_None && isCanonicalResultType(ResultTy) && in getFunctionType()
2924 !EPI.HasTrailingReturn; in getFunctionType()
2938 FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI; in getFunctionType()
2968 if (EPI.ExceptionSpec.Type == EST_Dynamic) { in getFunctionType()
2969 Size += EPI.ExceptionSpec.Exceptions.size() * sizeof(QualType); in getFunctionType()
2970 } else if (EPI.ExceptionSpec.Type == EST_ComputedNoexcept) { in getFunctionType()
2972 } else if (EPI.ExceptionSpec.Type == EST_Uninstantiated) { in getFunctionType()
2974 } else if (EPI.ExceptionSpec.Type == EST_Unevaluated) { in getFunctionType()
2977 if (EPI.ConsumedParameters) in getFunctionType()
2981 FunctionProtoType::ExtProtoInfo newEPI = EPI; in getFunctionType()
7063 FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo(); in mergeFunctionTypes() local
7064 EPI.ExtInfo = einfo; in mergeFunctionTypes()
7065 return getFunctionType(retType, types, EPI); in mergeFunctionTypes()
7099 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo(); in mergeFunctionTypes() local
7100 EPI.ExtInfo = einfo; in mergeFunctionTypes()
7101 return getFunctionType(retType, proto->getParamTypes(), EPI); in mergeFunctionTypes()
7445 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); in mergeObjCGCQualifiers() local
7446 EPI.ExtInfo = getFunctionExtInfo(LHS); in mergeObjCGCQualifiers()
7448 getFunctionType(OldReturnType, FPT->getParamTypes(), EPI); in mergeObjCGCQualifiers()
7859 FunctionProtoType::ExtProtoInfo EPI; in GetBuiltinType() local
7860 EPI.ExtInfo = EI; in GetBuiltinType()
7861 EPI.Variadic = Variadic; in GetBuiltinType()
7863 return getFunctionType(ResType, ArgTypes, EPI); in GetBuiltinType()