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

References

tools/clang/lib/Parse/ParsePragma.cpp
 1931   PP.Lex(Tok);
 1932   if (Tok.isNot(tok::l_paren)) {
 1933     PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "unused";
 1943     PP.Lex(Tok);
 1946       if (Tok.is(tok::identifier)) {
 1947         Identifiers.push_back(Tok);
 1953       PP.Diag(Tok.getLocation(), diag::warn_pragma_unused_expected_var);
 1958     if (Tok.is(tok::comma)) {
 1963     if (Tok.is(tok::r_paren)) {
 1964       RParenLoc = Tok.getLocation();
 1969     PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_punc) << "unused";
 1973   PP.Lex(Tok);
 1974   if (Tok.isNot(tok::eod)) {
 1975     PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) <<