Home
last modified time | relevance | path

Searched refs:fill_with (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/third_party/jinja2/
Dfilters.py701 def do_slice(value, slices, fill_with=None): argument
732 if fill_with is not None and slice_number >= slices_with_extra:
733 tmp.append(fill_with)
737 def do_batch(value, linecount, fill_with=None): argument
763 if fill_with is not None and len(tmp) < linecount:
764 tmp += [fill_with] * (linecount - len(tmp))
Dasyncfilters.py128 async def do_slice(value, slices, fill_with=None): argument
129 return filters.do_slice(await auto_to_seq(value), slices, fill_with)