Searched refs:expand_tabs (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | tabbedpages.py | 24 expand_tabs=False, **kw): argument 49 self.expand_tabs = expand_tabs 108 def _add_tab_row(self, tab_names, expand_tabs): argument 119 if expand_tabs: 160 expand_tabs = self.expand_tabs or n_rows > 1 167 self._add_tab_row(tab_names, expand_tabs) 356 n_rows=1, max_tabs_per_row=5, expand_tabs=False, argument 407 expand_tabs=expand_tabs) 477 expand_tabs=False,
|
/external/python/cpython2/Lib/ |
D | textwrap.py | 119 expand_tabs=True, argument 128 self.expand_tabs = expand_tabs 153 if self.expand_tabs:
|
D | difflib.py | 1743 def expand_tabs(line): function 1752 fromlines = [expand_tabs(line) for line in fromlines] 1753 tolines = [expand_tabs(line) for line in tolines]
|
/external/python/cpython3/Lib/ |
D | textwrap.py | 119 expand_tabs=True, argument 132 self.expand_tabs = expand_tabs 153 if self.expand_tabs:
|
D | difflib.py | 1782 def expand_tabs(line): function 1791 fromlines = [expand_tabs(line) for line in fromlines] 1792 tolines = [expand_tabs(line) for line in tolines]
|
/external/python/cpython3/Doc/library/ |
D | textwrap.rst | 63 function, so changing the value of :attr:`.tabsize`, :attr:`.expand_tabs`, 162 .. attribute:: expand_tabs 170 (default: ``8``) If :attr:`expand_tabs` is true, then all tab characters 187 If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true,
|
/external/antlr/runtime/Ruby/lib/antlr3/test/ |
D | core-extensions.rb | 102 def expand_tabs( n=8 ) method
|
/external/python/cpython2/Doc/library/ |
D | textwrap.rst | 110 .. attribute:: expand_tabs 126 If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true,
|
/external/python/jinja/src/jinja2/ |
D | filters.py | 731 expand_tabs=False,
|
/external/libchrome/third_party/jinja2/ |
D | filters.py | 631 return wrapstring.join(textwrap.wrap(s, width=width, expand_tabs=False,
|
/external/libchrome/base/android/jni_generator/ |
D | jni_generator.py | 52 textwrap.TextWrapper(width=_WRAP_LINE_LENGTH, expand_tabs=False,
|
/external/python/cpython3/Lib/idlelib/ |
D | pyshell.py | 1280 wrapper = TextWrapper(width=width, tabsize=8, expand_tabs=True)
|