Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DStringMap.h24 class StringMapConstIterator; variable
261 typedef StringMapConstIterator<ValueTy> const_iterator;
401 template <typename ValueTy> class StringMapConstIterator {
408 StringMapConstIterator() : Ptr(nullptr) { } in StringMapConstIterator() function
410 explicit StringMapConstIterator(StringMapEntryBase **Bucket,
423 bool operator==(const StringMapConstIterator &RHS) const {
426 bool operator!=(const StringMapConstIterator &RHS) const {
430 inline StringMapConstIterator& operator++() { // Preincrement
435 StringMapConstIterator operator++(int) { // Postincrement
436 StringMapConstIterator tmp = *this; ++*this; return tmp;
[all …]