Lines Matching refs:space

201 # Perl's Getopt::Long allows options to take optional arguments after a space.
2560 # new versions of GNU diff omit the leading space on completely
2785 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
2898 my $space = 1;
2914 $space = 0 if ($line =~ /\bcommit [0-9a-f]/i);
2938 ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens)) {
3051 # check for repeated words separated by a single space
3416 # check for space before tabs.
3420 "please, no space before tabs\n" . $herevet) &&
3484 # check for space after cast like "(int) foo" or "(struct foo) bar"
3494 "No space is necessary after a cast\n" . $herecurr) &&
4256 # Should start with a space.
4258 # Should not end with a space.
4281 # Should start with a space.
4283 # Should not end with a space.
4416 # missing space after union, struct or enum definition
4419 "missing space after $1 definition\n" . $herecurr) &&
4438 # so check it for a missing trailing missing space but pointer return types
4439 # don't need a space so don't warn for those.
4447 "missing space after return type\n" . $herecurr);
4451 # unnecessary space "type (*funcptr)(args...)"
4462 # unnecessary space "type ( *funcptr)(args...)"
4466 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4469 # unnecessary space "type (* funcptr)(args...)"
4473 "Unnecessary space before function pointer name\n" . $herecurr);
4476 # unnecessary space "type (*funcptr )(args...)"
4480 "Unnecessary space after function pointer name\n" . $herecurr);
4483 # unnecessary space "type (*funcptr) (args...)"
4487 "Unnecessary space before function pointer arguments\n" . $herecurr);
4506 "space prohibited before open square bracket '['\n" . $herecurr) &&
4528 # if there is a space between the name and the open
4541 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
4639 # ; should have either the end of line or a space or \ after it
4644 "space required after that '$op' $at\n" . $hereptr)) {
4671 # , must not have a space before and must have a space on the right.
4677 "space prohibited before that '$op' $at\n" . $hereptr)) {
4684 "space required after that '$op' $at\n" . $hereptr)) {
4705 # unary operators should have a space before and
4713 "space required before that '$op' $at\n" . $hereptr)) {
4725 "space prohibited after that '$op' $at\n" . $hereptr)) {
4734 # unary ++ and unary -- are allowed no space on one side.
4738 "space required one side of that '$op' $at\n" . $hereptr)) {
4746 "space prohibited before that '$op' $at\n" . $hereptr)) {
4753 "space prohibited after that '$op' $at\n" . $hereptr)) {
4779 "space preferred before that '$op' $at\n" . $hereptr)) {
4800 "space prohibited before that '$op' $at\n" . $hereptr)) {
4863 "space prohibited before semicolon\n" . $herecurr) &&
4892 #need space before brace following if, while, etc
4896 "space required before the open brace '{'\n" . $herecurr) &&
4910 # closing brace should have a space following it when it has anything
4914 "space required after that close brace '}'\n" . $herecurr) &&
4924 "space prohibited after that open square bracket '['\n" . $herecurr) &&
4932 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
4943 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
4953 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
5012 #goto labels aren't indented, allow a single space however
5047 "space required before the open parenthesis '('\n" . $herecurr);
5115 # Need a space before open parenthesis after if, while etc
5118 "space required before the open parenthesis '('\n" . $herecurr) &&
5158 my $space = $1;
5166 fix_insert_line($fixlinenr, "$space$statement;");
5167 my $newline = "${space}if (";
5737 # check for missing a space in a string concatenation
5740 "break quoted strings at a space character\n" . $hereprev);
6037 "exactly one space required after that #$1\n" . $herecurr) &&