Home | History | Annotate | Download | only in scripts

Lines Matching refs:expandtabs

82 EXPANDTABS = 0

99 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
105 self.expandtabs = expandtabs
119 if self.expandtabs:
120 self._write(line.expandtabs(self.tabsize))
272 indent = len(line[:i].expandtabs(self.tabsize))
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
339 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
345 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
350 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
351 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
399 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
402 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
407 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
410 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
415 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
418 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
423 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
425 result = complete_string(source, stepsize, tabsize, expandtabs)
438 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
440 result = delete_string(source, stepsize, tabsize, expandtabs)
453 def reformat_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
455 result = reformat_string(source, stepsize, tabsize, expandtabs)
501 expandtabs = EXPANDTABS
520 expandtabs = 1
531 action(sys.stdin, sys.stdout, stepsize, tabsize, expandtabs)
535 action(filename, stepsize, tabsize, expandtabs)