Home | History | Annotate | Download | only in Sema

Lines Matching full:superset

549     const FunctionProtoType *Superset, SourceLocation SuperLoc,
563 Superset = ResolveExceptionSpec(SuperLoc, Superset);
564 if (!Superset)
570 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType();
572 // If superset contains everything, we're done.
574 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
582 FunctionProtoType::NoexceptResult SuperNR =Superset->getNoexceptSpec(Context);
587 // Another case of the superset containing everything.
589 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
620 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);
622 // Otherwise, if the superset contains nothing, we've failed.
655 // Make sure it's in the superset.
657 Superset->exception_begin(), SuperE = Superset->exception_end();
715 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc);