Home
last modified time | relevance | path

Searched refs:diagnostics (Results 1 – 25 of 401) sorted by relevance

12345678910>>...17

/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_diagnostics.py18 self.assertEqual(len(tu.diagnostics), 1)
19 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning)
20 self.assertEqual(tu.diagnostics[0].location.line, 1)
21 self.assertEqual(tu.diagnostics[0].location.column, 11)
22 self.assertEqual(tu.diagnostics[0].spelling,
28 self.assertEqual(len(tu.diagnostics), 1)
29 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning)
30 self.assertEqual(tu.diagnostics[0].location.line, 2)
31 self.assertEqual(tu.diagnostics[0].location.column, 7)
32 self.assertIn('incompatible', tu.diagnostics[0].spelling)
[all …]
H A Dtest_translation_unit.py196 self.assertEqual(len(tu.diagnostics), 0)
202 self.assertEqual(len(tu2.diagnostics), 0)
215 self.assertEqual(len(tu.diagnostics), 0)
218 self.assertEqual(len(tu2.diagnostics), 0)
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticOptions.def50 DIAGOPT(ShowLine, 1, 1) /// Show line number on diagnostics.
51 DIAGOPT(ShowColumn, 1, 1) /// Show column number on diagnostics.
55 DIAGOPT(ShowCarets, 1, 1) /// Show carets in diagnostics.
59 DIAGOPT(ShowPresumedLoc, 1, 0) /// Show presumed location for diagnostics.
61 /// diagnostics.
66 ENUM_DIAGOPT(Format, TextDiagnosticFormat, 2, Clang) /// Format for diagnostics:
68 DIAGOPT(ShowColors, 1, 0) /// Show diagnostics with ANSI color sequences.
72 DIAGOPT(VerifyDiagnostics, 1, 0) /// Check that diagnostics match the expected
73 /// diagnostics, indicated by markers in the
76 DiagnosticLevelMask::None) /// Ignore unexpected diagnostics of
[all …]
H A DDiagnostic.td9 // This file defines the TableGen core definitions for the diagnostics
41 // Textual substitutions which may be performed on the text of diagnostics
45 // diagnostics
52 // diagnostics to specify a category.
77 // All diagnostics emitted by the compiler are an indirect subclass of this.
H A DDiagnosticRefactoringKinds.td1 //==--- DiagnosticRefactoringKinds.td - refactoring diagnostics -----------===//
33 } // end of Refactoring diagnostics
H A DDiagnosticFrontendKinds.td1 //==--- DiagnosticFrontendKinds.td - frontend diagnostics -----------------===//
124 "unable to merge a subprocess's serialized diagnostics">,
127 "unable to open file %0 for serializing diagnostics (%1)">,
154 "'%0' diagnostics %select{expected|seen}1 but not %select{seen|expected}1: "
157 "%select{expected|'expected-no-diagnostics'}0 directive cannot follow "
158 "%select{'expected-no-diagnostics' directive|other expected directives}0">;
160 "no expected directives found: consider use of 'expected-no-diagnostics'">;
H A DDiagnosticAnalysisKinds.td1 //==--- DiagnosticAnalysisKinds.td - libanalysis diagnostics --------------===//
H A DDiagnosticCrossTUKinds.td1 //==--- DiagnosticCrossTUKinds.td - Cross Translation Unit diagnostics ----===//
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A DCmpRuns.py214 self.diagnostics: List[AnalysisDiagnostic] = []
256 diagnostics = [AnalysisDiagnostic(d, report, h)
261 report.diagnostics.extend(diagnostics)
263 self.diagnostics.extend(diagnostics)
270 self.diagnostics: List[AnalysisDiagnostic] = []
339 def get_grouped_diagnostics(diagnostics: List[AnalysisDiagnostic]
342 for diagnostic in diagnostics:
363 diags_old = get_grouped_diagnostics(results_old.diagnostics)
364 diags_new = get_grouped_diagnostics(results_new.diagnostics)
472 for diagnostic in report.diagnostics:
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dux.texi23 This chapter provides guidelines on how to implement diagnostics and
27 * Guidelines for Diagnostics:: How to implement diagnostics.
34 @cindex guidelines for diagnostics
35 @cindex diagnostics, guidelines for
43 @cindex diagnostics, actionable
72 @cindex signal-to-noise ratio (metaphorical usage for diagnostics)
73 @cindex diagnostics, false positive
74 @cindex diagnostics, true positive
134 Many diagnostics relate to a mismatch between two different places in the
209 or two diagnostics:
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dux.texi23 This chapter provides guidelines on how to implement diagnostics and
27 * Guidelines for Diagnostics:: How to implement diagnostics.
34 @cindex guidelines for diagnostics
35 @cindex diagnostics, guidelines for
43 @cindex diagnostics, actionable
72 @cindex signal-to-noise ratio (metaphorical usage for diagnostics)
73 @cindex diagnostics, false positive
74 @cindex diagnostics, true positive
112 Keep both of these styles of usage in mind when implementing diagnostics.
159 Many diagnostics relate to a mismatch between two different places in the
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-kvx.texi82 @cindex @samp{--diagnostics} option, KVX
83 @item --diagnostics
86 @cindex @samp{--no-diagnostics} option, KVX
87 @item --no-diagnostics
88 Print succinct diagnostics on one line.
/netbsd-src/external/apache2/llvm/dist/clang/tools/diagtool/
H A DTreeView.cpp40 if (!Group.diagnostics().empty()) in unimplemented()
51 for (const DiagnosticRecord &DR : Group.diagnostics()) { in enabledByDefault()
82 for (const DiagnosticRecord &DR : Group.diagnostics()) { in printGroup()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DRemarks.rst8 Introduction to the LLVM remark diagnostics
11 LLVM is able to emit diagnostics from passes describing whether an optimization
58 LLVM: through remark diagnostics, or through serialized remarks.
60 Remark diagnostics
63 Optimization remarks can be emitted as diagnostics. These diagnostics will be
85 While diagnostics are useful during development, it is often more useful to
255 * the absolute file path to the serialized remark diagnostics: a
581 Emitting remark diagnostics in the object file
584 A section containing metadata on remark diagnostics will be emitted for the
628 up in the ``LLVMContext``, and will operate on its own type of diagnostics.
/netbsd-src/external/apache2/llvm/dist/clang/docs/CommandGuide/
H A Ddiagtool.rst1 diagtool - clang diagnostics tool
12 :program:`diagtool` is a combination of four tools for dealing with diagnostics in :program:`clang`.
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DABOUT-GCC-NLS29 diagnostics format string requiring translation, if it ends with
38 diagnostics in GCC spec strings.
39 The `G_(GMSGID)' macro defined in intl.h can be used to mark GCC diagnostics
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A DABOUT-GCC-NLS29 diagnostics format string requiring translation, if it ends with
38 diagnostics in GCC spec strings.
39 The `G_(GMSGID)' macro defined in intl.h can be used to mark GCC diagnostics
/netbsd-src/usr.sbin/makemandb/
H A Dmakemandb.c74 secbuff diagnostics; // DIAGNOSTICS member
1140 append(&rec->diagnostics, string); in mdoc_parse_section()
1434 pman_parse_node(n, &rec->diagnostics); in man_parse_section()
1491 rec->diagnostics.data[rec->diagnostics.offset] = 0; in insert_into_db()
1597 rc = sqlite3_bind_text(stmt, idx, rec->diagnostics.data, in insert_into_db()
1598 rec->diagnostics.offset + 1, NULL); in insert_into_db()
1889 rec->diagnostics.offset = 0; in cleanup()
1954 rec->diagnostics.buflen = BUFLEN; in init_secbuffs()
1955 rec->diagnostics.data = emalloc(rec->diagnostics.buflen); in init_secbuffs()
1956 rec->diagnostics.offset = 0; in init_secbuffs()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/
H A D2007-OriginalClangReadme.txt97 - To make diagnostics more gcc-like: -fno-caret-diagnostics -fno-show-column
134 * All diagnostics have column numbers, includes 'caret diagnostics', and they
136 * Full diagnostic customization by client (can format diagnostics however they
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Danalyzer.opt115 Issue a note when diagnostics are deduplicated.
135 Emit more verbose descriptions of control flow in diagnostics.
139 Emit more verbose descriptions of state changes in diagnostics.
163 Emit diagnostics showing the location of nodes in the exploded graph.
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Danalyzer.opt171 Verify that paths are feasible when emitting diagnostics.
175 Issue a note when diagnostics are deduplicated.
195 Emit more verbose descriptions of control flow in diagnostics.
199 Emit more verbose descriptions of state changes in diagnostics.
223 Emit diagnostics showing the location of nodes in the exploded graph.
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DUsersManual.rst116 See the :doc:`diagnostics reference <DiagnosticsReference>` for a complete
125 Disable all diagnostics.
129 :ref:`Enable all diagnostics. <diagnostics_enable_everything>`
145 Stop emitting diagnostics after 123 errors have been produced. The default is
159 Clang aims to produce beautiful diagnostics by default, particularly for
164 output format of the diagnostics that it generates.
207 .. _opt_fcaret-diagnostics:
209 **-f[no-]caret-diagnostics**
223 **-f[no-]color-diagnostics**
225 detected, controls whether or not Clang prints diagnostics in color.
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/conf/
H A Dconf_mod.c185 int ret = 0, diagnostics = 0; in CONF_modules_load_file_ex() local
215 diagnostics = conf_diagnostics(conf); in CONF_modules_load_file_ex()
222 if ((flags & CONF_MFLAGS_IGNORE_RETURN_CODES) != 0 && !diagnostics) in CONF_modules_load_file_ex()
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A DChangeLog-2018305 * diagnostics.h (DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL): New macro.
500 * diagnostics.h: Comment on macro usage.
504 * diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS):
571 * diagnostics.h (DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION): Always
576 * diagnostics.h (DIAGNOSTIC_STRINGIFY_1): New.
587 * diagnostics.h: Moved from ../gdb/common/diagnostics.h.
/netbsd-src/external/gpl3/gdb/dist/include/
H A DChangeLog-2018305 * diagnostics.h (DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL): New macro.
500 * diagnostics.h: Comment on macro usage.
504 * diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS):
571 * diagnostics.h (DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION): Always
576 * diagnostics.h (DIAGNOSTIC_STRINGIFY_1): New.
587 * diagnostics.h: Moved from ../gdb/common/diagnostics.h.

12345678910>>...17