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

References

include/llvm/ADT/ImmutableList.h
  115     for (iterator I = begin(), E = end(); I != E; ++I) {
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
   53   iterator end() const { return L.end(); }
   93   iterator end() const { return L.end(); }
tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  207     for (auto I: LS) {
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
  397   for (const FieldNode &Node : Chain) {
  433   for (const FieldNode &Node : Chain)
unittests/ADT/ImmutableListTest.cpp
   30   for (ImmutableList<Wrapper<char>>::iterator It = L.begin(), End = L.end();
   47   EXPECT_TRUE(L.begin() == L.end());
   63   EXPECT_FALSE(L2.begin() == L2.end());
   64   EXPECT_TRUE(L2.begin() != L2.end());
  106                                                      E = L.end();
  246   for (ImmutableList<Wrapper<long>>::iterator I = L.begin(), E = L.end();
  254   for (ImmutableList<Wrapper<long>>::iterator I = L2.begin(), E = L2.end();
  262   for (ImmutableList<Wrapper<long>>::iterator I = L3.begin(), E = L3.end();