HomeSort by relevance Sort by last modified time
    Searched refs:firstline_indent (Results 1 - 2 of 2) sorted by null

  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py 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)
    [all...]
  /external/chromium_org/third_party/python_gflags/
gflags.py 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)
    [all...]

Completed in 56 milliseconds