OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DiagId
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Parse/
ParseTemplate.cpp
750
unsigned
DiagId
= diag::err_two_right_angle_brackets_need_space;
752
DiagId
= diag::warn_cxx98_compat_two_right_angle_brackets;
754
DiagId
= diag::err_right_angle_bracket_equal_needs_space;
755
Diag(Tok.getLocation(),
DiagId
) << Hint1 << Hint2;
[
all
...]
ParseExprCXX.cpp
483
unsigned
DiagID
= diag::err_missing_dependent_template_keyword;
485
DiagID
= diag::warn_missing_dependent_template_keyword;
487
Diag(Tok.getLocation(),
DiagID
)
636
Optional<unsigned>
DiagID
(ParseLambdaIntroducer(Intro));
637
if (
DiagID
) {
638
Diag(Tok,
DiagID
.getValue());
881
Optional<unsigned>
DiagID
(ParseLambdaIntroducer(Intro, &SkippedInits));
883
if (
DiagID
) {
892
DiagID
= ParseLambdaIntroducer(Intro);
893
assert(!
DiagID
&& "parsing lambda-introducer failed on reparse")
[
all
...]
/external/clang/lib/AST/
ExprConstant.cpp
508
PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind
DiagId
) {
509
PartialDiagnostic PD(
DiagId
, Ctx.getDiagAllocator());
519
OptionalDiagnostic Diag(SourceLocation Loc, diag::kind
DiagId
536
addDiag(Loc,
DiagId
);
545
OptionalDiagnostic Diag(const Expr *E, diag::kind
DiagId
549
return Diag(E->getExprLoc(),
DiagId
, ExtraNotes);
559
OptionalDiagnostic CCEDiag(LocArg Loc, diag::kind
DiagId
567
return Diag(Loc,
DiagId
, ExtraNotes);
571
OptionalDiagnostic Note(SourceLocation Loc, diag::kind
DiagId
) {
574
return OptionalDiagnostic(&addDiag(Loc,
DiagId
));
[
all
...]
/external/clang/lib/Sema/
SemaType.cpp
[
all
...]
Completed in 74 milliseconds