HomeSort by relevance Sort by last modified time
    Searched refs:tabwidth (Results 1 - 25 of 33) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 46 // tabwidth must be specified. Column cells must be tab-terminated, not
96 tabwidth int
177 // tabwidth width of tab characters (equivalent number of spaces)
181 // width of a '\t' in the formatted output is tabwidth,
183 // (for correct-looking results, tabwidth must correspond
187 func (b *Writer) Init(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
188 if minwidth < 0 || tabwidth < 0 || padding < 0 {
189 panic("negative minwidth, tabwidth, or padding")
193 b.tabwidth = tabwidth
    [all...]
tabwriter_test.go 59 func check(t *testing.T, testname string, minwidth, tabwidth, padding int, padchar byte, flags uint, src, expected string) {
64 w.Init(&b, minwidth, tabwidth, padding, padchar, flags)
95 minwidth, tabwidth, padding int
613 check(t, e.testname, e.minwidth, e.tabwidth, e.padding, e.padchar, e.flags, e.src, e.expected)
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 46 // tabwidth must be specified. Column cells must be tab-terminated, not
96 tabwidth int
177 // tabwidth width of tab characters (equivalent number of spaces)
181 // width of a '\t' in the formatted output is tabwidth,
183 // (for correct-looking results, tabwidth must correspond
187 func (b *Writer) Init(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
188 if minwidth < 0 || tabwidth < 0 || padding < 0 {
189 panic("negative minwidth, tabwidth, or padding")
193 b.tabwidth = tabwidth
    [all...]
tabwriter_test.go 59 func check(t *testing.T, testname string, minwidth, tabwidth, padding int, padchar byte, flags uint, src, expected string) {
64 w.Init(&b, minwidth, tabwidth, padding, padchar, flags)
95 minwidth, tabwidth, padding int
613 check(t, e.testname, e.minwidth, e.tabwidth, e.padding, e.padchar, e.flags, e.src, e.expected)
  /external/python/cpython2/Lib/idlelib/
EditorWindow.py 269 # indentwidth is not a multiple of tabwidth,
279 # tabwidth is the display width of a literal tab character.
283 # Nobody expects this, so for now tabwidth should never be changed.
284 self.tabwidth = 8 # must remain 8 until Tk is fixed.
288 self.indentwidth = self.tabwidth
    [all...]
PyParse.py 114 def __init__(self, indentwidth, tabwidth):
116 self.tabwidth = tabwidth
491 return len(str[i:j].expandtabs(self.tabwidth)) + extra
554 self.tabwidth)) + 1
HyperParser.py 20 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
  /external/python/cpython3/Lib/idlelib/
editor.py 199 # indentwidth is not a multiple of tabwidth,
210 # tabwidth is the display width of a literal tab character.
214 # Nobody expects this, so for now tabwidth should never be changed.
215 self.tabwidth = 8 # must remain 8 until Tk is fixed.
219 self.indentwidth = self.tabwidth
    [all...]
pyparse.py 140 def __init__(self, indentwidth, tabwidth):
142 self.tabwidth = tabwidth
514 return len(str[i:j].expandtabs(self.tabwidth)) + extra
577 self.tabwidth)) + 1
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
EditorWindow.py 267 # indentwidth is not a multiple of tabwidth,
277 # tabwidth is the display width of a literal tab character.
281 # Nobody expects this, so for now tabwidth should never be changed.
282 self.tabwidth = 8 # must remain 8 until Tk is fixed.
286 self.indentwidth = self.tabwidth
    [all...]
PyParse.py 114 def __init__(self, indentwidth, tabwidth):
116 self.tabwidth = tabwidth
491 return len(str[i:j].expandtabs(self.tabwidth)) + extra
554 self.tabwidth)) + 1
HyperParser.py 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
EditorWindow.py 267 # indentwidth is not a multiple of tabwidth,
277 # tabwidth is the display width of a literal tab character.
281 # Nobody expects this, so for now tabwidth should never be changed.
282 self.tabwidth = 8 # must remain 8 until Tk is fixed.
286 self.indentwidth = self.tabwidth
    [all...]
PyParse.py 114 def __init__(self, indentwidth, tabwidth):
116 self.tabwidth = tabwidth
491 return len(str[i:j].expandtabs(self.tabwidth)) + extra
554 self.tabwidth)) + 1
HyperParser.py 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 267 # indentwidth is not a multiple of tabwidth,
277 # tabwidth is the display width of a literal tab character.
281 # Nobody expects this, so for now tabwidth should never be changed.
282 self.tabwidth = 8 # must remain 8 until Tk is fixed.
286 self.indentwidth = self.tabwidth
    [all...]
PyParse.py 114 def __init__(self, indentwidth, tabwidth):
116 self.tabwidth = tabwidth
491 return len(str[i:j].expandtabs(self.tabwidth)) + extra
554 self.tabwidth)) + 1
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 267 # indentwidth is not a multiple of tabwidth,
277 # tabwidth is the display width of a literal tab character.
281 # Nobody expects this, so for now tabwidth should never be changed.
282 self.tabwidth = 8 # must remain 8 until Tk is fixed.
286 self.indentwidth = self.tabwidth
    [all...]
PyParse.py 114 def __init__(self, indentwidth, tabwidth):
116 self.tabwidth = tabwidth
491 return len(str[i:j].expandtabs(self.tabwidth)) + extra
554 self.tabwidth)) + 1
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
Report.java 57 int tabwidth = 4; field in class:Report
167 tabwidth);
169 multi.add(new DirectorySourceFileLocator(f, encoding, tabwidth));
  /external/python/cpython2/Lib/idlelib/idle_test/
test_autocomplete.py 19 self.tabwidth = 8
test_parenmatch.py 27 self.tabwidth = 8
test_hyperparser.py 12 self.tabwidth = 8
  /external/python/cpython3/Lib/idlelib/idle_test/
test_autocomplete.py 23 self.tabwidth = 8
test_parenmatch.py 18 self.tabwidth = 8

Completed in 188 milliseconds

1 2