Home | History | Annotate | Download | only in IR

Lines Matching refs:ValueMapConstIterator

52 class ValueMapConstIterator;
135 using const_iterator = ValueMapConstIterator<MapT, KeyT>;
381 class ValueMapConstIterator :
391 ValueMapConstIterator() : I() {}
392 ValueMapConstIterator(BaseT I) : I(I) {}
393 ValueMapConstIterator(ValueMapIterator<DenseMapT, KeyT> Other)
416 bool operator==(const ValueMapConstIterator &RHS) const {
419 bool operator!=(const ValueMapConstIterator &RHS) const {
423 inline ValueMapConstIterator& operator++() { // Preincrement
427 ValueMapConstIterator operator++(int) { // Postincrement
428 ValueMapConstIterator tmp = *this; ++*this; return tmp;