Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DStringMap.h23 class StringMapConstIterator; variable
267 typedef StringMapConstIterator<ValueTy> const_iterator;
406 class StringMapConstIterator {
412 explicit StringMapConstIterator(StringMapEntryBase **Bucket,
425 bool operator==(const StringMapConstIterator &RHS) const {
428 bool operator!=(const StringMapConstIterator &RHS) const {
432 inline StringMapConstIterator& operator++() { // Preincrement
437 StringMapConstIterator operator++(int) { // Postincrement
438 StringMapConstIterator tmp = *this; ++*this; return tmp;
449 class StringMapIterator : public StringMapConstIterator<ValueTy> {
[all …]