/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | pindent.py | 99 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument 105 self.expandtabs = expandtabs 119 if self.expandtabs: 120 self._write(line.expandtabs(self.tabsize)) 272 indent = len(line[:i].expandtabs(self.tabsize)) 338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument 339 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs) 344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument 345 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs) 350 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument [all …]
|
D | untabify.py | 34 newtext = text.expandtabs(tabsize)
|
D | reindent.py | 165 self.lines = [_rstrip(line).expandtabs() + "\n"
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | buffer_tests.py | 158 self.marshal(b'abc\rab\tdef\ng\thi').expandtabs()) 160 self.marshal(b'abc\rab\tdef\ng\thi').expandtabs(8)) 162 self.marshal(b'abc\rab\tdef\ng\thi').expandtabs(4)) 164 self.marshal(b'abc\r\nab\tdef\ng\thi').expandtabs(4)) 166 self.marshal(b'abc\rab\tdef\ng\thi').expandtabs()) 168 self.marshal(b'abc\rab\tdef\ng\thi').expandtabs(8)) 170 self.marshal(b'abc\r\nab\r\ndef\ng\r\nhi').expandtabs(4)) 171 self.assertEqual(b' a\n b', self.marshal(b' \ta\n\tb').expandtabs(1)) 173 self.assertRaises(TypeError, self.marshal(b'hello').expandtabs, 42, 42) 177 self.marshal(b'\ta\n\tb').expandtabs, sys.maxint)
|
D | test_str.py | 107 self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxint)
|
D | test_bigmem.py | 150 self.assertEqual(s.expandtabs(), s) 154 s = s.expandtabs(tabsize)
|
D | test_unicode.py | 1065 self.assertRaises(OverflowError, u't\tt\t'.expandtabs, sys.maxint)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | inspect.py | 352 expline = string.expandtabs(line) 375 lines = string.split(string.expandtabs(doc), '\n') 605 comments.append(string.expandtabs(lines[end])) 615 comments = [string.lstrip(string.expandtabs(lines[end]))] 618 comment = string.lstrip(string.expandtabs(lines[end])) 623 comment = string.lstrip(string.expandtabs(lines[end]))
|
D | string.py | 473 def expandtabs(s, tabsize=8): function 481 return s.expandtabs(tabsize)
|
D | textwrap.py | 154 text = text.expandtabs()
|
D | formatter.py | 402 data = data.expandtabs()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | inspect.py | 354 expline = string.expandtabs(line) 377 lines = string.split(string.expandtabs(doc), '\n') 603 comments.append(string.expandtabs(lines[end])) 613 comments = [string.lstrip(string.expandtabs(lines[end]))] 616 comment = string.lstrip(string.expandtabs(lines[end])) 621 comment = string.lstrip(string.expandtabs(lines[end]))
|
D | string.py | 471 def expandtabs(s, tabsize=8): function 479 return s.expandtabs(tabsize)
|
D | stringold.py | 328 def expandtabs(s, tabsize=8): function
|
D | UserString.py | 85 def expandtabs(self, tabsize=8): member in UserString 86 return self.__class__(self.data.expandtabs(tabsize))
|
D | textwrap.py | 146 text = text.expandtabs()
|
D | formatter.py | 402 data = data.expandtabs()
|
D | trace.py | 388 outfile.write(lines[i].expandtabs(8))
|
D | difflib.py | 1749 line = line.expandtabs(self._tabsize)
|
D | pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 474 text = self.escape(expandtabs(text))
|
D | doctest.py | 570 string = string.expandtabs()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
D | gencodec.py | 351 return '\n'.join(l).expandtabs()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | fancy_getopt.py | 422 text = string.expandtabs(text)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | pydoc.py | 71 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 520 text = self.escape(expandtabs(text))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 474 text = self.escape(expandtabs(text))
|