Searched refs:Const_iterator (Results 1 – 14 of 14) sorted by relevance
92 class Const_iterator103 Const_iterator operator ++ () { _c = POLICY::next(_c); return *this; }105 friend bool operator == (Const_iterator const &lhs, Const_iterator const &rhs)107 friend bool operator != (Const_iterator const &lhs, Const_iterator const &rhs)110 Const_iterator() : _c(0) {} in Const_iterator() function111 Const_iterator(Iterator const &o) : _c(*o) {} in Const_iterator() function116 explicit Const_iterator(Internal_type i) : _c(i) {} in Const_iterator() function140 Const_iterator begin() const { return Const_iterator(_f); } in begin()148 static Const_iterator iter(Const_value_type c) { return Const_iterator(c); } in iter()150 Const_iterator end() const { return Const_iterator(nullptr); } in end()
77 class Const_iterator80 Const_iterator() : _c(nullptr) {} in Const_iterator() function85 Const_iterator operator ++ ()91 bool operator == (Const_iterator const &o) const { return _c == o._c; }92 bool operator != (Const_iterator const &o) const { return !operator == (o); }97 explicit Const_iterator(Value_type const *i) : _c(i) {} in Const_iterator() function169 Const_iterator begin() const { return Const_iterator(_f.get()); } in begin()170 Const_iterator end() const { return Const_iterator(); } in end()172 Const_iterator cbegin() const { return const_iterator(_f.get()); } in cbegin()173 Const_iterator cend() const { return Const_iterator(); } in cend()
80 typedef __Bst_iter<Node, Node const, Fwd> Const_iterator; typedef179 Const_iterator begin() const { return Const_iterator(head()); } in begin()184 Const_iterator end() const { return Const_iterator(); } in end()247 Const_iterator find(Key_param_type key) const;311 typename Bst<Node, Get_key, Compare>::Const_iterator
166 typedef Tree::Const_iterator Const_iterator; typedef170 Const_iterator begin() const { return _tree.begin(); } in begin()171 Const_iterator end() const { return _tree.end(); } in end()
293 for (Const_iterator i = begin(); i != end(); ++i) in dump()
117 for (Region_map::Const_iterator i = area_begin(); i != area_end(); ++i) in debug_dump()122 for (Region_map::Const_iterator i = begin(); i != end(); ++i) in debug_dump()
154 typedef typename Tree::Const_iterator Const_iterator;159 Const_iterator begin() const noexcept { return _rm.begin(); }161 Const_iterator end() const noexcept { return _rm.end(); }164 Const_iterator area_begin() const noexcept { return _am.begin(); }166 Const_iterator area_end() const noexcept { return _am.end(); }
198 typedef Tree::Const_iterator Const_iterator;200 Const_iterator begin() const { return _tree.begin(); }201 Const_iterator end() const { return _tree.end(); }
80 typedef typename Base_type::Const_iterator Const_iterator;81 typedef typename Base_type::Const_iterator const_iterator;
231 typedef Avl_set_iter<_Node, Const_item_type, Fwd> Const_iterator;232 typedef Const_iterator const_iterator;348 Const_iterator begin() const { return _tree.begin(); }353 Const_iterator end() const { return _tree.end(); }388 Const_iterator find(Key_type const &item) const401 for (Const_iterator i = o.begin(); i != o.end(); ++i)
104 typedef Iterator Const_iterator;240 typedef typename Base::Const_iterator Const_iterator;
139 typedef typename Bst::Const_iterator Const_iterator;
324 for (typename H_list<Slab_i>::Const_iterator s = _partial_slabs.begin();
25 Tree::Const_iterator n = _tree.find(r); in find()
Completed in 23 milliseconds