Lines Matching refs:brace
4353 # if/while/etc brace do not go on next line, unless defining a do while loop,
4354 # or if that brace on the next line is for something else
4384 "that open brace { should be on the previous line\n" .
4428 # 2) any opening brace { on end of the line
4587 # check for initialisation to aggregates open brace on the next line
4591 "that open brace { should be on the previous line\n" . $hereprev) &&
4947 # function brace can't be on same line, except for #defines of do while,
4954 "open brace '{' following function definitions go on the next line\n" . $herecurr) &&
4973 "open brace '{' following $1 go on the same line\n" . $hereprev) &&
5070 # 3. inside a curly brace -- = { [0...10] = 5 }
5463 #need space before brace following if, while, etc
5467 "space required before the open brace '{'\n" . $herecurr) &&
5481 # closing brace should have a space following it when it has anything
5485 "space required after that close brace '}'\n" . $herecurr) &&
5740 my $brace = $15;
5750 $newline .= " {" if (defined($brace));
5818 # if should not continue a brace
5840 "else should follow close brace '}'\n" . $hereprev) &&
5866 "while should follow close brace '}'\n" . $hereprev) &&
6292 "Blank lines aren't necessary before a close brace '}'\n" . $hereprev) &&
6299 "Blank lines aren't necessary after an open brace '{'\n" . $hereprev) &&
7241 # check for multiline function definition with misplaced open brace
7254 "open brace '{' following function definitions go on the next line\n" . $herectx);