Lines Matching refs:filehandle
759 def dumpReg(self, maxlen=120, filehandle=sys.stdout): argument
764 write('***************************************', file=filehandle)
765 write(' ** Dumping Registry contents **', file=filehandle)
766 write('***************************************', file=filehandle)
767 write('// Types', file=filehandle)
770 write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
771 write('// Groups', file=filehandle)
774 write(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle)
775 write('// Enums', file=filehandle)
778 write(' Enum', name, '->', etree.tostring(eobj.elem)[0:maxlen], file=filehandle)
779 write('// Commands', file=filehandle)
782 write(' Command', name, '->', etree.tostring(cobj.elem)[0:maxlen], file=filehandle)
783 write('// APIs', file=filehandle)
786 etree.tostring(self.apidict[key].elem)[0:maxlen], file=filehandle)
787 write('// Extensions', file=filehandle)
790 etree.tostring(self.extdict[key].elem)[0:maxlen], file=filehandle)
791 write('// SPIR-V', file=filehandle)
794 etree.tostring(self.spirvextdict[key].elem)[0:maxlen], file=filehandle)
797 etree.tostring(self.spirvcapdict[key].elem)[0:maxlen], file=filehandle)
798 write('// VkFormat', file=filehandle)
801 etree.tostring(self.formatsdict[key].elem)[0:maxlen], file=filehandle)