Home
last modified time | relevance | path

Searched refs:_iter (Results 1 – 25 of 1538) sorted by relevance

12345678910>>...62

/dports/lang/vala/vala-0.48.18/libvaladoc/documentation/
H A Dgtkdocmarkdownscanner.vala219 _iter = _iter.offset (1);
236 _iter = _iter.offset (1);
248 _iter = _iter.offset (1);
254 _iter = _iter.offset (1);
260 _iter = _iter.offset (1);
270 _iter = _iter.offset (2);
275 _iter = _iter.offset (1);
280 _iter = _iter.offset (1);
598 _iter = _iter.offset (2);
604 _iter = _iter.offset (1);
[all …]
/dports/math/linbox/linbox-1.6.3/linbox/vector/
H A Dsubiterator.h85 _iter (iter._iter), _stride (iter._stride) in Subiterator()
90 _iter (iter._iter), _stride (iter._stride) in Subiterator()
97 _iter (iter._iter), _stride (iter._stride) in Subiterator()
103 _iter (iter._iter), _stride (iter._stride) in Subiterator()
137 return _iter;
196 return (_iter - x._iter)/_stride;
219 return (this->_iter < i._iter);
224 return (this->_iter > i._iter);
229 return (this->_iter <= i._iter);
234 return (this->_iter >= i._iter);
[all …]
/dports/sysutils/apcupsd/apcupsd-3.14.14/include/
H A Damap.h63 iterator(const iterator &rhs) : _iter(rhs._iter) {} in iterator()
70 V& value() { return (*_iter)._val; } in value()
71 K& key() { return (*_iter)._key; } in key()
74 bool operator==(const iterator &rhs) const { return _iter == rhs._iter; }
78 { if (&rhs != this) _iter = rhs._iter; return *this;}
83 typename alist<keyval>::iterator _iter; variable
90 const_iterator(const const_iterator &rhs) : _iter(rhs._iter) {} in const_iterator()
98 const K& key() const { return (*_iter)._key; } in key()
101 bool operator==(const const_iterator &rhs) const { return _iter == rhs._iter; }
105 { if (&rhs != this) _iter = rhs._iter; return *this;}
[all …]
H A Daiter.h33 const_iterator(const const_iterator &rhs) : _iter(rhs._iter) {} in const_iterator()
36 const_iterator &operator++() { ++_iter; return *this; }
37 const_iterator operator++(int) { const_iterator tmp(_iter); ++_iter; return tmp; }
38 const_iterator &operator--() { --_iter; return *this; }
39 const_iterator operator--(int) { const_iterator tmp(_iter); --_iter; return tmp; }
41 const T& operator*() const { return *_iter; }
43 bool operator==(const const_iterator &rhs) const { return _iter == rhs._iter; }
45 bool operator==(const I &rhs) const { return _iter == rhs; }
49 { if (&rhs != this) _iter = rhs._iter; return *this; }
51 { if (&rhs != &_iter) _iter = rhs; return *this; }
[all …]
/dports/sysutils/apcctrl/apcctrl-0.8.21/include/
H A Damap.h63 iterator(const iterator &rhs) : _iter(rhs._iter) {} in iterator()
70 V& value() { return (*_iter)._val; } in value()
71 K& key() { return (*_iter)._key; } in key()
74 bool operator==(const iterator &rhs) const { return _iter == rhs._iter; }
78 { if (&rhs != this) _iter = rhs._iter; return *this;}
83 typename alist<keyval>::iterator _iter; variable
90 const_iterator(const const_iterator &rhs) : _iter(rhs._iter) {} in const_iterator()
98 const K& key() const { return (*_iter)._key; } in key()
101 bool operator==(const const_iterator &rhs) const { return _iter == rhs._iter; }
105 { if (&rhs != this) _iter = rhs._iter; return *this;}
[all …]
H A Daiter.h33 const_iterator(const const_iterator &rhs) : _iter(rhs._iter) {} in const_iterator()
36 const_iterator &operator++() { ++_iter; return *this; }
37 const_iterator operator++(int) { const_iterator tmp(_iter); ++_iter; return tmp; }
38 const_iterator &operator--() { --_iter; return *this; }
39 const_iterator operator--(int) { const_iterator tmp(_iter); --_iter; return tmp; }
41 const T& operator*() const { return *_iter; }
43 bool operator==(const const_iterator &rhs) const { return _iter == rhs._iter; }
45 bool operator==(const I &rhs) const { return _iter == rhs; }
49 { if (&rhs != this) _iter = rhs._iter; return *this; }
51 { if (&rhs != &_iter) _iter = rhs; return *this; }
[all …]
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/percona57-server/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/percona57-client/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/boost/boost_1_59_0/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/biology/lamarc/lamarc-2.1.8/boost/graph/
H A Dmatrix_as_graph.hpp95 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
96 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
100 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
101 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
103 Iter _iter; member in boost::matrix_adj_iterator
114 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
115 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
116 Iter operator*() { return _iter; } in operator *()
119 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
120 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/devel/boost-docs/boost_1_72_0/boost/graph/
H A Dmatrix_as_graph.hpp101 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
102 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
106 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
107 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
109 Iter _iter; member in boost::matrix_adj_iterator
124 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
125 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
126 Iter operator*() { return _iter; } in operator *()
129 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
130 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/devel/R-cran-BH/BH/inst/include/boost/graph/
H A Dmatrix_as_graph.hpp103 matrix_adj_iterator(const self& x) : _iter(x._iter) {} in matrix_adj_iterator()
106 _iter = x._iter; in operator =()
112 ++_iter; in operator ++()
118 ++_iter; in operator ++()
121 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
125 Iter _iter; member in boost::matrix_adj_iterator
140 matrix_incidence_iterator(const self& x) : _iter(x._iter) {} in matrix_incidence_iterator()
143 _iter = x._iter; in operator =()
149 ++_iter; in operator ++()
155 ++_iter; in operator ++()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/graph/
H A Dmatrix_as_graph.hpp103 matrix_adj_iterator(const self& x) : _iter(x._iter) {} in matrix_adj_iterator()
106 _iter = x._iter; in operator =()
112 ++_iter; in operator ++()
118 ++_iter; in operator ++()
121 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
125 Iter _iter; member in boost::matrix_adj_iterator
140 matrix_incidence_iterator(const self& x) : _iter(x._iter) {} in matrix_incidence_iterator()
143 _iter = x._iter; in operator =()
149 ++_iter; in operator ++()
155 ++_iter; in operator ++()
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/graph/
H A Dmatrix_as_graph.hpp103 matrix_adj_iterator(const self& x) : _iter(x._iter) {} in matrix_adj_iterator()
106 _iter = x._iter; in operator =()
112 ++_iter; in operator ++()
118 ++_iter; in operator ++()
121 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
125 Iter _iter; member in boost::matrix_adj_iterator
140 matrix_incidence_iterator(const self& x) : _iter(x._iter) {} in matrix_incidence_iterator()
143 _iter = x._iter; in operator =()
149 ++_iter; in operator ++()
155 ++_iter; in operator ++()
[all …]
/dports/devel/boost-libs/boost_1_72_0/boost/graph/
H A Dmatrix_as_graph.hpp101 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
102 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
106 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
107 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
109 Iter _iter; member in boost::matrix_adj_iterator
124 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
125 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
126 Iter operator*() { return _iter; } in operator *()
129 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
130 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/graph/
H A Dmatrix_as_graph.hpp101 matrix_adj_iterator(const self& x) : _iter(x._iter) { } in matrix_adj_iterator()
102 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
106 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
107 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
109 Iter _iter; member in boost::matrix_adj_iterator
124 matrix_incidence_iterator(const self& x) : _iter(x._iter) { } in matrix_incidence_iterator()
125 self& operator=(const self& x) { _iter = x._iter; return *this; } in operator =()
126 Iter operator*() { return _iter; } in operator *()
129 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
130 bool operator!=(const self& x) const { return _iter != x._iter; } in operator !=()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/graph/
H A Dmatrix_as_graph.hpp103 matrix_adj_iterator(const self& x) : _iter(x._iter) {} in matrix_adj_iterator()
106 _iter = x._iter; in operator =()
112 ++_iter; in operator ++()
118 ++_iter; in operator ++()
121 bool operator==(const self& x) const { return _iter == x._iter; } in operator ==()
125 Iter _iter; member in boost::matrix_adj_iterator
140 matrix_incidence_iterator(const self& x) : _iter(x._iter) {} in matrix_incidence_iterator()
143 _iter = x._iter; in operator =()
149 ++_iter; in operator ++()
155 ++_iter; in operator ++()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sword25/kernel/
H A Dinputpersistenceblock.cpp42 _iter = _data.begin(); in InputPersistenceBlock()
46 if (_iter != _data.end()) in ~InputPersistenceBlock()
59 _iter += 4; in read()
67 value = READ_LE_UINT32(_iter); in read()
68 _iter += 4; in read()
77 tmp[0] = READ_LE_UINT32(_iter); in read()
79 _iter += 4; in read()
88 _iter += 4; in read()
104 _iter += size; in readString()
116 _iter += size; in readByteArray()
[all …]

12345678910>>...62