HomeSort by relevance Sort by last modified time
    Searched refs:DiagId (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Parse/
ParseTemplate.cpp 740 unsigned DiagId = diag::err_two_right_angle_brackets_need_space;
742 DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
744 DiagId = diag::err_right_angle_bracket_equal_needs_space;
745 Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;
    [all...]
ParseExprCXX.cpp 460 unsigned DiagID = diag::err_missing_dependent_template_keyword;
462 DiagID = diag::warn_missing_dependent_template_keyword;
464 Diag(Tok.getLocation(), DiagID)
605 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
606 if (DiagID) {
607 Diag(Tok, DiagID.getValue());
772 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro));
774 if (DiagID) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 435 PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind DiagId) {
436 PartialDiagnostic PD(DiagId, Ctx.getDiagAllocator());
446 OptionalDiagnostic Diag(SourceLocation Loc, diag::kind DiagId
463 addDiag(Loc, DiagId);
472 OptionalDiagnostic Diag(const Expr *E, diag::kind DiagId
476 return Diag(E->getExprLoc(), DiagId, ExtraNotes);
486 OptionalDiagnostic CCEDiag(LocArg Loc, diag::kind DiagId
494 return Diag(Loc, DiagId, ExtraNotes);
498 OptionalDiagnostic Note(SourceLocation Loc, diag::kind DiagId) {
501 return OptionalDiagnostic(&addDiag(Loc, DiagId));
    [all...]

Completed in 110 milliseconds