Lines Matching refs:tabsize

103                  indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):  argument
107 self.tabsize = tabsize
124 self._write(line.expandtabs(self.tabsize))
156 tabs, spaces = divmod(indent*self.indentsize, 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): 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)
466 tabsize = TABSIZE
484 tabsize = int(a)
497 action(sys.stdin, sys.stdout, stepsize, tabsize, expandtabs)
501 action(filename, stepsize, tabsize, expandtabs)