Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseSet.h109 class ConstIterator; variable
114 friend class ConstIterator; variable
141 class ConstIterator {
153 ConstIterator() = default;
154 ConstIterator(const Iterator &B) : I(B.I) {} in ConstIterator() function
155 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} in ConstIterator() function
160 ConstIterator& operator++() { ++I; return *this; }
161 ConstIterator operator++(int) { auto T = *this; ++I; return T; }
162 friend bool operator==(const ConstIterator &X, const ConstIterator &Y) {
165 friend bool operator!=(const ConstIterator &X, const ConstIterator &Y) {
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h150 typedef IteratorBase<const Item> ConstIterator; typedef
155 ConstIterator begin() const { return ConstIterator(first_); } in begin()
156 ConstIterator end() const { return ConstIterator(0); } in end()
H A Dsanitizer_quarantine.h277 for (List::ConstIterator it = list_.begin(); it != list_.end(); ++it) { in PrintStats()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlist.h49 typedef IteratorBase<const T> ConstIterator; typedef
54 ConstIterator begin() const { return ConstIterator(First); } in begin()
55 ConstIterator end() const { return ConstIterator(nullptr); } in end()
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc1248 TEST(PrintStlContainerTest, ConstIterator) {