Lines Matching refs:space
285 # Perl's Getopt::Long allows options to take optional arguments after a space.
2824 # new versions of GNU diff omit the leading space on completely
3058 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
3340 my $space = 1;
3374 $space = 0 if ($input =~ /\bcommit [0-9a-f]/i);
3384 ($short || $long || $space || $case || ($orig_desc ne $description) || !$has_quotes) &&
3509 # check for repeated words separated by a single space
3900 # check for space before tabs.
3904 "please, no space before tabs\n" . $herevet) &&
3982 # check for space after cast like "(int) foo" or "(struct foo) bar"
3992 "No space is necessary after a cast\n" . $herecurr) &&
4775 # Should start with a space.
4777 # Should not end with a space.
4800 # Should start with a space.
4802 # Should not end with a space.
4942 # missing space after union, struct or enum definition
4945 "missing space after $1 definition\n" . $herecurr) &&
4964 # so check it for a missing trailing missing space but pointer return types
4965 # don't need a space so don't warn for those.
4973 "missing space after return type\n" . $herecurr);
4977 # unnecessary space "type (*funcptr)(args...)"
4988 # unnecessary space "type ( *funcptr)(args...)"
4992 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4995 # unnecessary space "type (* funcptr)(args...)"
4999 "Unnecessary space before function pointer name\n" . $herecurr);
5002 # unnecessary space "type (*funcptr )(args...)"
5006 "Unnecessary space after function pointer name\n" . $herecurr);
5009 # unnecessary space "type (*funcptr) (args...)"
5013 "Unnecessary space before function pointer arguments\n" . $herecurr);
5032 "space prohibited before open square bracket '['\n" . $herecurr) &&
5054 # if there is a space between the name and the open
5067 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
5165 # ; should have either the end of line or a space or \ after it
5170 "space required after that '$op' $at\n" . $hereptr)) {
5197 # , must not have a space before and must have a space on the right.
5203 "space prohibited before that '$op' $at\n" . $hereptr)) {
5210 "space required after that '$op' $at\n" . $hereptr)) {
5231 # unary operators should have a space before and
5239 "space required before that '$op' $at\n" . $hereptr)) {
5251 "space prohibited after that '$op' $at\n" . $hereptr)) {
5260 # unary ++ and unary -- are allowed no space on one side.
5264 "space required one side of that '$op' $at\n" . $hereptr)) {
5272 "space prohibited before that '$op' $at\n" . $hereptr)) {
5279 "space prohibited after that '$op' $at\n" . $hereptr)) {
5305 "space preferred before that '$op' $at\n" . $hereptr)) {
5326 "space prohibited before that '$op' $at\n" . $hereptr)) {
5389 "space prohibited before semicolon\n" . $herecurr) &&
5418 #need space before brace following if, while, etc
5422 "space required before the open brace '{'\n" . $herecurr) &&
5436 # closing brace should have a space following it when it has anything
5440 "space required after that close brace '}'\n" . $herecurr) &&
5450 "space prohibited after that open square bracket '['\n" . $herecurr) &&
5458 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
5469 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
5479 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
5538 # check that goto labels aren't indented (allow a single space indentation)
5577 "space required before the open parenthesis '('\n" . $herecurr);
5645 # Need a space before open parenthesis after if, while etc
5648 "space required before the open parenthesis '('\n" . $herecurr) &&
5689 my $space = $1;
5697 fix_insert_line($fixlinenr, "$space$statement;");
5698 my $newline = "${space}if (";
6289 # check for missing a space in a string concatenation
6292 "break quoted strings at a space character\n" . $hereprev);
6632 "exactly one space required after that #$1\n" . $herecurr) &&