/third_party/vulkan-loader/cmake/ |
D | FindXCB.cmake | 17 string(TOUPPER ${comp} compname) 18 string(REPLACE "-" "_" compname ${compname}) 26 find_path(${compname}_INCLUDE_DIR NAMES ${headername} 32 find_library(${compname}_LIBRARY NAMES ${libname} 41 REQUIRED_VARS ${compname}_INCLUDE_DIR ${compname}_LIBRARY) 44 mark_as_advanced(${compname}_INCLUDE_DIR ${compname}_LIBRARY) 46 list(APPEND XCB_INCLUDE_DIRS ${${compname}_INCLUDE_DIR}) 47 list(APPEND XCB_LIBRARIES ${${compname}_LIBRARY})
|
/third_party/python/Lib/test/ |
D | test_sunau.py | 23 compname = 'not compressed' variable in SunauPCM8Test 40 compname = 'not compressed' variable in SunauPCM16Test 59 compname = 'not compressed' variable in SunauPCM24Test 84 compname = 'not compressed' variable in SunauPCM32Test 109 compname = 'CCITT G.711 u-law' variable in SunauULAWTest
|
D | audiotests.py | 30 comptype, compname): argument 36 self.assertEqual(f.getcompname(), compname) 40 (nchannels, sampwidth, framerate, nframes, comptype, compname)) 46 self.assertEqual(params.compname, compname) 60 f.setcomptype(self.comptype, self.compname) 76 self.nframes, self.comptype, self.compname) 96 f.setcomptype(self.comptype, self.compname) 116 f.setcomptype(self.comptype, self.compname) 260 self.sndfilenframes, self.comptype, self.compname)
|
D | test_wave.py | 24 compname = 'not compressed' variable in WavePCM8Test 41 compname = 'not compressed' variable in WavePCM16Test 62 compname = 'not compressed' variable in WavePCM24Test 89 compname = 'not compressed' variable in WavePCM32Test
|
D | test_aifc.py | 28 compname = b'not compressed' variable in AifcPCM8Test 45 compname = b'not compressed' variable in AifcPCM16Test 64 compname = b'not compressed' variable in AifcPCM24Test 89 compname = b'not compressed' variable in AifcPCM32Test 114 compname = b'' variable in AifcULAWTest 135 compname = b'' variable in AifcALAWTest 184 self.assertEqual(params.compname, f.getcompname())
|
/third_party/python/Lib/ |
D | wave.py | 381 def setcomptype(self, comptype, compname): argument 387 self._compname = compname 396 nchannels, sampwidth, framerate, nframes, comptype, compname = params 403 self.setcomptype(comptype, compname)
|
D | aifc.py | 265 _aifc_params.compname.__doc__ = ("""\ 658 def setcomptype(self, comptype, compname): argument 665 self._compname = compname 679 nchannels, sampwidth, framerate, nframes, comptype, compname = params 689 self.setcomptype(comptype, compname)
|
D | sunau.py | 404 nchannels, sampwidth, framerate, nframes, comptype, compname = params 409 self.setcomptype(comptype, compname)
|
/third_party/python/Doc/library/ |
D | sunau.rst | 150 framerate, nframes, comptype, compname)``, equivalent to output of the 235 compname)``, with values valid for the :meth:`set\*` methods. Set all
|
D | wave.rst | 104 framerate, nframes, comptype, compname)``, equivalent to output of the 210 compname)``, with values valid for the :meth:`set\*` methods. Sets all
|
D | aifc.rst | 94 framerate, nframes, comptype, compname)``, equivalent to output of the 197 .. method:: aifc.setparams(nchannels, sampwidth, framerate, comptype, compname)
|