reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Parse/ParsePragma.cpp
 2481   SourceLocation DetectMismatchLoc = Tok.getLocation();
 2482   PP.Lex(Tok);
 2483   if (Tok.isNot(tok::l_paren)) {
 2490   if (!PP.LexStringLiteral(Tok, NameString,
 2497   if (Tok.isNot(tok::comma)) {
 2498     PP.Diag(Tok.getLocation(), diag::err_pragma_detect_mismatch_malformed);
 2502   if (!PP.LexStringLiteral(Tok, ValueString, "pragma detect_mismatch",
 2506   if (Tok.isNot(tok::r_paren)) {
 2507     PP.Diag(Tok.getLocation(), diag::err_expected) << tok::r_paren;
 2510   PP.Lex(Tok);  // Eat the r_paren.
 2512   if (Tok.isNot(tok::eod)) {
 2513     PP.Diag(Tok.getLocation(), diag::err_pragma_detect_mismatch_malformed);