/external/python/cpython3/Lib/test/ |
D | test_aifc.py | 191 fout.setcomptype(comptype, b'') 351 self.assertRaises(aifc.Error, fout.setcomptype, b'WRNG', '') 363 self.assertRaises(aifc.Error, fout.setcomptype, b'NONE', '') 374 fout.setcomptype(b'NONE', b'name') 409 fout.setcomptype(comptype, b'')
|
D | audiotests.py | 60 f.setcomptype(self.comptype, self.compname) 96 f.setcomptype(self.comptype, self.compname) 116 f.setcomptype(self.comptype, self.compname)
|
/external/python/cpython2/Lib/test/ |
D | test_aifc.py | 273 self.assertRaises(aifc.Error, fout.setcomptype, 'WRNG', '') 285 self.assertRaises(aifc.Error, fout.setcomptype, 'NONE', '') 296 fout.setcomptype('NONE', 'name') 331 fout.setcomptype(comptype, '')
|
D | audiotests.py | 76 f.setcomptype(self.comptype, self.compname)
|
/external/python/cpython2/Lib/ |
D | sunau.py | 359 def setcomptype(self, type, name): member in Au_write 382 self.setcomptype(comptype, compname)
|
D | wave.py | 379 def setcomptype(self, comptype, compname): member in Wave_write 401 self.setcomptype(comptype, compname)
|
D | aifc.py | 668 def setcomptype(self, comptype, compname): member in Aifc_write 697 self.setcomptype(comptype, compname)
|
/external/python/cpython3/Lib/ |
D | wave.py | 381 def setcomptype(self, comptype, compname): member in Wave_write 403 self.setcomptype(comptype, compname)
|
D | sunau.py | 386 def setcomptype(self, type, name): member in Au_write 409 self.setcomptype(comptype, compname)
|
D | aifc.py | 658 def setcomptype(self, comptype, compname): member in Aifc_write 689 self.setcomptype(comptype, compname)
|
/external/python/cpython2/Doc/library/ |
D | wave.rst | 176 .. method:: Wave_write.setcomptype(type, name)
|
D | sunau.rst | 226 .. method:: AU_write.setcomptype(type, name)
|
D | aifc.rst | 180 .. method:: aifc.setcomptype(type, name)
|
/external/python/cpython3/Doc/library/ |
D | sunau.rst | 226 .. method:: AU_write.setcomptype(type, name)
|
D | wave.rst | 201 .. method:: Wave_write.setcomptype(type, name)
|
D | aifc.rst | 182 .. method:: aifc.setcomptype(type, name)
|