Lines Matching refs:diagnostics
38 /// is appended to the diagnostics list with the severity of
48 /// @param diagnostics the list of diagnostics to append the ICE message to
52 diag::List& diagnostics);
55 /// Adds the internal compiler error message to the diagnostics list, and then
79 /// to the diagnostics list `diagnostics`, and calling the
84 #define TINT_ICE(system, diagnostics) \
86 ::tint::diag::System::system, diagnostics)
89 /// internal compiler error message to the diagnostics list `diagnostics`, and
94 #define TINT_UNREACHABLE(system, diagnostics) \
95 TINT_ICE(system, diagnostics) << "TINT_UNREACHABLE "
98 /// internal compiler error message to the diagnostics list `diagnostics`, and
103 #define TINT_UNIMPLEMENTED(system, diagnostics) \
104 TINT_ICE(system, diagnostics) << "TINT_UNIMPLEMENTED "
117 tint::diag::List diagnostics; \
118 TINT_ICE(system, diagnostics) \