HomeSort by relevance Sort by last modified time
    Searched refs:maxcol (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
makechangelog.py 60 maxcol = 72-8
61 col = maxcol
63 if col > 0 and col + len(word) >= maxcol:
  /external/python/cpython2/Demo/pdist/
makechangelog.py 60 maxcol = 72-8
61 col = maxcol
63 if col > 0 and col + len(word) >= maxcol:
  /external/eigen/test/
visitor.cpp 29 Index minrow=0,mincol=0,maxrow=0,maxcol=0; local
43 maxcol = j;
53 VERIFY(maxcol == eigen_maxcol);
60 eigen_maxc = (m.adjoint()*m).eval().maxCoeff(&maxrow,&maxcol);
62 VERIFY(maxcol == eigen_maxcol);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
formatter.py 364 the maxcol parameter. This class is suitable for reflowing a sequence
369 def __init__(self, file=None, maxcol=72):
371 self.maxcol = maxcol
391 self.file.write('-'*self.maxcol)
410 maxcol = self.maxcol
414 if col + len(word) >= maxcol:
cmd.py 342 def print_topics(self, header, cmds, cmdlen, maxcol):
347 self.columnize(cmds, maxcol-1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
formatter.py 364 the maxcol parameter. This class is suitable for reflowing a sequence
369 def __init__(self, file=None, maxcol=72):
371 self.maxcol = maxcol
391 self.file.write('-'*self.maxcol)
410 maxcol = self.maxcol
414 if col + len(word) >= maxcol:
cmd.py 339 def print_topics(self, header, cmds, cmdlen, maxcol):
344 self.columnize(cmds, maxcol-1)
  /external/python/cpython2/Lib/
formatter.py 364 the maxcol parameter. This class is suitable for reflowing a sequence
369 def __init__(self, file=None, maxcol=72):
371 self.maxcol = maxcol
391 self.file.write('-'*self.maxcol)
410 maxcol = self.maxcol
414 if col + len(word) >= maxcol:
cmd.py 342 def print_topics(self, header, cmds, cmdlen, maxcol):
347 self.columnize(cmds, maxcol-1)
  /external/python/cpython3/Lib/
formatter.py 367 the maxcol parameter. This class is suitable for reflowing a sequence
372 def __init__(self, file=None, maxcol=72):
374 self.maxcol = maxcol
394 self.file.write('-'*self.maxcol)
413 maxcol = self.maxcol
417 if col + len(word) >= maxcol:
cmd.py 338 def print_topics(self, header, cmds, cmdlen, maxcol):
343 self.columnize(cmds, maxcol-1)
  /external/mesa3d/src/compiler/glsl/
lower_blend_equation_advanced.cpp 222 ir_variable *maxcol = f->make_temp(glsl_type::float_type, "__blend_maxcol"); local
226 f->emit(assign(maxcol, maxv3(color)));
231 if_tree(greater(maxcol, imm1(1)),
234 sub(maxcol, llum)))))));

Completed in 498 milliseconds