Home | History | Annotate | Download | only in python_gflags

Lines Matching refs:firstline_indent

593 def TextWrap(text, length=None, indent='', firstline_indent=None, tabs='    '):
604 firstline_indent: indent for first line; if None, fall back to indent
612 FlagsError: if firstline_indent not shorter than length
622 # with indent (or firstline_indent if available) and then appended
624 if firstline_indent is None:
625 firstline_indent = ''
628 line = firstline_indent
629 if len(firstline_indent) >= length:
661 (not result and line != firstline_indent)) and line[-1] == ' '):
697 if (result and line != indent) or (not result and line != firstline_indent):
1462 firstline_indent=prefix)