Lines Matching refs:stepsize
334 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
335 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
340 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
341 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
346 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
347 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
351 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
354 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
359 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
362 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
367 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
370 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
392 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
396 result = complete_string(source, stepsize, tabsize, expandtabs)
406 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
410 result = delete_string(source, stepsize, tabsize, expandtabs)
420 def reformat_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
424 result = reformat_string(source, stepsize, tabsize, expandtabs)
465 stepsize = STEPSIZE
482 stepsize = int(a)
497 action(sys.stdin, sys.stdout, stepsize, tabsize, expandtabs)
501 action(filename, stepsize, tabsize, expandtabs)