Lines Matching full:blank
615 # If previous line was a blank line, assume that the headers are
1061 (replaced by blank line)
1085 # Haven't found the end yet, append a blank line.
1135 # unnecessary blank line warnings later in the code.
2259 """Returns true if the given line is blank.
2261 We consider a line to be blank if the line is empty or consists of
2268 True, if the given line is blank.
2285 Blank/comment lines are not counted so as to avoid encouraging the removal
2340 function_state.Count() # Count non-blank/non-comment lines.
2537 spaces between code and comment, don't start a block with a blank
2538 line, don't end a function with a blank line, don't add a blank line
2539 after public/protected/private, don't have too many blank lines in a row.
2556 # Before nixing comments, check if the line is blank for no good
2558 # blank lines at the end of a function (ie, right before a line like '}'
2560 # Skip all the blank line checks if we are immediately inside a
2561 # namespace body. In other words, don't issue blank line warnings
2572 # TODO(unknown): Don't complain if line before blank line, and line after,
2577 # OK, we have a blank line at the start of a code block. Before we
2607 'Redundant blank line at the start of a code block '
2609 # Ignore blank lines at the end of a block in a long if-else
2612 # // Something followed by a blank line
2623 'Redundant blank line at the end of a code block '
2629 'Do not leave a blank line after "%s:"' % matched.group(1))
2881 """Checks for additional blank line issues related to sections.
2883 Currently the only thing checked here is blank line before protected/private.
2910 # not a blank line, but don't do this if the previous line contains
2932 '"%s:" should be preceded by a blank line' % matched.group(1))
2936 """Return the most recent non-blank line and its line number.
2944 non-blank line before the current line, or the empty string if this is the
2945 first non-blank line. The second is the line number of that line, or -1
2946 if this is the first non-blank line.
2952 if not IsBlankLine(prevline): # if not a blank line...
2976 # the previous non-blank line is ',', ';', ':', '(', '{', or '}', or if the
3108 # duplicate warnings for the blank line case:
3110 # // blank line
3376 # One or three blank spaces at the beginning of the line is weird; it's