Home
last modified time | relevance | path

Searched refs:itImpl (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/cosv/inc/cosv/tpl/
H A Dvvector.hxx211 : itImpl(i_implIter) {} in const_iterator()
218 : itImpl() {} in const_iterator()
226 { return itImpl == i_other.itImpl; } in operator ==()
229 { return itImpl != i_other.itImpl; } in operator !=()
233 { return *(*itImpl); } in operator *()
237 { ++itImpl; return *this; } in operator ++()
239 { return const_iterator(itImpl++); } in operator ++()
243 { --itImpl; return *this; } in operator --()
245 { return const_iterator(itImpl--); } in operator --()
250 { return itImpl < i_other.itImpl; } in operator <()
[all …]
/AOO41X/main/autodoc/source/ary/inc/store/
H A Ds_iterator.hxx58 : itImpl() {} in iterator()
61 : itImpl(i_impl) {} in iterator()
66 { return itImpl == i_other.itImpl; } in operator ==()
69 { return itImpl != i_other.itImpl; } in operator !=()
70 ENTITY & operator*() const { csv_assert(*itImpl != 0); in operator *()
71 return *(*itImpl); } in operator *()
72 self & operator++() { ++itImpl; return *this; } in operator ++()
73 self operator++(int) { return self(itImpl++); } in operator ++()
77 impl_type ImplIterator() const { return itImpl; } in ImplIterator()
80 impl_type itImpl; member in ary::stg::iterator
[all …]