Home | History | Annotate | Download | only in scripts

Lines Matching refs:cmdname

844     def genCmd(self, cmdinfo, cmdname, alias):
847 OutputGenerator.genCmd(self, cmdinfo, cmdname, alias)
858 is_create_command = any(filter(lambda pat: pat in cmdname, ('Create', 'Allocate', 'Enumerate', 'RegisterDeviceEvent', 'RegisterDisplayEvent')))
860 iscreate = is_create_command or ('vkGet' in cmdname and last_member_is_pointer)
861 isdestroy = any([destroy_txt in cmdname for destroy_txt in ['Destroy', 'Free']])
900 self.cmd_list.append(cmdname)
901 self.cmd_info_dict[cmdname] =self.CmdInfoData(name=cmdname, cmdinfo=cmdinfo, members=membersInfo, iscreate=iscreate, isdestroy=isdestroy, allocator=allocator, extra_protect=self.featureExtraProtect, alias=alias)
905 for cmdname in self.cmd_list:
906 cmddata = self.cmd_info_dict[cmdname]
908 if cmdname in self.interface_functions:
911 if cmdname in self.no_autogen_list:
924 self.prototypes += [ ' {"%s", (void*)%s},' % (cmdname,cmdname[2:]) ]
985 if 'CreateGraphicsPipelines' not in cmdname and 'CreateComputePipelines' not in cmdname and 'CreateRayTracingPipelines' not in cmdname: