/external/lisa/tools/analysis/ |
D | runtime.py | 136 print "PID".ljust(10) + "\t" + "name".ljust(15) + "\t" + "max run (secs)".ljust(15) + \ 137 …"\t" + "start time".ljust(15) + "\t" + "end time".ljust(15) + "\t" + "total runtime".ljust(15) + "… 150 print str(r[0]).ljust(10) + "\t" + str(rd.comm).ljust(15) + "\t" + \ 151 str(rd.maxrun).ljust(15)[:15] + "\t" + str(start).ljust(15)[:15] + \ 152 "\t" + str(end).ljust(15)[:15] + "\t" + str(rd.total_time).ljust(15) + \ 160 print "time".ljust(20) + "\t" + "event".ljust(10) + "\tpid" + "\tprevpid" + "\tnextpid" 174 …print str(e.time).ljust(20)[:20] + "\t" + e.event.ljust(10) + "\t" + str(pid) + "\t" + str(prevpid…
|
D | runnable.py | 171 print "PID".ljust(10) + "\t" + "name".ljust(20) + "\t" + "latency (secs)".ljust(20) + \ 172 "\t" + "start time".ljust(20) + "\t" + "end time".ljust(20) + "\t" + "total (secs)".ljust(20) 181 print str(r[0]).ljust(10) + "\t" + str(l.wake_data.data['comm']).ljust(20) + "\t" + \ 182 str(l.latency).ljust(20)[:20] + "\t" + str(wake_time).ljust(20)[:20] + \ 183 "\t" + str(switch_time).ljust(20)[:20] + "\t" + str(total).ljust(20)[:20] 189 print "time".ljust(20) + "\t" + "event".ljust(10) + "\tpid" + "\tprevpid" + "\tnextpid" 203 …print str(e.time).ljust(20)[:20] + "\t" + e.event.ljust(10) + "\t" + str(pid) + "\t" + str(prevpid…
|
/external/python/cpython2/Doc/includes/sqlite3/ |
D | simple_tableprinter.py | 14 print fieldDesc[0].ljust(FIELD_MAX_WIDTH) , 24 print fieldValue.ljust(FIELD_MAX_WIDTH) ,
|
/external/webrtc/tools/network_emulator/ |
D | config.py | 33 left_aligned_name = self.name.ljust(24, ' ')
|
/external/python/cpython2/Lib/test/ |
D | test_locale.py | 180 out=('-4%s200' % self.sep).ljust(10)) 191 out=('-4%s200' % self.sep).ljust(10)) 202 self._test_format("%-10.f", 4200, grouping=0, out='4200'.ljust(10)) 328 self._test_format("%-10d", 4200, grouping=True, out='4 200'.ljust(10))
|
D | test_bigmem.py | 256 s = SUBSTR.ljust(size) 275 s = SUBSTR.ljust(size) 328 s = SUBSTR.ljust(size) 336 s = SUBSTR.ljust(size) 406 s = SUBSTR.ljust(size)
|
/external/python/cpython2/Lib/ |
D | dis.py | 85 print opname[op].ljust(20), 123 print opname[op].ljust(15),
|
D | string.py | 425 def ljust(s, width, *args): function 433 return s.ljust(width, *args)
|
D | UserString.py | 101 def ljust(self, width, *args): member in UserString 102 return self.__class__(self.data.ljust(width, *args))
|
D | stringold.py | 265 def ljust(s, width): function
|
D | pstats.py | 392 print >> self.stream, "Function ".ljust(name_size) + column_title 404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
|
D | cmd.py | 403 texts[col] = texts[col].ljust(colwidths[col])
|
D | uuid.py | 431 ncb.Callname = '*'.ljust(16)
|
/external/python/cpython2/Tools/scripts/ |
D | byteyears.py | 55 print filename.ljust(maxlen),
|
D | pdeps.py | 154 print mod.ljust(maxlen), ':',
|
/external/autotest/site_utils/ |
D | generate_test_report | 497 print ''.ljust(width + len(self._STATUS_STRINGS['hr']['pass']), '-') 562 key_entry = dict_key.ljust(width - self._KEYVAL_INDENT) 609 test_entry = testdir if self._options.csv else testdir.ljust(width)
|
D | test_push.py | 432 print "%s%s" % (test_name.ljust(30), test_status)
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | ss1.py | 12 def ljust(x, n): function 13 return x.ljust(n) 18 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
|
/external/swiftshader/third_party/LLVM/test/Scripts/ |
D | coff-dump.py | 463 write("%s = " % name.ljust(24))
|
/external/vulkan-validation-layers/ |
D | generator.py | 397 paramdecl = paramdecl.ljust(aligncol-1) + ' '
|
D | parameter_validation_generator.py | 597 reportData = ' debug_report_data*'.ljust(self.genOpts.alignFuncParam) + 'report_data,'
|
/external/webrtc/third_party/gtest-parallel/ |
D | gtest-parallel | 105 self.__out_file.write("\r" + msg[:self.__width].ljust(self.__width))
|
/external/v8/tools/clang/blink_gc_plugin/ |
D | process-graph.py | 310 print >>out, (p.loc + ':').ljust(max_loc + 1), p
|
/external/python/cpython2/Tools/iobench/ |
D | iobench.py | 270 ).ljust(52))
|
/external/python/cpython2/Doc/tutorial/ |
D | inputoutput.rst | 108 it with spaces on the left. There are similar methods :meth:`str.ljust` and 114 ``x.ljust(n)[:n]``.)
|