Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:hasNext

84   // for (BasicBitVector<>::Iterator it(bv); it.hasNext();) {
92 bool hasNext() const { return !bv_.empty(); }
270 // for (TwoLevelBitVector<>::Iterator it(bv); it.hasNext();) {
282 bool hasNext() const {
283 if (it1_.hasNext()) return true;
290 // Printf("++++: %zd %zd; %d %d; size %zd\n", i0_, i1_, it1_.hasNext(),
291 // it2_.hasNext(), kSize);
292 if (!it1_.hasNext() && !it2_.hasNext()) {
296 // Printf("+i0: %zd %zd; %d %d; size %zd\n", i0_, i1_, it1_.hasNext(),
297 // it2_.hasNext(), kSize);
301 if (!it2_.hasNext()) {
302 CHECK(it1_.hasNext());
305 // Printf("++i1: %zd %zd; %d %d; size %zd\n", i0_, i1_, it1_.hasNext(),
306 // it2_.hasNext(), kSize);
308 CHECK(it2_.hasNext());
312 // it1_.hasNext(), it2_.hasNext(), kSize, res);
313 if (!it1_.hasNext() && !it2_.hasNext())