reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
34 ListTy::iterator I = List.begin(); 35 while (I != List.end()) { 45 while (I != List.end() && I->getLevel() == DiagnosticsEngine::Note) 48 I = List.erase(eraseS, I); 63 ListTy::const_iterator I = List.begin(); 64 while (I != List.end()) { 81 for (ListTy::const_iterator I = List.begin(), E = List.end(); I != E; ++I) 81 for (ListTy::const_iterator I = List.begin(), E = List.end(); I != E; ++I) 86 for (ListTy::const_iterator I = List.begin(), E = List.end(); I != E; ++I) 86 for (ListTy::const_iterator I = List.begin(), E = List.end(); I != E; ++I)tools/clang/lib/ARCMigrate/Internals.h
29 void push_back(const StoredDiagnostic &diag) { List.push_back(diag); } 39 iterator begin() const { return List.begin(); } 40 iterator end() const { return List.end(); }