Home
last modified time | relevance | path

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

/l4re-core-master/cxx/lib/tl/include/bits/
A Dlist_basics.h92 class Const_iterator
103 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() function
111 Const_iterator(Iterator const &o) : _c(*o) {} in Const_iterator() function
116 explicit Const_iterator(Internal_type i) : _c(i) {} in Const_iterator() function
140 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()
A Dsmart_ptr_list.h77 class Const_iterator
80 Const_iterator() : _c(nullptr) {} in Const_iterator() function
85 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() function
169 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()
A Dbst.h80 typedef __Bst_iter<Node, Node const, Fwd> Const_iterator; typedef
179 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
/l4re-core-master/moe/server/src/
A Dname_space.h166 typedef Tree::Const_iterator Const_iterator; typedef
170 Const_iterator begin() const { return _tree.begin(); } in begin()
171 Const_iterator end() const { return _tree.end(); } in end()
A Dname_space.cc293 for (Const_iterator i = begin(); i != end(); ++i) in dump()
/l4re-core-master/l4re_kernel/server/src/
A Dregion.cc117 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()
/l4re-core-master/l4re/util/include/
A Dregion_mapping154 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(); }
A Dname_space_svr198 typedef Tree::Const_iterator Const_iterator;
200 Const_iterator begin() const { return _tree.begin(); }
201 Const_iterator end() const { return _tree.end(); }
/l4re-core-master/cxx/lib/tl/include/
A Davl_map80 typedef typename Base_type::Const_iterator Const_iterator;
81 typedef typename Base_type::Const_iterator const_iterator;
A Davl_set231 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) const
401 for (Const_iterator i = o.begin(); i != o.end(); ++i)
A Ddlist104 typedef Iterator Const_iterator;
240 typedef typename Base::Const_iterator Const_iterator;
A Davl_tree139 typedef typename Bst::Const_iterator Const_iterator;
A Dslab_alloc324 for (typename H_list<Slab_i>::Const_iterator s = _partial_slabs.begin();
/l4re-core-master/sigma0/server/src/
A Dmem_man.cc25 Tree::Const_iterator n = _tree.find(r); in find()

Completed in 23 milliseconds