Home
last modified time | relevance | path

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

/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
Dformatter.py524 def make_wrappable(html, wrap_limit=60, argument
528 if len(html) <= wrap_limit:
534 while len(word) > wrap_limit:
542 for i in range(0, len(word), wrap_limit):
543 wrapped_word += word[i:i+wrap_limit]+'<wbr>'
549 def make_pre_wrappable(html, wrap_limit=60, argument
558 if len(line) > wrap_limit: