Searched refs:needs_input (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Modules/ |
D | _bz2module.c | 109 char needs_input; member 551 d->needs_input = 0; in decompress() 561 d->needs_input = 1; in decompress() 564 d->needs_input = 0; in decompress() 657 self->needs_input = 1; in _bz2_BZ2Decompressor___init___impl() 746 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
|
D | _lzmamodule.c | 121 char needs_input; member 1045 d->needs_input = 0; in decompress() 1061 d->needs_input = 0; in decompress() 1067 d->needs_input = 1; in decompress() 1071 d->needs_input = 0; in decompress() 1241 self->needs_input = 1; in _lzma_LZMADecompressor___init___impl() 1337 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
|
/third_party/python/Lib/ |
D | _compression.py | 96 if self._decompressor.needs_input:
|
/third_party/python/Doc/library/ |
D | bz2.rst | 198 output can be produced, the :attr:`~.needs_input` attribute will 205 *max_length* was negative), the :attr:`~.needs_input` attribute 229 .. attribute:: needs_input
|
D | lzma.rst | 250 output can be produced, the :attr:`~.needs_input` attribute will 257 *max_length* was negative), the :attr:`~.needs_input` attribute 283 .. attribute:: needs_input
|
/third_party/python/Lib/test/ |
D | test_bz2.py | 750 self.assertFalse(bzd.needs_input) 755 self.assertFalse(bzd.needs_input)
|
D | test_lzma.py | 169 self.assertFalse(lzd.needs_input) 174 self.assertFalse(lzd.needs_input) 1223 self.assertFalse(d2.needs_input) # ensure needs_input mechanism works
|