/external/selinux/gui/ |
D | html_util.py | 43 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/ |
D | visitor.cpp | 29 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/ |
D | makechangelog.py | 60 maxcol = 72-8 61 col = maxcol 63 if col > 0 and col + len(word) >= maxcol:
|
/external/python/cpython3/Lib/ |
D | formatter.py | 372 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:
|
D | cmd.py | 338 def print_topics(self, header, cmds, cmdlen, maxcol): argument 343 self.columnize(cmds, maxcol-1)
|
/external/python/cpython2/Lib/ |
D | formatter.py | 369 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:
|
D | cmd.py | 342 def print_topics(self, header, cmds, cmdlen, maxcol): argument 347 self.columnize(cmds, maxcol-1)
|
/external/syslinux/utils/ |
D | ppmtolss16 | 220 $maxcol = 255; # Internal convention 222 $maxcol = get_numeric_token(); 224 $maxmult = 64/($maxcol+1); # Equal buckets conversion
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_blend_equation_advanced.cpp | 221 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/ |
D | cmenu.h | 215 int maxcol, mincol, numcols; // Number of columns in the window member
|
D | menu.c | 122 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/ |
D | formatter.rst | 344 .. 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/ |
D | formatter.rst | 345 .. class:: DumbWriter(file=None, maxcol=72) 349 simply word-wrapped to the number of columns specified by *maxcol*. This
|