Home
last modified time | relevance | path

Searched defs:list_iterator (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/boost/xpressive/detail/core/
Dlist.hpp53 struct list_iterator struct
56 list_iterator(list_iterator<> const &it) : _node(it._node) {} in list_iterator() argument
57 explicit list_iterator(node_base *n = 0) : _node(n) {} in list_iterator() function
61 Ref dereference() const { return static_cast<node *>(_node)->_value; } in dereference()
62 void increment() { _node = _node->_next; } in increment()
63 void decrement() { _node = _node->_prev; } in decrement()
64 bool equal(list_iterator const &it) const { return _node == it._node; } in equal()
65 node_base *_node;
/third_party/boost/boost/intrusive/detail/
Dlist_iterator.hpp36 class list_iterator class
63 BOOST_INTRUSIVE_FORCEINLINE list_iterator() in list_iterator() function in boost::intrusive::list_iterator
66 …BOOST_INTRUSIVE_FORCEINLINE explicit list_iterator(const node_ptr & nodeptr, const const_value_tra… in list_iterator() function in boost::intrusive::list_iterator
70 BOOST_INTRUSIVE_FORCEINLINE list_iterator(const list_iterator &other) in list_iterator() function in boost::intrusive::list_iterator
74 BOOST_INTRUSIVE_FORCEINLINE list_iterator(const nonconst_iterator &other) in list_iterator() function in boost::intrusive::list_iterator
/third_party/boost/boost/range/detail/
Dmicrosoft.hpp596 struct list_iterator : struct
600 typedef list_iterator self_t;
601 typedef typename list_iterator_super<ListT, Value, Reference, Traversal>::type super_t;
602 typedef typename super_t::reference ref_t;
605 explicit list_iterator() in list_iterator() function
608 explicit list_iterator(ListT& lst, POSITION pos) : in list_iterator() function
614 list_iterator(list_iterator<ListT_, Value_, Reference_, Traversal_> const& other) : in list_iterator() function
619 ListT *m_plst;
620 POSITION m_pos;
623 ref_t dereference() const in dereference()
[all …]
/third_party/boost/libs/unordered/test/helpers/
Dlist.hpp84 template <typename T> class list_iterator class
100 list_iterator() : ptr_(0) {} in list_iterator() function in test::test_detail::list_iterator
101 explicit list_iterator(node* x) : ptr_(x) {} in list_iterator() function in test::test_detail::list_iterator
/third_party/boost/boost/regex/pending/
Dobject_cache.hpp40 typedef typename list_type::iterator list_iterator; typedef in boost::object_cache
/third_party/wayland_standard/tests/
Dlist-test.c73 TEST(list_iterator) in TEST() argument
/third_party/glib/glib/
Dglib_gdb.py257 def list_iterator (self, arg, container, command): member in ForeachCommand
/third_party/boost/boost/heap/detail/
Dmutable_heap.hpp52 typedef typename object_list::iterator list_iterator; typedef in boost::heap::detail::priority_queue_mutable_wrapper
/third_party/boost/boost/graph/
Dpush_relabel_max_flow.hpp94 typedef typename std::list< vertex_descriptor >::iterator list_iterator; typedef in boost::detail::push_relabel
/third_party/boost/boost/phoenix/function/
Dlazy_list.hpp999 class list_iterator { class
1021 list_iterator() : l(), is_nil(true) {} in list_iterator() function in boost::phoenix::impl::list_iterator
1022 explicit list_iterator( const list<T>& ll ) : l(ll), is_nil(!ll) {} in list_iterator() function in boost::phoenix::impl::list_iterator
/third_party/boost/boost/regex/v4/
Dbasic_regex_creator.hpp142 typedef typename std::vector<digraph_type>::const_iterator list_iterator; typedef in boost::BOOST_REGEX_DETAIL_NS::basic_char_set
/third_party/python/Lib/
D_collections_abc.py42 list_iterator = type(iter([])) variable