Home | History | Annotate | Download | only in Sema

Lines Matching refs:CPT

3136             const FunctionProtoType *CPT
3138 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
3139 if (!CPT)
3141 if (CPT->getExceptionSpecType() == EST_Delayed)
3143 if (!CPT->isNothrow(Self.Context))
3178 const FunctionProtoType *CPT
3180 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
3181 if (!CPT)
3183 if (CPT->getExceptionSpecType() == EST_Delayed)
3187 if (!CPT->isNothrow(Self.Context) || CPT->getNumArgs() > 1)
3216 const FunctionProtoType *CPT
3218 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
3219 if (!CPT)
3221 if (CPT->getExceptionSpecType() == EST_Delayed)
3225 return CPT->isNothrow(Self.Context) && CPT->getNumArgs() == 0;