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

References

include/llvm/ADT/iterator.h
   95   DerivedT operator+(DifferenceTypeT n) const {
  105   friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) {
  105   friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) {
  111   DerivedT operator-(DifferenceTypeT n) const {
  120   DerivedT &operator++() {
  125   DerivedT operator++(int) {
  130   DerivedT &operator--() {
  136   DerivedT operator--(int) {
  145   bool operator!=(const DerivedT &RHS) const {
  149   bool operator>(const DerivedT &RHS) const {
  156   bool operator<=(const DerivedT &RHS) const {
  162   bool operator>=(const DerivedT &RHS) const {
  206     : public iterator_facade_base<DerivedT, IteratorCategoryT, T,
  216     static_assert(std::is_base_of<iterator_adaptor_base, DerivedT>::value,
  225   DerivedT &operator+=(difference_type n) {
  232   DerivedT &operator-=(difference_type n) {
  240   difference_type operator-(const DerivedT &RHS) const {
  250   DerivedT &operator++() {
  255   DerivedT &operator--() {
  263   bool operator==(const DerivedT &RHS) const { return I == RHS.I; }
  264   bool operator<(const DerivedT &RHS) const {
include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
   31           GSIHashIterator, FixedStreamArrayIterator<PSHashRecord>,
   35   GSIHashIterator(T &&v)
   66   GSIHashIterator begin() const { return GSIHashIterator(HashRecords.begin()); }
   67   GSIHashIterator end() const { return GSIHashIterator(HashRecords.end()); }