Home
last modified time | relevance | path

Searched refs:expand_tabs (Results 1 – 14 of 14) 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.py1742 def expand_tabs(line): function
1751 fromlines = [expand_tabs(line) for line in fromlines]
1752 tolines = [expand_tabs(line) for line in tolines]
/external/python/cpython3/Doc/library/
Dtextwrap.rst21 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,
/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/ltp/scripts/
Dcheckpatch.pl1457 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);
/external/libchrome/third_party/jinja2/
Dfilters.py631 return wrapstring.join(textwrap.wrap(s, width=width, expand_tabs=False,
/external/python/jinja/src/jinja2/
Dfilters.py731 expand_tabs=False,
/external/libchrome/base/android/jni_generator/
Djni_generator.py45 textwrap.TextWrapper(width=_WRAP_LINE_LENGTH, expand_tabs=False,
/external/cronet/base/android/jni_generator/
Djni_generator.py72 expand_tabs=False,
/external/python/cpython3/Lib/idlelib/
Dpyshell.py1412 wrapper = TextWrapper(width=width, tabsize=8, expand_tabs=True)