/external/chromium_org/build/android/pylib/utils/ |
run_tests_helper.py | 30 return '%s %ss %s' % (record.levelname[0], timediff.rjust(4), msg)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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))
|
buffer_tests.py | 119 self.assertEqual(b' abc', self.marshal(b'abc').rjust(10)) 120 self.assertEqual(b' abc', self.marshal(b'abc').rjust(6)) 121 self.assertEqual(b'abc', self.marshal(b'abc').rjust(3)) 122 self.assertEqual(b'abc', self.marshal(b'abc').rjust(2)) 123 self.assertEqual(b'*******abc', self.marshal(b'abc').rjust(10, '*')) 124 self.assertRaises(TypeError, self.marshal(b'abc').rjust)
|
test_bigmem.py | 279 s = SUBSTR.rjust(size) 348 s = SUBSTR.rjust(size) 410 s = SUBSTR.rjust(size) [all...] |
test_descr.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
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))
|
buffer_tests.py | 119 self.assertEqual(b' abc', self.marshal(b'abc').rjust(10)) 120 self.assertEqual(b' abc', self.marshal(b'abc').rjust(6)) 121 self.assertEqual(b'abc', self.marshal(b'abc').rjust(3)) 122 self.assertEqual(b'abc', self.marshal(b'abc').rjust(2)) 123 self.assertEqual(b'*******abc', self.marshal(b'abc').rjust(10, '*')) 124 self.assertRaises(TypeError, self.marshal(b'abc').rjust)
|
test_bigmem.py | 279 s = SUBSTR.rjust(size) 348 s = SUBSTR.rjust(size) 410 s = SUBSTR.rjust(size) [all...] |
test_descr.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
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),
|
UserString.py | 113 def rjust(self, width, *args): member in class:UserString 114 return self.__class__(self.data.rjust(width, *args))
|
string.py | 434 def rjust(s, width, *args): function 435 """rjust(s, width[, fillchar]) -> string 442 return s.rjust(width, *args)
|
stringold.py | 278 def rjust(s, width): function 279 """rjust(s, width) -> string
|
pstats.py | 420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)), 438 print >> self.stream, c.rjust(9),
|
pdb.py | 816 s = repr(lineno).rjust(3) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
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),
|
UserString.py | 113 def rjust(self, width, *args): member in class:UserString 114 return self.__class__(self.data.rjust(width, *args))
|
string.py | 434 def rjust(s, width, *args): function 435 """rjust(s, width[, fillchar]) -> string 442 return s.rjust(width, *args)
|
stringold.py | 278 def rjust(s, width): function 279 """rjust(s, width) -> string
|
pstats.py | 420 substats = '%s %s %s %s' % (substats.rjust(7+2*len(indent)), 438 print >> self.stream, c.rjust(9),
|
pdb.py | 816 s = repr(lineno).rjust(3) [all...] |
/external/chromium_org/build/android/ |
surface_stats.py | 70 print value.rjust(len(name)) + ' ',
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
tcmalloc_heap_profiler.py | 62 pid_file.write(str(self._browser_backend.pid).rjust(5, '0'))
|
/external/chromium_org/tools/idl_parser/ |
idl_node.py | 148 tab = ''.rjust(self.depth * 2)
|
/external/chromium_org/ppapi/generators/ |
idl_node.py | 129 tab = ''.rjust(depth * 2)
|