Home
last modified time | relevance | path

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

/art/libartbase/base/
Dstl_util.h193 class CountIter {
201 CountIter() : count_(0) {} in CountIter() function
202 explicit CountIter(size_t count) : count_(count) {} in CountIter() function
203 CountIter& operator++() {
207 CountIter operator++(int) {
210 return CountIter(ret);
212 bool operator==(const CountIter& other) const {
215 bool operator!=(const CountIter& other) const {
228 static inline IterationRange<ZipLeftIter<Iter, CountIter>> ZipCount(IterationRange<Iter> iter) { in ZipCount()
229 return IterationRange(ZipLeftIter(iter.begin(), CountIter(0)), in ZipCount()
[all …]
/art/compiler/optimizing/
Dnodes.h2176 using HConstEnvInputRef = TransformIterator<CountIter, EnvInputSelector>;
2178 IterationRange<CountIter> range(Range(Size())); in GetEnvInputs()