Lines Matching defs:diags

53     protected JCDiagnostic.Factory diags;
63 AbstractLog(JCDiagnostic.Factory diags) {
64 this.diags = diags;
99 error(diags.errorKey(key, args));
107 report(diags.error(null, source, null, errorKey));
117 error(pos, diags.errorKey(key, args));
126 report(diags.error(null, source, pos, errorKey));
137 error(flag, pos, diags.errorKey(key, args));
147 report(diags.error(flag, source, pos, errorKey));
157 error(pos, diags.errorKey(key, args));
166 report(diags.error(null, source, wrap(pos), errorKey));
177 error(flag, pos, diags.errorKey(key, args));
187 report(diags.error(flag, source, wrap(pos), errorKey));
196 warning(diags.warningKey(key, args));
204 report(diags.warning(null, source, null, warningKey));
214 warning(lc, diags.warningKey(key, args));
223 report(diags.warning(lc, null, null, warningKey));
233 warning(pos, diags.warningKey(key, args));
242 report(diags.warning(null, source, pos, warningKey));
253 warning(lc, pos, diags.warningKey(key, args));
263 report(diags.warning(lc, source, pos, warningKey));
273 warning(pos, diags.warningKey(key, args));
282 report(diags.warning(null, source, wrap(pos), warningKey));
291 mandatoryWarning(pos, diags.warningKey(key, args));
299 report(diags.mandatoryWarning(null, source, pos, warningKey));
309 mandatoryWarning(lc, pos, diags.warningKey(key, args));
318 report(diags.mandatoryWarning(lc, source, pos, warningKey));
326 note(diags.noteKey(key, args));
333 report(diags.note(source, null, noteKey));
341 note(pos, diags.noteKey(key, args));
348 report(diags.note(source, pos, noteKey));
356 note(pos, diags.noteKey(key, args));
363 report(diags.note(source, wrap(pos), noteKey));
371 note(file, diags.noteKey(key, args));
378 report(diags.note(getSource(file), null, noteKey));
386 mandatoryNote(file, diags.noteKey(key, args));
393 report(diags.mandatoryNote(getSource(file), noteKey));