Searched refs:maxlines (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Tools/c-analyzer/c_parser/parser/ |
H A D | __init__.py | 167 def _iter_source(lines, *, maxtext=10_000, maxlines=200, showtext=False): 169 maxlines = maxlines if maxlines and maxlines > 0 else None 188 if srcinfo.too_much(maxtext, maxlines):
|
H A D | _info.py | 126 def too_much(self, maxtext, maxlines): 129 elif maxlines and self.end - self.start > maxlines:
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | __init__.py | 33 srckwargs['maxtext'], srckwargs['maxlines'] = maxsize 59 maxtext, maxlines = maxsize 62 if maxlines is not None: 63 maxlines = int(maxlines) 64 return maxtext, maxlines
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | postscript.c | 222 int maxlines = 1000; /* Maximum number of lines to be read when the in _print_ps() local 224 "$maxlines = 0" means that all will be read and in _print_ps() 363 maxlines = 1; in _print_ps() 379 if (maxlines == nonpslines) in _print_ps() 380 maxlines ++; in _print_ps() 396 maxlines = 0; in _print_ps() 950 maxlines = 1; in _print_ps() 1104 } while ((maxlines == 0 || linect < maxlines) && more_stuff != 0); in _print_ps()
|
/third_party/skia/modules/skparagraph/src/ |
H A D | ParagraphCache.cpp | 119 size_t maxlines; member in skia::textlayout::ParagraphCacheValue 335 paragraph.fParagraphStyle.getMaxLines() == value->maxlines && in useCachedLayout() 389 value->maxlines = paragraph.fParagraphStyle.getMaxLines(); in SetStoredLayoutImpl()
|
Completed in 5 milliseconds