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

References

tools/clang/lib/AST/ScanfFormatString.cpp
   35   const char *start = I - 1;
   36   UpdateOnReturn <const char*> UpdateBeg(Beg, I);
   39   if (I == E) {
   40     H.HandleIncompleteScanList(start, I);
   45   if (*I == ']') {
   46     if (++I == E) {
   47       H.HandleIncompleteScanList(start, I - 1);
   53   if (I + 1 != E && I[0] == '^' && I[1] == ']') {
   53   if (I + 1 != E && I[0] == '^' && I[1] == ']') {
   53   if (I + 1 != E && I[0] == '^' && I[1] == ']') {
   54     I += 2;
   55     if (I == E) {
   56       H.HandleIncompleteScanList(start, I - 1);
   62   while (*I != ']') {
   63     if (++I == E) {
   64       H.HandleIncompleteScanList(start, I - 1);
   69   CS.setEndScanList(I);