Searched defs:DiagId (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Parse/
H A DParseTemplate.cpp785 unsigned DiagId = diag::err_two_right_angle_brackets_need_space; local
788 DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
790 DiagId = diag::err_right_angle_bracket_equal_needs_space;
791 Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;
H A DParseExprCXX.cpp2180 unsigned DiagId = 0; local
2187 if (!Tok.is(tok::string_literal) && !DiagId) {
2192 DiagId = diag::err_literal_operator_string_prefix;
2228 DiagId = diag::err_literal_operator_string_not_empty;
2231 if (DiagId) {
2237 Diag(DiagLoc, DiagId) << FixItHint::CreateReplacement(
/external/clang/lib/AST/
H A DExprConstant.cpp563 PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind DiagId) { argument
564 PartialDiagnostic PD(DiagId, Ctx.getDiagAllocator());
574 OptionalDiagnostic Diag(SourceLocation Loc, diag::kind DiagId
612 addDiag(Loc, DiagId);
621 OptionalDiagnostic Diag(const Expr *E, diag::kind DiagId
625 return Diag(E->getExprLoc(), DiagId, ExtraNotes);
636 OptionalDiagnostic CCEDiag(LocArg Loc, diag::kind DiagId
645 return Diag(Loc, DiagId, ExtraNotes);
649 OptionalDiagnostic Note(SourceLocation Loc, diag::kind DiagId) { argument
652 return OptionalDiagnostic(&addDiag(Loc, DiagId));
[all...]
/external/clang/lib/Sema/
H A DSemaType.cpp2514 unsigned DiagId = diag::err_decltype_auto_compound_type; local
2524 DiagId = diag::err_decltype_auto_function_declarator_not_declaration;
2540 S.Diag(DeclChunk.Loc, DiagId) << DiagKind;

Completed in 130 milliseconds