Searched refs:diag (Results 1 - 25 of 170) sorted by relevance

1234567

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticCategories.h14 namespace diag { namespace in namespace:clang
23 } // end namespace diag
H A DDiagnosticIDs.h27 namespace diag { namespace in namespace:clang
81 static DiagnosticMappingInfo Make(diag::Mapping Mapping, bool IsUser,
93 diag::Mapping getMapping() const { return diag::Mapping(Mapping); }
94 void setMapping(diag::Mapping Value) { Mapping = Value; }
121 diag::CustomDiagInfo *CustomDiagInfo;
232 SmallVectorImpl<diag::kind> &Diags) const;
235 void getAllDiagnostics(SmallVectorImpl<diag::kind> &Diags) const;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmtAttr.cpp30 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_wrong_target)
35 S.Diag(L, diag::note_fallthrough_insert_semi_fixit)
41 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_outside_switch);
53 diag::warn_unhandled_ms_attribute_ignored :
54 diag::warn_unknown_attribute_ignored) << A.getName();
61 S.Diag(A.getRange().getBegin(), diag::err_attribute_invalid_on_stmt)
H A DTargetAttributesSema.cpp33 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
48 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
77 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
87 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
95 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
125 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
143 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
155 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "dllimport";
165 Diag(D->getLocation(), diag::warn_attribute_invalid_on_definition)
178 S.Diag(Attr.getLoc(), diag
[all...]
H A DSemaObjCProperty.cpp100 diag::err_arc_inconsistent_property_ownership)
367 Diag(AtLoc, diag::err_duplicate_property);
368 Diag(prevDecl->getLocation(), diag::note_property_declare);
399 Diag(CDecl->getLocation(), diag::err_continuation_class);
442 diag::err_type_mismatch_continuation_class) << PDecl->getType();
443 Diag(PIDecl->getLocation(), diag::note_property_declare);
459 Diag(AtLoc, diag::warn_property_attr_mismatch);
460 Diag(PIDecl->getLocation(), diag::note_property_declare);
472 Diag(AtLoc, diag::warn_property_implicitly_mismatched);
473 Diag(PIDecl->getLocation(), diag
515 unsigned diag = local
[all...]
H A DJumpDiagnostics.cpp128 InDiag = diag::note_protected_by_vla;
131 return ScopePair(diag::note_protected_by___block,
132 diag::note_exits___block);
135 return ScopePair(diag::note_protected_by_cleanup,
136 diag::note_exits_cleanup);
147 return ScopePair(diag::note_protected_by_objc_ownership,
148 diag::note_exits_objc_ownership);
184 return ScopePair(diag::note_protected_by_variable_init, 0);
192 return ScopePair(diag::note_protected_by_variable_init, 0);
198 OutDiag = diag
[all...]
H A DSemaOpenMP.cpp411 PDiag(Lookup.empty()? diag::err_undeclared_var_use_suggest
412 : diag::err_omp_expected_var_arg_suggest)
416 Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
417 : diag::err_omp_expected_var_arg)
423 Diag(Id.getLoc(), diag::err_omp_expected_var_arg)
425 Diag(Lookup.getFoundDecl()->getLocation(), diag::note_declared_at);
434 Diag(Id.getLoc(), diag::err_omp_global_var_arg)
440 IsDecl ? diag::note_previous_decl : diag::note_defined_here) << VD;
451 Diag(Id.getLoc(), diag
[all...]
H A DSemaAttr.cpp167 Diag(PragmaLoc, diag::err_pragma_options_align_mac68k_target_unsupported);
178 Diag(PragmaLoc, diag::warn_pragma_options_align_reset_failed)
202 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
227 Diag(PragmaLoc, diag::warn_pragma_pack_show) << "mac68k";
229 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
243 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
250 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
299 Diag(PragmaLoc, diag::warn_pragma_unused_undeclared_var)
306 Diag(PragmaLoc, diag::warn_pragma_unused_expected_var_arg)
313 Diag(PragmaLoc, diag
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DWarnings.cpp41 Diags.Report(isPositive? diag::warn_unknown_warning_option_suggest :
42 diag::warn_unknown_negative_warning_option_suggest)
45 Diags.Report(isPositive? diag::warn_unknown_warning_option :
46 diag::warn_unknown_negative_warning_option)
79 SmallVector<diag::kind, 10> _Diags;
112 diag::Mapping Mapping = isPositive ? diag::MAP_WARNING : diag::MAP_IGNORE;
130 Diags.setMappingToAllDiagnostics(diag::MAP_IGNORE);
143 Diags.Report(diag
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
H A DASTDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DAnalysisDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DDriverDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DLexDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParseDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DSerializationDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfsidbg.c246 int diag; local
250 diag = kdbgetaddrarg(argc, argv, &nextarg, &addr, &offset, NULL, regs);
251 if (diag)
252 return diag;
267 int diag; local
271 diag = kdbgetaddrarg(argc, argv, &nextarg, &addr, &offset, NULL, regs);
272 if (diag)
273 return diag;
288 int diag; local
292 diag
310 int diag; local
332 int diag; local
354 int diag; local
378 int diag; local
402 int diag; local
426 int diag; local
448 int diag; local
470 int diag; local
492 int diag; local
514 int diag; local
536 int diag; local
560 int diag; local
582 int diag; local
606 int diag; local
630 int diag; local
654 int diag; local
676 int diag; local
700 int diag; local
724 int diag; local
748 int diag; local
785 int diag; local
807 int diag; local
828 int diag; local
850 int diag; local
871 int diag; local
892 int diag; local
913 int diag; local
934 int diag; local
955 int diag; local
976 int diag; local
997 int diag; local
1018 int diag; local
1039 int diag; local
1061 int diag; local
1082 int diag; local
1104 int diag; local
1125 int diag; local
1147 int diag; local
1168 int diag; local
1189 int diag; local
1210 int diag; local
1231 int diag; local
1252 int diag; local
1273 int diag; local
1294 int diag; local
1315 int diag; local
1336 int diag; local
1370 int diag; local
1391 int diag; local
1412 int diag; local
1433 int diag; local
1454 int diag; local
1475 int diag; local
1497 int diag; local
1518 int diag; local
1539 int diag; local
1560 int diag; local
1581 int diag; local
1602 int diag; local
1623 int diag; local
1644 int diag; local
1665 int diag; local
1686 int diag; local
1707 int diag; local
1728 int diag; local
1749 int diag; local
1770 int diag; local
1832 int diag; local
1853 int diag; local
1874 int diag; local
1896 int diag; local
1926 int diag; local
1947 int diag; local
2078 int diag; local
2117 int diag; local
2144 int diag; local
2281 int diag; local
2328 int diag; local
2414 int diag; local
2516 int diag; local
2581 int diag; local
2606 int diag, count = 0; local
2653 int diag; local
2683 int diag; local
2732 int diag; local
2773 int diag, nextarg; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseOpenMP.cpp49 Diag(Tok, diag::warn_omp_extra_tokens_at_eol)
60 Diag(Tok, diag::err_omp_unknown_directive);
65 Diag(Tok, diag::err_omp_unexpected_directive)
106 Diag(Tok, diag::warn_omp_extra_tokens_at_eol)
173 Diag(Tok, diag::err_omp_unknown_directive);
178 Diag(Tok, diag::err_omp_unexpected_directive)
198 if (T.expectAndConsume(diag::err_expected_lparen_after,
228 Diag(PrevTok.getLocation(), diag::err_expected_ident)
244 Diag(Tok, diag::err_expected_ident);
265 Diag(Tok, diag
[all...]
H A DParsePragma.cpp133 PP.Diag(Tok, diag::err_expected_lbrace);
178 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << ename;
204 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen)
211 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
217 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen)
222 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
228 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol)
255 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "pack";
286 PP.Diag(Tok.getLocation(), diag::warn_pragma_pack_invalid_action);
306 PP.Diag(Tok.getLocation(), diag
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPragma.cpp94 PP.Diag(Tok, diag::warn_pragma_ignored);
189 Diag(PragmaLoc, diag::err__Pragma_malformed);
196 Diag(PragmaLoc, diag::err__Pragma_malformed);
206 Diag(Tok, diag::err_invalid_string_udl);
220 Diag(PragmaLoc, diag::err__Pragma_malformed);
313 Diag(PragmaLoc, diag::err__Pragma_malformed);
331 Diag(PragmaLoc, diag::err_unterminated___pragma);
357 Diag(OnceTok, diag::pp_pragma_once_in_main_file);
395 Diag(Tok, diag::err_pp_invalid_poison);
408 Diag(Tok, diag
[all...]
H A DPPDirectives.cpp151 Diag(MacroNameTok, diag::err_pp_missing_macro_name);
173 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
175 Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
179 Diag(MacroNameTok, diag::err_defined_macro_name);
184 Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
225 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
276 diag::err_pp_unterminated_conditional);
384 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
426 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
511 Diag(Tok, diag
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp60 TA.clearDiagnostic(diag::err_unavailable,
61 diag::err_unavailable_message,
62 diag::err_ovl_deleted_call, // ObjC++
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp70 { diag::ENUM, DEFAULT_MAPPING, CLASS, \
98 "Diag ID conflict, the enums at the start of clang::diag (in "
102 "Improperly sorted diag info");
108 // Out of bounds diag. Can't be in the table.
109 using namespace diag;
146 // If the diag id doesn't match we found a different diag, abort. This can
156 diag::MAP_FATAL, /*IsUser=*/false, /*IsPragma=*/false);
159 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
162 assert(Info.getMapping() == diag
257 namespace diag { namespace in namespace:clang
[all...]

Completed in 130 milliseconds

1234567