Lines Matching refs:filehandle
832 def dumpReg(self, maxlen=120, filehandle=sys.stdout): argument
837 write('***************************************', file=filehandle)
838 write(' ** Dumping Registry contents **', file=filehandle)
839 write('***************************************', file=filehandle)
840 write('// Types', file=filehandle)
843 write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
844 write('// Groups', file=filehandle)
847 write(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle)
848 write('// Enums', file=filehandle)
851 write(' Enum', name, '->', etree.tostring(eobj.elem)[0:maxlen], file=filehandle)
852 write('// Commands', file=filehandle)
855 write(' Command', name, '->', etree.tostring(cobj.elem)[0:maxlen], file=filehandle)
856 write('// APIs', file=filehandle)
859 etree.tostring(self.apidict[key].elem)[0:maxlen], file=filehandle)
860 write('// Extensions', file=filehandle)
863 etree.tostring(self.extdict[key].elem)[0:maxlen], file=filehandle)
864 write('// SPIR-V', file=filehandle)
867 etree.tostring(self.spirvextdict[key].elem)[0:maxlen], file=filehandle)
870 etree.tostring(self.spirvcapdict[key].elem)[0:maxlen], file=filehandle)
871 write('// VkFormat', file=filehandle)
874 etree.tostring(self.formatsdict[key].elem)[0:maxlen], file=filehandle)