Home
last modified time | relevance | path

Searched refs:cur_len (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtextwrap.py202 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): argument
215 space_left = width - cur_len
261 cur_len = 0
281 if cur_len + l <= width:
283 cur_len += l
292 self._handle_long_word(chunks, cur_line, cur_len, width)
Dmailbox.py631 cur_len = self._file.tell()
632 if cur_len != self._file_length:
635 (self._file_length, cur_len))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dtextwrap.py210 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): argument
223 space_left = width - cur_len
269 cur_len = 0
289 if cur_len + l <= width:
291 cur_len += l
300 self._handle_long_word(chunks, cur_line, cur_len, width)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dfancy_getopt.py431 cur_len = 0 # length of current line
435 if cur_len + l <= width: # can squeeze (at least) this chunk in
438 cur_len = cur_len + l
450 if cur_len == 0: