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

References

tools/clang/lib/ARCMigrate/Transforms.cpp
  403   lexer.LexFromRawLexer(tok);
  404   if (tok.isNot(tok::at)) return false;
  405   lexer.LexFromRawLexer(tok);
  406   if (tok.isNot(tok::raw_identifier)) return false;
  407   if (tok.getRawIdentifier() != "property")
  409   lexer.LexFromRawLexer(tok);
  410   if (tok.isNot(tok::l_paren)) return false;
  412   Token BeforeTok = tok;
  417   lexer.LexFromRawLexer(tok);
  418   if (tok.is(tok::r_paren))
  422     if (tok.isNot(tok::raw_identifier)) return false;
  423     if (tok.getRawIdentifier() == fromAttr) {
  425         Pass.TA.replaceText(tok.getLocation(), fromAttr, toAttr);
  429       AttrLoc = tok.getLocation();
  433       lexer.LexFromRawLexer(tok);
  435         AfterTok = tok;
  436     } while (tok.isNot(tok::comma) && tok.isNot(tok::r_paren));
  436     } while (tok.isNot(tok::comma) && tok.isNot(tok::r_paren));
  437     if (tok.is(tok::r_paren))
  440       BeforeTok = tok;
  441     lexer.LexFromRawLexer(tok);