Home | History | Annotate | Download | only in AST

Lines Matching refs:ResultTy

2786 ASTContext::getFunctionNoProtoType(QualType ResultTy,
2793 FunctionNoProtoType::Profile(ID, ResultTy, Info);
2801 if (!ResultTy.isCanonical()) {
2802 Canonical = getFunctionNoProtoType(getCanonicalType(ResultTy), Info);
2812 FunctionNoProtoType(ResultTy, Canonical, newInfo);
2826 ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray,
2833 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
2843 EPI.ExceptionSpecType == EST_None && isCanonicalResultType(ResultTy) &&
2864 QualType CanResultTy = getCanonicalType(ResultTy);
2865 if (ResultTy.getQualifiers().hasObjCLifetime()) {
2903 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);