Home
last modified time | relevance | path

Searched refs:expand_tabs (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/idlelib/
Dtabbedpages.py24 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/
Dtextwrap.py119 expand_tabs=True, argument
128 self.expand_tabs = expand_tabs
153 if self.expand_tabs:
Ddifflib.py1743 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/
Dtextwrap.py119 expand_tabs=True, argument
132 self.expand_tabs = expand_tabs
153 if self.expand_tabs:
Ddifflib.py1772 def expand_tabs(line): function
1781 fromlines = [expand_tabs(line) for line in fromlines]
1782 tolines = [expand_tabs(line) for line in tolines]
/external/python/cpython3/Doc/library/
Dtextwrap.rst63 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/
Dcore-extensions.rb102 def expand_tabs( n=8 ) method
/external/python/cpython2/Doc/library/
Dtextwrap.rst110 .. attribute:: expand_tabs
126 If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true,
/external/u-boot/scripts/
Dcheckpatch.pl1209 sub expand_tabs { subroutine
1239 $line = expand_tabs($line);
2270 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
3143 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3165 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3170 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3327 $oldindent = expand_tabs($1);
3330 $oldindent = expand_tabs($1);
3334 $newindent = expand_tabs($newindent);
/external/python/pybind11/tools/
Dmkdoc.py162 wrapper.expand_tabs = True
/external/libchrome/third_party/jinja2/
Dfilters.py631 return wrapstring.join(textwrap.wrap(s, width=width, expand_tabs=False,
/external/libchrome/base/android/jni_generator/
Djni_generator.py52 textwrap.TextWrapper(width=_WRAP_LINE_LENGTH, expand_tabs=False,
/external/python/cpython3/Lib/idlelib/
Dpyshell.py1281 wrapper = TextWrapper(width=width, tabsize=8, expand_tabs=True)