Home | History | Annotate | Download | only in slang

Lines Matching full:report

242   // Report an error or a warning to the user.
244 clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
247 return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
251 clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
256 return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
260 // Utility functions to report errors and warnings to make the calling code
264 return Report<N>(clang::DiagnosticsEngine::Error, Message);
270 return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
275 return Report<N>(clang::DiagnosticsEngine::Warning, Message);
281 return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message);