Home
last modified time | relevance | path

Searched refs:maxcol (Results 1 – 13 of 13) sorted by relevance

/external/selinux/gui/
Dhtml_util.py43 def __init__(self, file=None, maxcol=80, indent_width=4): argument
44 Formatter.DumbWriter.__init__(self, file, maxcol)
70 maxcol = self.maxcol
78 if col + len(word) >= maxcol:
131 def html_to_text(html, maxcol=80): argument
134 formatter = Formatter.AbstractFormatter(TextWriter(buffer, maxcol))
/external/eigen/test/
Dvisitor.cpp29 Index minrow=0,mincol=0,maxrow=0,maxcol=0; in matrixVisitor() local
43 maxcol = j; in matrixVisitor()
53 VERIFY(maxcol == eigen_maxcol); in matrixVisitor()
60 eigen_maxc = (m.adjoint()*m).eval().maxCoeff(&maxrow,&maxcol); in matrixVisitor()
62 VERIFY(maxcol == eigen_maxcol); in matrixVisitor()
/external/python/cpython2/Demo/pdist/
Dmakechangelog.py60 maxcol = 72-8
61 col = maxcol
63 if col > 0 and col + len(word) >= maxcol:
/external/python/cpython3/Lib/
Dformatter.py372 def __init__(self, file=None, maxcol=72): argument
374 self.maxcol = maxcol
394 self.file.write('-'*self.maxcol)
413 maxcol = self.maxcol
417 if col + len(word) >= maxcol:
Dcmd.py338 def print_topics(self, header, cmds, cmdlen, maxcol): argument
343 self.columnize(cmds, maxcol-1)
/external/python/cpython2/Lib/
Dformatter.py369 def __init__(self, file=None, maxcol=72): argument
371 self.maxcol = maxcol
391 self.file.write('-'*self.maxcol)
410 maxcol = self.maxcol
414 if col + len(word) >= maxcol:
Dcmd.py342 def print_topics(self, header, cmds, cmdlen, maxcol): argument
347 self.columnize(cmds, maxcol-1)
/external/syslinux/utils/
Dppmtolss16220 $maxcol = 255; # Internal convention
222 $maxcol = get_numeric_token();
224 $maxmult = 64/($maxcol+1); # Equal buckets conversion
/external/mesa3d/src/compiler/glsl/
Dlower_blend_equation_advanced.cpp221 ir_variable *maxcol = f->make_temp(glsl_type::float_type, "__blend_maxcol"); in set_lum() local
225 f->emit(assign(maxcol, maxv3(color))); in set_lum()
230 if_tree(greater(maxcol, imm1(1)), in set_lum()
233 sub(maxcol, llum))))))); in set_lum()
/external/syslinux/com32/cmenu/libmenu/
Dcmenu.h215 int maxcol, mincol, numcols; // Number of columns in the window member
Dmenu.c122 clearwindow(ms->minrow, ms->mincol, ms->maxrow, ms->maxcol, in reset_ui()
737 ms->maxcol = ms->numcols - 1; in init_menusystem()
835 ms->maxcol = right; in set_window_size()
/external/python/cpython2/Doc/library/
Dformatter.rst344 .. class:: DumbWriter(file=None, maxcol=72)
348 to the number of columns specified by *maxcol*. This class is suitable for
/external/python/cpython3/Doc/library/
Dformatter.rst345 .. class:: DumbWriter(file=None, maxcol=72)
349 simply word-wrapped to the number of columns specified by *maxcol*. This