Home
last modified time | relevance | path

Searched refs:colwidth (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Tools/scripts/
Dbyext.py87 colwidth = {}
88 colwidth["ext"] = max([len(ext) for ext in exts])
103 colwidth[col] = cw
111 print("%*s" % (colwidth[col], col), end=" ")
117 print("%*s" % (colwidth[col], value), end=" ")
/external/python/cpython2/Lib/
Dcalendar.py342 colwidth = (w + 1) * 7 - 1
345 a(repr(theyear).center(colwidth*m+c*(m-1)).rstrip())
352 names = (self.formatmonthname(theyear, k, colwidth, False)
354 a(formatstring(names, colwidth, c).rstrip())
357 a(formatstring(headers, colwidth, c).rstrip())
368 a(formatstring(weeks, colwidth, c).rstrip())
596 def format(cols, colwidth=_colwidth, spacing=_spacing): argument
598 print formatstring(cols, colwidth, spacing)
601 def formatstring(cols, colwidth=_colwidth, spacing=_spacing): argument
604 return spacing.join(c.center(colwidth) for c in cols)
Dcmd.py374 colwidth = 0
380 colwidth = max(colwidth, len(x))
381 colwidths.append(colwidth)
382 totwidth += colwidth + 2
/external/syslinux/com32/modules/
Dls.c78 int pos, tpos, colwidth; in display_directory() local
118 colwidth = (cols + 2)/ncols; in display_directory()
133 tpos += colwidth; in display_directory()
Ddir.c78 int pos, tpos, colwidth; in display_directory() local
118 colwidth = (cols + 2)/ncols; in display_directory()
133 tpos += colwidth; in display_directory()
/external/python/cpython2/Demo/tkinter/guido/
Dss1.py152 colwidth = [1] * width
157 colwidth[x] = max(colwidth[x], len(text))
161 colwidth[0] = max(colwidth[0], len(text))
179 colwidth[x] = max(colwidth[x], len(text))
185 sep += "-"*colwidth[x]
191 text = align2action[alignment](text, colwidth[x])
/external/javasqlite/src/main/java/SQLite/
DShell.java27 int colwidth[]; field in Shell
59 s.colwidth = colwidth; in clone()
193 colwidth = new int[args.length]; in newrow()
200 colwidth[i] = w; in newrow()
/external/elfutils/doc/
Delfutils.sgml215 <colspec colwidth="90pt">
216 <colspec colwidth="110pt">
/external/brotli/research/
Dbrotlidump.py426 colwidth = leftColWidth+rightColWidth
427 columns = 81//(colwidth+2)