Searched refs:ljust (Results 1 - 25 of 53) sorted by relevance

123

/external/python/cpython2/Doc/includes/sqlite3/
H A Dsimple_tableprinter.py14 print fieldDesc[0].ljust(FIELD_MAX_WIDTH) ,
24 print fieldValue.ljust(FIELD_MAX_WIDTH) ,
/external/python/cpython3/Doc/includes/sqlite3/
H A Dsimple_tableprinter.py14 print(fieldDesc[0].ljust(FIELD_MAX_WIDTH), end=' ')
24 print(fieldValue.ljust(FIELD_MAX_WIDTH), end=' ')
/external/lisa/tools/analysis/
H A Druntime.py152 print "PID".ljust(10) + "\t" + "name".ljust(15) + "\t" + "max run (secs)".ljust(15) + \
153 "\t" + "start time".ljust(15) + "\t" + "end time".ljust(15) + "\t" + "total runtime".ljust(15) + "\t" + "percent cpu".ljust(15) \
166 print str(r[0]).ljust(10) + "\t" + str(rd.comm).ljust(15) + "\t" + \
167 str(rd.maxrun).ljust(1
[all...]
H A Drunnable.py187 print "PID".ljust(10) + "\t" + "name".ljust(20) + "\t" + "latency (secs)".ljust(20) + \
188 "\t" + "start time".ljust(20) + "\t" + "end time".ljust(20) + "\t" + "total (secs)".ljust(20)
197 print str(r[0]).ljust(10) + "\t" + str(l.wake_data.data['comm']).ljust(20) + "\t" + \
198 str(l.latency).ljust(20)[:20] + "\t" + str(wake_time).ljust(2
[all...]
/external/webrtc/tools/network_emulator/
H A Dconfig.py33 left_aligned_name = self.name.ljust(24, ' ')
/external/python/futures/
H A Dprimes.py42 sys.stdout.write('%s: ' % name.ljust(12))
H A Dcrawl.py67 sys.stdout.write('%s: ' % name.ljust(12))
/external/python/cpython2/Tools/scripts/
H A Dbyteyears.py55 print filename.ljust(maxlen),
H A Dpdeps.py154 print mod.ljust(maxlen), ':',
/external/python/cpython3/Tools/scripts/
H A Dbyteyears.py55 print(filename.ljust(maxlen), end=' ')
H A Dpdeps.py152 print(mod.ljust(maxlen), ':', end=' ')
/external/python/cpython3/Lib/
H A Dhmac.py80 key = key.ljust(blocksize, b'\0')
H A Dcmd.py400 texts[col] = texts[col].ljust(colwidths[col])
/external/python/cpython2/Lib/
H A Ddis.py85 print opname[op].ljust(20),
123 print opname[op].ljust(15),
H A Dstring.py425 def ljust(s, width, *args): function
426 """ljust(s, width[, fillchar]) -> string
433 return s.ljust(width, *args)
459 # (Use of this is deprecated; it should be a string as with ljust c.s.)
H A DUserString.py101 def ljust(self, width, *args): member in class:UserString
102 return self.__class__(self.data.ljust(width, *args))
H A Dstringold.py265 def ljust(s, width): function
266 """ljust(s, width) -> string
309 # (Use of this is deprecated; it should be a string as with ljust c.s.)
H A Dcmd.py403 texts[col] = texts[col].ljust(colwidths[col])
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dprofile.rb133 report << "| Generated at #{ Time.now }".ljust( 78 ) << " |\n"
134 report << "| Profiled #{ parser_class.name }##{ top_rule }".ljust( 78 ) << " |\n"
135 report << "| Rule source generated from grammar file #{ grammar_file }".ljust( 78 ) << " |\n"
/external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
H A Dnist2h.py97 return map(lambda w: w.ljust(8, '0'), words) # Zero-pad the last word.
/external/python/cpython2/Lib/test/
H A 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))
/external/python/cpython3/Lib/test/
H A Dtest_locale.py176 out=('-4%s200' % self.sep).ljust(10))
187 out=('-4%s200' % self.sep).ljust(10))
198 self._test_format("%-10.f", 4200, grouping=0, out='4200'.ljust(10))
324 self._test_format("%-10d", 4200, grouping=True, out='4 200'.ljust(10))
/external/autotest/site_utils/
H A 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)
/external/swiftshader/third_party/LLVM/test/Scripts/
H A Dcoff-dump.py463 write("%s = " % name.ljust(24))
/external/vulkan-validation-layers/scripts/
H A Dcgenerator.py351 body = '#define ' + name.ljust(33) + ' ' + strVal

Completed in 1221 milliseconds

123