Home
last modified time | relevance | path

Searched refs:expand_tabs (Results 1 – 12 of 12) 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.py1783 def expand_tabs(line): function
1792 fromlines = [expand_tabs(line) for line in fromlines]
1793 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`,
159 .. attribute:: expand_tabs
167 (default: ``8``) If :attr:`expand_tabs` is true, then all tab characters
184 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.pl1156 sub expand_tabs { subroutine
1186 $line = expand_tabs($line);
2217 return length(expand_tabs(substr($line, 0, $last_openparen))) + 1;
2992 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3014 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3019 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) {
3170 $oldindent = expand_tabs($1);
3173 $oldindent = expand_tabs($1);
3177 $newindent = expand_tabs($newindent);
/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.py1282 wrapper = TextWrapper(width=width, tabsize=8, expand_tabs=True)