Lines Matching refs:arg_names
246 def InternalArgumentString( arg_names, arg_types ):
249 for index in range(0,len(arg_names)):
250 if len(arg_names) != 1 and arg_names[index] == '':
253 if arg_types[index][-1:] != '*' and arg_names[index] != '':
255 output += arg_names[index]
256 if index != len(arg_names) - 1:
260 def ArgumentString( arg_names, arg_types ):
262 output = '( ' + InternalArgumentString(arg_names, arg_types) + ' )'
265 def InternalCallString( arg_names ):
267 for index in range(0,len(arg_names)):
268 output += arg_names[index]
269 if arg_names[index] != '' and index != len(arg_names) - 1:
273 def CallString( arg_names ):
275 output += InternalCallString(arg_names)