Lines Matching refs:filehandle
672 def dumpReg(self, maxlen=120, filehandle=sys.stdout): argument
677 write('***************************************', file=filehandle)
678 write(' ** Dumping Registry contents **', file=filehandle)
679 write('***************************************', file=filehandle)
680 write('// Types', file=filehandle)
683 write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
684 write('// Groups', file=filehandle)
687 write(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle)
688 write('// Enums', file=filehandle)
691 write(' Enum', name, '->', etree.tostring(eobj.elem)[0:maxlen], file=filehandle)
692 write('// Commands', file=filehandle)
695 write(' Command', name, '->', etree.tostring(cobj.elem)[0:maxlen], file=filehandle)
696 write('// APIs', file=filehandle)
699 etree.tostring(self.apidict[key].elem)[0:maxlen], file=filehandle)
700 write('// Extensions', file=filehandle)
703 etree.tostring(self.extdict[key].elem)[0:maxlen], file=filehandle)
704 write('// SPIR-V', file=filehandle)
707 etree.tostring(self.spirvextdict[key].elem)[0:maxlen], file=filehandle)
710 etree.tostring(self.spirvcapdict[key].elem)[0:maxlen], file=filehandle)
711 write('// VkFormat', file=filehandle)
714 etree.tostring(self.formatsdict[key].elem)[0:maxlen], file=filehandle)