Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValueMap.h49 class ValueMapIterator; variable
132 using iterator = ValueMapIterator<MapT, KeyT>;
326 template <typename DenseMapT, typename KeyT> class ValueMapIterator {
339 ValueMapIterator() : I() {}
340 ValueMapIterator(BaseT I) : I(I) {}
364 bool operator==(const ValueMapIterator &RHS) const {
367 bool operator!=(const ValueMapIterator &RHS) const {
371 inline ValueMapIterator& operator++() { // Preincrement
375 ValueMapIterator operator++(int) { // Postincrement
376 ValueMapIterator tmp = *this; ++*this; return tmp;
[all …]