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

References

include/llvm/ADT/SparseBitVector.h
  258   using ElementListConstIter = typename ElementList::const_iterator;
include/llvm/XRay/Profile.h
  140   using const_iterator = BlockList::const_iterator;
tools/clang/include/clang/AST/CXXInheritance.h
  181   using const_paths_iterator = std::list<CXXBasePath>::const_iterator;
tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
   56     using token_iterator = std::list<Token>::const_iterator;
tools/clang/lib/ARCMigrate/ARCMT.cpp
   63   ListTy::const_iterator I = List.begin();
   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)
tools/clang/lib/ARCMigrate/Internals.h
   38   typedef ListTy::const_iterator iterator;
tools/clang/lib/Analysis/PathDiagnostic.cpp
  316   PathPieces::const_iterator X_I = X.begin(), X_end = X.end();
  317   PathPieces::const_iterator Y_I = Y.begin(), Y_end = Y.end();
 1135   for (PathPieces::const_iterator I = begin(), E = end(); I != E; ++I) {
tools/clang/lib/Format/TokenAnnotator.h
   55     for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(),
tools/clang/lib/Format/UnwrappedLineParser.cpp
 2450   for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(),
 2457   for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(),
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 2609   for (PathPieces::const_iterator I = path.begin(), E = path.end();
tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  365   for (PathPieces::const_iterator I = P.path.begin(), E = P.path.end();I!=E;++I)
  382   for (PathPieces::const_iterator I = P.subPieces.begin(),
  534   PathPieces::const_iterator FirstNonNote = std::partition_point(
  539   PathPieces::const_iterator I = Path.begin();
  555   for (PathPieces::const_iterator E = Path.end(); I != E; ++I)
tools/lldb/include/lldb/Breakpoint/WatchpointList.h
  195   wp_collection::const_iterator
tools/lldb/source/Breakpoint/WatchpointList.cpp
   47   wp_collection::const_iterator pos, end = m_watchpoints.end();
   57     wp_collection::const_iterator pos, end = m_watchpoints.end();
   75     wp_collection::const_iterator pos, end = m_watchpoints.end();
  105 WatchpointList::wp_collection::const_iterator
  115   wp_collection::const_iterator pos = GetIDConstIterator(watch_id);
  142     wp_collection::const_iterator pos = m_watchpoints.begin();
  153     wp_collection::const_iterator pos = m_watchpoints.begin();
  162   wp_collection::const_iterator pos, end = m_watchpoints.end();
  190   wp_collection::const_iterator pos, end = m_watchpoints.end();
tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
   31   EntryCollection::const_iterator pos, end = m_entries.end();
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
  167   typedef SOEntryList::const_iterator iterator;
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  158   typedef SOEntryList::const_iterator iterator;
tools/polly/include/polly/ScopInfo.h
 2447   using const_iterator = StmtSet::const_iterator;
usr/include/c++/7.4.0/bits/list.tcc
   89       emplace(const_iterator __position, _Args&&... __args)
  102     insert(const_iterator __position, const value_type& __x)
  117     insert(const_iterator __position, size_type __n, const value_type& __x)
  133       insert(const_iterator __position, _InputIterator __first,
  151     erase(const_iterator __position) noexcept
  173     typename list<_Tp, _Alloc>::const_iterator
  177       const_iterator __i;
  232       const_iterator __i = _M_resize_pos(__new_size);
  244       const_iterator __i = _M_resize_pos(__new_size);
usr/include/c++/7.4.0/bits/range_access.h
   58     begin(const _Container& __cont) -> decltype(__cont.begin())
   78     end(const _Container& __cont) -> decltype(__cont.end())
usr/include/c++/7.4.0/bits/stl_list.h
  528       typedef std::reverse_iterator<const_iterator>	 const_reverse_iterator;
  859       const_iterator
  861       { return const_iterator(this->_M_impl._M_node._M_next); }
  877       const_iterator
  879       { return const_iterator(&this->_M_impl._M_node); }
  923       const_iterator
  925       { return const_iterator(this->_M_impl._M_node._M_next); }
  932       const_iterator
  934       { return const_iterator(&this->_M_impl._M_node); }
 1050 	const_iterator __tmp = end();
 1170 	emplace(const_iterator __position, _Args&&... __args);
 1184       insert(const_iterator __position, const value_type& __x);
 1214       insert(const_iterator __position, value_type&& __x)
 1233       insert(const_iterator __p, initializer_list<value_type> __l)
 1253       insert(const_iterator __position, size_type __n, const value_type& __x);
 1294 	insert(const_iterator __position, _InputIterator __first,
 1337       erase(const_iterator __position) noexcept;
 1362       erase(const_iterator __first, const_iterator __last) noexcept
 1362       erase(const_iterator __first, const_iterator __last) noexcept
 1424       splice(const_iterator __position, list&& __x) noexcept
 1443       splice(const_iterator __position, list& __x) noexcept
 1459       splice(const_iterator __position, list&& __x, const_iterator __i) noexcept
 1459       splice(const_iterator __position, list&& __x, const_iterator __i) noexcept
 1501       splice(const_iterator __position, list& __x, const_iterator __i) noexcept
 1501       splice(const_iterator __position, list& __x, const_iterator __i) noexcept
 1520       splice(const_iterator __position, list&& __x, const_iterator __first,
 1520       splice(const_iterator __position, list&& __x, const_iterator __first,
 1521 	     const_iterator __last) noexcept
 1570       splice(const_iterator __position, list& __x, const_iterator __first,
 1570       splice(const_iterator __position, list& __x, const_iterator __first,
 1571 	     const_iterator __last) noexcept
 1833       const_iterator
utils/unittest/googletest/src/gtest.cc
 1156     for (std::list<std::pair<char, const char*> >::const_iterator it =