Searched refs:expand_tabs (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/ |
D | textwrap.py | 119 expand_tabs=True, argument 132 self.expand_tabs = expand_tabs 153 if self.expand_tabs:
|
D | difflib.py | 1742 def expand_tabs(line): function 1751 fromlines = [expand_tabs(line) for line in fromlines] 1752 tolines = [expand_tabs(line) for line in tolines]
|
/third_party/python/Doc/library/ |
D | textwrap.rst | 21 subsequent_indent="", expand_tabs=True, \ 38 subsequent_indent="", expand_tabs=True, \ 74 function, so changing the value of :attr:`.tabsize`, :attr:`.expand_tabs`, 172 .. attribute:: expand_tabs 180 (default: ``8``) If :attr:`expand_tabs` is true, then all tab characters 197 If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true,
|
/third_party/ltp/scripts/ |
D | checkpatch.pl | 1457 sub expand_tabs { subroutine 1487 $line = expand_tabs($line); 2535 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1; 3676 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3698 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3703 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3886 $oldindent = expand_tabs($1); 3889 $oldindent = expand_tabs($1); 3893 $newindent = expand_tabs($newindent);
|
/third_party/skia/third_party/externals/jinja2/ |
D | filters.py | 751 expand_tabs=False,
|
/third_party/jinja2/ |
D | filters.py | 751 expand_tabs=False,
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | filters.py | 631 return wrapstring.join(textwrap.wrap(s, width=width, expand_tabs=False,
|
/third_party/python/Lib/idlelib/ |
D | pyshell.py | 1412 wrapper = TextWrapper(width=width, tabsize=8, expand_tabs=True)
|