Searched refs:TABSIZE (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Tools/scripts/ |
D | pindent.py | 81 TABSIZE = 8 variable 101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 332 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 349 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 357 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 365 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 390 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 404 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | pindent.py | 83 TABSIZE = 8 variable 103 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 334 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 340 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 346 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 351 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 359 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 367 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 392 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): 406 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): [all …]
|
/external/python/cpython3/Parser/ |
D | asdl_c.py | 12 TABSIZE = 4 variable 36 size = MAX_COL - depth * TABSIZE 69 return '"%s"' % s.replace('\n', '\\n"\n%s"' % (' ' * depth * TABSIZE)) 125 line = (" " * TABSIZE * depth) + line
|
D | tokenizer.c | 37 #define TABSIZE 8 macro 64 tok->tabsize = TABSIZE; in tok_new()
|
/external/python/cpython2/Parser/ |
D | asdl_c.py | 11 TABSIZE = 8 variable 38 size = MAX_COL - depth * TABSIZE 96 line = (" " * TABSIZE * depth) + line + "\n"
|
D | tokenizer.c | 28 #define TABSIZE 8 macro 108 tok->tabsize = TABSIZE; in tok_new()
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-cov.rst | 266 .. option:: -tab-size=<TABSIZE> 268 Replace tabs with <TABSIZE> spaces when preparing reports. Currently, this is
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 3315 return PyLong_FromLong(TABSIZE); in _curses_get_tabsize_impl()
|