Home | History | Annotate | Download | only in scripts

Lines Matching refs:EXPANDTABS

84 EXPANDTABS = False
103 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
109 self.expandtabs = expandtabs
123 if self.expandtabs:
124 self._write(line.expandtabs(self.tabsize))
268 indent = len(indentws.expandtabs(self.tabsize))
269 current = len(currentws.expandtabs(self.tabsize))
282 current = len(currentws.expandtabs(self.tabsize))
334 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
335 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
340 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
341 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
346 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
347 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
351 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
354 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
359 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
362 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
367 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
370 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
392 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
396 result = complete_string(source, stepsize, tabsize, expandtabs)
406 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
410 result = delete_string(source, stepsize, tabsize, expandtabs)
420 def reformat_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
424 result = reformat_string(source, stepsize, tabsize, expandtabs)
467 expandtabs = EXPANDTABS
486 expandtabs = True
497 action(sys.stdin, sys.stdout, stepsize, tabsize, expandtabs)
501 action(filename, stepsize, tabsize, expandtabs)