Home | History | Annotate | Download | only in vulkan-validation-layers

Lines Matching refs:strip

144         base_type = p.ty.replace('const ', '').strip('*')
253 return ("%s", "string_%s(%s)" % (vk_type.replace('const ', '').strip('*'), name))
260 if vk_type.strip('*') in vulkan.object_non_dispatch_list:
770 disp_obj = proto.params[0].ty.strip('*').replace('const ', '')
775 base_type = p.ty.strip('*').replace('const ', '')
1101 array = array.strip(']')
1220 base_type = p.ty.replace('const ', '').strip('*')
1287 typ = proto.params[-1].ty.strip('*').replace('const ', '');
1296 typ = proto.params[-1].ty.strip('*').replace('const ', '');
1306 typ = proto.params[-2].ty.strip('*').replace('const ', '');
1434 array = array.strip(']')
1451 pre_code += '%slocal_%s = new safe_%s[%s];\n' % (indent, name, param_type[name].strip('*'), array)
1461 pre_code += '%slocal_%s = new safe_%s(%s);\n' % (indent, name, param_type[name].strip('*'), name)
1577 if local_decls[ld].strip('*') not in vulkan.object_non_dispatch_list:
1582 base_type = proto.params[-1].ty.replace('const ', '').strip('*')
1597 obj_type = proto.params[-1].ty.strip('*')