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

  /external/chromium/googleurl/
PRESUBMIT.py 35 return LocalChecks(input_api, output_api, max_cols=0)
40 return (LocalChecks(input_api, output_api, max_cols=0) +
44 def LocalChecks(input_api, output_api, max_cols=80):
49 - contains a line >|max_cols| cols unless |max_cols| is 0.
87 # Accept lines with http:// to exceed the max_cols rule.
88 if max_cols and len(line) > max_cols and not 'http://' in line:
91 (path, line_num, len(line), max_cols)))
  /external/linux-tools-perf/util/
help.c 77 int max_cols; local
81 max_cols = 75;
86 max_cols = win.ws_col - 1; /* don't print *on* the edge */
90 if (space < max_cols)
91 cols = max_cols / space;

Completed in 48 milliseconds