Home
last modified time | relevance | path

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

/aosp12/art/libartbase/base/
H A Dstl_util.h191 CountIter() : count_(0) {} in CountIter() function
192 explicit CountIter(size_t count) : count_(count) {} in CountIter() function
193 CountIter& operator++() {
197 CountIter operator++(int) {
200 return CountIter(ret);
202 bool operator==(const CountIter& other) const {
205 bool operator!=(const CountIter& other) const {
219 return IterationRange(ZipLeftIter(iter.begin(), CountIter(0)), in ZipCount()
220 ZipLeftIter(iter.end(), CountIter(-1))); in ZipCount()
233 return IterationRange(CountIter(start), CountIter(end)); in Range()
[all …]
/aosp12/art/compiler/optimizing/
H A Dnodes.h2125 using HConstEnvInputRef = TransformIterator<CountIter, EnvInputSelector>;
2127 IterationRange<CountIter> range(Range(Size())); in GetEnvInputs()