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

Declarations

include/llvm/ADT/DenseMap.h
   55 class DenseMapIterator;

References

include/llvm/ADT/DenseMap.h
   69   using iterator = DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT>;
   71       DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT, true>;
 1163   using ConstIterator = DenseMapIterator<KeyT, ValueT, KeyInfoT, Bucket, true>;
 1199       const DenseMapIterator<KeyT, ValueT, KeyInfoT, Bucket, IsConstSrc> &I)
 1230   inline DenseMapIterator& operator++() {  // Preincrement
 1241   DenseMapIterator operator++(int) {  // Postincrement
 1243     DenseMapIterator tmp = *this; ++*this; return tmp;
include/llvm/ADT/STLExtras.h
  421 iterator_range<filter_iterator<detail::IterOfRange<RangeT>, PredicateT>>
  424       filter_iterator<detail::IterOfRange<RangeT>, PredicateT>;
usr/include/c++/7.4.0/tuple
 1313     constexpr __tuple_element_t<__i, tuple<_Elements...>>&
 1319     constexpr const __tuple_element_t<__i, tuple<_Elements...>>&
 1325     constexpr __tuple_element_t<__i, tuple<_Elements...>>&&