Lines Matching full:errors
44 : Error(Error), BeginIndex(Error->Errors.size()) {}
47 // Merge all errors that happened while in this context.
48 if (BeginIndex < Error->Errors.size()) {
49 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex];
50 for (size_t i = BeginIndex + 1, e = Error->Errors.size(); i < e; ++i) {
51 Dest.Messages.push_back(Error->Errors[i].Messages[0]);
53 Error->Errors.resize(BeginIndex + 1);
58 // Revert the errors.
59 Error->Errors.resize(BeginIndex);
69 Errors.push_back(ErrorContent());
70 ErrorContent &Last = Errors.back();
186 for (size_t i = 0, e = Errors.size(); i != e; ++i) {
188 printErrorContentToStream(Errors[i], OS);
200 for (size_t i = 0, e = Errors.size(); i != e; ++i) {
202 const ErrorContent &Error = Errors[i];