Home
last modified time | relevance | path

Searched refs:ValueMapIterator (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/include/llvm/IR/
H A DValueMap.h48 class ValueMapIterator; variable
131 using iterator = ValueMapIterator<MapT, KeyT>;
325 template <typename DenseMapT, typename KeyT> class ValueMapIterator {
338 ValueMapIterator() : I() {}
339 ValueMapIterator(BaseT I) : I(I) {}
363 bool operator==(const ValueMapIterator &RHS) const {
366 bool operator!=(const ValueMapIterator &RHS) const {
370 inline ValueMapIterator& operator++() { // Preincrement
374 ValueMapIterator operator++(int) { // Postincrement
375 ValueMapIterator tmp = *this; ++*this; return tmp;
[all …]