/external/harfbuzz_ng/src/ |
D | gen-os2-unicode-ranges.py | 48 start = ("0x%X" % ranges[0]).rjust(8) 49 end = ("0x%X" % ranges[1]).rjust(8) 50 bit = ("%s" % ranges[2]).rjust(3)
|
/external/python/cpython2/Lib/test/ |
D | test_locale.py | 175 self._test_format("%20.f", -42, grouping=1, out='-42'.rjust(20)) 178 out=('-4%s200' % self.sep).rjust(10)) 189 out=('4%s200' % self.sep).rjust(10)) 200 self._test_format("%20.f", -42, grouping=0, out='-42'.rjust(20)) 201 self._test_format("%+10.f", -4200, grouping=0, out='-4200'.rjust(10)) 215 out='--> ' + ('4%s200.00' % self.sep).rjust(10)) 218 out='1000.00'.rjust(10)) 221 out=('1%s000.00' % self.sep).rjust(10)) 325 self._test_format("%10d", 4200, grouping=True, out='4 200'.rjust(10))
|
D | test_unicode.py | 1781 check_format(u'123'.rjust(10, u'0'), 1783 check_format(u'123'.rjust(100), 1785 check_format(u'123'.rjust(100, u'0'), 1787 check_format(u'123'.rjust(80, u'0').rjust(100), 1790 check_format(u'123'.rjust(10, u'0'), 1792 check_format(u'123'.rjust(100), 1794 check_format(u'123'.rjust(100, u'0'), 1796 check_format(u'123'.rjust(80, u'0').rjust(100), 1799 check_format(u'123'.rjust(10, u'0'), 1801 check_format(u'123'.rjust(100), [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_locale.py | 173 self._test_format("%20.f", -42, grouping=1, out='-42'.rjust(20)) 176 out=('-4%s200' % self.sep).rjust(10)) 187 out=('4%s200' % self.sep).rjust(10)) 198 self._test_format("%20.f", -42, grouping=0, out='-42'.rjust(20)) 199 self._test_format("%+10.f", -4200, grouping=0, out='-4200'.rjust(10)) 217 out='--> ' + ('4%s200.00' % self.sep).rjust(10)) 220 out='1000.00'.rjust(10)) 223 out=('1%s000.00' % self.sep).rjust(10)) 328 self._test_format("%10d", 4200, grouping=True, out='4 200'.rjust(10))
|
D | test_unicode.py | 931 '\U00100000'.rjust(3, '\U00010000') 2623 check_format('123'.rjust(10, '0'), 2625 check_format('123'.rjust(100), 2627 check_format('123'.rjust(100, '0'), 2629 check_format('123'.rjust(80, '0').rjust(100), 2632 check_format('123'.rjust(10, '0'), 2634 check_format('123'.rjust(100), 2636 check_format('123'.rjust(100, '0'), 2638 check_format('123'.rjust(80, '0').rjust(100), 2641 check_format('123'.rjust(10, '0'), [all …]
|
/external/python/cpython2/Lib/ |
D | dis.py | 84 print repr(i).rjust(4), 93 print repr(oparg).rjust(5), 122 print repr(i).rjust(4), 128 print repr(oparg).rjust(5),
|
D | string.py | 436 def rjust(s, width, *args): function 444 return s.rjust(width, *args)
|
D | UserString.py | 113 def rjust(self, width, *args): member in UserString 114 return self.__class__(self.data.rjust(width, *args))
|
D | stringold.py | 278 def rjust(s, width): function
|
/external/python/rsa/rsa/ |
D | transform.py | 203 raw_bytes = raw_bytes.rjust(fill_size, b'\x00') 208 raw_bytes = raw_bytes.rjust(length + padding_size, b'\x00')
|
/external/python/google-api-python-client/samples/searchforshopping/ |
D | histograms.py | 47 labels.append(bucket['value'].rjust(20))
|
/external/python/cpython3/Tools/scripts/ |
D | byteyears.py | 56 print(repr(int(byteyears)).rjust(8))
|
D | dutree.py | 54 print(prefix + repr(tsub).rjust(width) + ' ' + key)
|
/external/python/cpython2/Tools/scripts/ |
D | byteyears.py | 56 print repr(int(byteyears)).rjust(8)
|
D | dutree.py | 54 print prefix + repr(tsub).rjust(width) + ' ' + key
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_oa.py | 39 text = ''.rjust(_c_indent) + line 45 c_file.write(''.rjust(_c_indent) + code) 64 text = ''.rjust(_h_indent) + line
|
/external/toolchain-utils/binary_search_tool/ |
D | bisect.py | 78 key_str = str(key).rjust(max_key_len) 91 key_str = str(key).rjust(max_key_len)
|
D | binary_search_state.py | 644 seconds = str(seconds).rjust(2) 645 minutes = str(minutes).rjust(2) 646 hours = str(hours).rjust(2)
|
/external/scapy/scapy/ |
D | pton_ntop.py | 60 result += hex_bytes(part.rjust(4, "0"))
|
/external/python/cpython3/Tools/clinic/ |
D | cpp.py | 44 return str(self.line_number).rjust(4) + ": " + self.condition()
|
/external/python/cpython3/Lib/ |
D | dis.py | 239 fields.append(repr(self.offset).rjust(offset_width)) 244 fields.append(repr(self.arg).rjust(_OPARG_WIDTH))
|
/external/python/cpython2/Doc/tutorial/ |
D | inputoutput.rst | 74 ... print repr(x).rjust(2), repr(x*x).rjust(3), 76 ... print repr(x*x*x).rjust(4) 106 This example demonstrates the :meth:`str.rjust` method of string
|
/external/python/cpython3/Doc/tutorial/ |
D | inputoutput.rst | 219 ... print(repr(x).rjust(2), repr(x*x).rjust(3), end=' ') 221 ... print(repr(x*x*x).rjust(4)) 237 The :meth:`str.rjust` method of string objects right-justifies a string in a
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | ss1.py | 16 def rjust(x, n): function 17 return x.rjust(n) 18 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
|
/external/python/cpython3/Tools/demo/ |
D | ss1.py | 19 def rjust(x, n): function 20 return x.rjust(n) 21 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
|