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

  /external/clang/lib/Parse/
ParseTemplate.cpp 803 unsigned DiagId = diag::err_two_right_angle_brackets_need_space;
806 DiagId = diag::warn_cxx98_compat_two_right_angle_brackets;
808 DiagId = diag::err_right_angle_bracket_equal_needs_space;
809 Diag(Tok.getLocation(), DiagId) << Hint1 << Hint2;
    [all...]
ParseExprCXX.cpp 552 unsigned DiagID = diag::err_missing_dependent_template_keyword;
554 DiagID = diag::warn_missing_dependent_template_keyword;
556 Diag(Tok.getLocation(), DiagID)
720 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro);
721 if (DiagID) {
722 Diag(Tok, DiagID.getValue());
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 564 PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind DiagId) {
565 PartialDiagnostic PD(DiagId, Ctx.getDiagAllocator());
575 OptionalDiagnostic Diag(SourceLocation Loc, diag::kind DiagId
613 addDiag(Loc, DiagId);
622 OptionalDiagnostic Diag(const Expr *E, diag::kind DiagId
626 return Diag(E->getExprLoc(), DiagId, ExtraNotes);
637 OptionalDiagnostic CCEDiag(LocArg Loc, diag::kind DiagId
646 return Diag(Loc, DiagId, ExtraNotes);
650 OptionalDiagnostic Note(SourceLocation Loc, diag::kind DiagId) {
653 return OptionalDiagnostic(&addDiag(Loc, DiagId));
    [all...]

Completed in 486 milliseconds