Home
last modified time | relevance | path

Searched refs:ljust (Results 1 – 25 of 37) sorted by relevance

12

/external/lisa/tools/analysis/
Druntime.py136 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…
Drunnable.py171 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/
Dsimple_tableprinter.py14 print fieldDesc[0].ljust(FIELD_MAX_WIDTH) ,
24 print fieldValue.ljust(FIELD_MAX_WIDTH) ,
/external/webrtc/tools/network_emulator/
Dconfig.py33 left_aligned_name = self.name.ljust(24, ' ')
/external/python/cpython2/Lib/test/
Dtest_locale.py180 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))
Dtest_bigmem.py256 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/
Ddis.py85 print opname[op].ljust(20),
123 print opname[op].ljust(15),
Dstring.py425 def ljust(s, width, *args): function
433 return s.ljust(width, *args)
DUserString.py101 def ljust(self, width, *args): member in UserString
102 return self.__class__(self.data.ljust(width, *args))
Dstringold.py265 def ljust(s, width): function
Dpstats.py392 print >> self.stream, "Function ".ljust(name_size) + column_title
404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
Dcmd.py403 texts[col] = texts[col].ljust(colwidths[col])
Duuid.py431 ncb.Callname = '*'.ljust(16)
/external/python/cpython2/Tools/scripts/
Dbyteyears.py55 print filename.ljust(maxlen),
Dpdeps.py154 print mod.ljust(maxlen), ':',
/external/autotest/site_utils/
Dgenerate_test_report497 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)
Dtest_push.py432 print "%s%s" % (test_name.ljust(30), test_status)
/external/python/cpython2/Demo/tkinter/guido/
Dss1.py12 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/
Dcoff-dump.py463 write("%s = " % name.ljust(24))
/external/vulkan-validation-layers/
Dgenerator.py397 paramdecl = paramdecl.ljust(aligncol-1) + ' '
Dparameter_validation_generator.py597 reportData = ' debug_report_data*'.ljust(self.genOpts.alignFuncParam) + 'report_data,'
/external/webrtc/third_party/gtest-parallel/
Dgtest-parallel105 self.__out_file.write("\r" + msg[:self.__width].ljust(self.__width))
/external/v8/tools/clang/blink_gc_plugin/
Dprocess-graph.py310 print >>out, (p.loc + ':').ljust(max_loc + 1), p
/external/python/cpython2/Tools/iobench/
Diobench.py270 ).ljust(52))
/external/python/cpython2/Doc/tutorial/
Dinputoutput.rst108 it with spaces on the left. There are similar methods :meth:`str.ljust` and
114 ``x.ljust(n)[:n]``.)

12