Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_textwrap.py190 self.check_wrap(text, 1, expect, break_long_words=False)
208 self.check_wrap(text, 1, text.split(), break_long_words=False)
216 self.check_wrap(text, 1, text.split(), break_long_words=False)
620 self.wrapper.break_long_words = 0
631 result = wrap(self.text, width=30, break_long_words=0)
684 self.check_wrap(self.text1, 50, expected, break_long_words=False)
689 self.check_wrap(self.text1, 10, expected, break_long_words=False)
701 break_long_words=False,
708 break_long_words=False,
/third_party/python/Lib/
Dtextwrap.py122 break_long_words=True, argument
135 self.break_long_words = break_long_words
217 if self.break_long_words:
/third_party/python/Doc/library/
Dtextwrap.rst23 break_long_words=True, drop_whitespace=True, \
40 break_long_words=True, drop_whitespace=True, \
54 break_long_words=True, break_on_hyphens=True, \
141 :attr:`TextWrapper.break_long_words` is set to false.
257 .. attribute:: break_long_words
271 for line breaks, but you need to set :attr:`break_long_words` to false if
/third_party/node/tools/inspector_protocol/jinja2/
Dfilters.py615 def do_wordwrap(environment, s, width=79, break_long_words=True, argument
633 break_long_words=break_long_words))
/third_party/skia/third_party/externals/jinja2/
Dfilters.py710 break_long_words=True, argument
753 break_long_words=break_long_words,
/third_party/ninja/misc/
Dninja_syntax.py39 for line in textwrap.wrap(text, self.width - 2, break_long_words=False,
/third_party/jinja2/
Dfilters.py899 break_long_words: bool = True,
941 break_long_words=break_long_words,
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst398 ``break_long_words=True`` and ``break_on_hyphens=True``.