Lines Matching refs:exceptions
170 // If this function can throw any exceptions, make a note of that.
210 "Shouldn't collect exceptions when throw-all is guaranteed.");
212 // Record the exceptions in this function's exception specification.
213 for (const auto &E : Proto->exceptions())
215 Exceptions.push_back(E);
227 // invoked by f's implicit definition; f shall allow all exceptions if any
228 // function it directly invokes allows all exceptions, and f shall allow no
229 // exceptions if every function it directly invokes allows no exceptions.
239 // specification should be the set of exceptions which can be thrown by the
673 // Shortcut if exceptions are disabled.
9662 // spec doesn't allow exceptions, we should emit a warning, because this
13794 for (const auto &E : Proto->exceptions()) {
13855 SmallVectorImpl<QualType> &Exceptions,
13857 Exceptions.clear();
13860 Exceptions.reserve(DynamicExceptions.size());
13879 Exceptions.push_back(ET);
13881 ESI.Exceptions = Exceptions;
13926 llvm::SmallVector<QualType, 4> Exceptions;
13929 Exceptions,