Lines Matching refs:_count
10 from itertools import islice as _islice, count as _count
116 self._count = 0
129 self._count,
136 self._count = 0
166 self._count += 1
171 self._count = 1
194 self._count = count = self._count - 1
206 self._count, self._owner = state
209 if self._count == 0:
211 count = self._count
212 self._count = 0
660 self._count = 0
682 index = self._count
683 self._count += 1
693 self._count -= 1
736 if self._count == 0:
750 if self._count > 0:
789 return self._count
803 _counter = _count(1).__next__