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
148 class ConstIterator {
160 ConstIterator() = default;
161 ConstIterator(const Iterator &B) : I(B.I) {} in ConstIterator() function
162 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} in ConstIterator() function
167 ConstIterator &operator++() {
171 ConstIterator operator++(int) {
176 friend bool operator==(const ConstIterator &X, const ConstIterator &Y) {
179 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.h146 typedef IteratorBase<const T> ConstIterator; typedef
155 ConstIterator begin() const { in begin()
156 return ConstIterator(LinkOp<const T>(this->getBase(), this->getSize()), in begin()
159 ConstIterator end() const { in end()
160 return ConstIterator(LinkOp<const T>(this->getBase(), this->getSize()), in end()
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc1258 TEST(PrintStlContainerTest, ConstIterator) {