Lines Matching refs:space

282 # Perl's Getopt::Long allows options to take optional arguments after a space.
2762 # new versions of GNU diff omit the leading space on completely
2996 "Use a single space after $ucfirst_sign_off\n" . $herecurr) &&
3199 my $space = 1;
3233 $space = 0 if ($input =~ /\bcommit [0-9a-f]/i);
3243 ($short || $long || $space || $case || ($orig_desc ne $description) || !$has_quotes) &&
3362 # check for repeated words separated by a single space
3748 # check for space before tabs.
3752 "please, no space before tabs\n" . $herevet) &&
3830 # check for space after cast like "(int) foo" or "(struct foo) bar"
3840 "No space is necessary after a cast\n" . $herecurr) &&
4622 # Should start with a space.
4624 # Should not end with a space.
4647 # Should start with a space.
4649 # Should not end with a space.
4789 # missing space after union, struct or enum definition
4792 "missing space after $1 definition\n" . $herecurr) &&
4811 # so check it for a missing trailing missing space but pointer return types
4812 # don't need a space so don't warn for those.
4820 "missing space after return type\n" . $herecurr);
4824 # unnecessary space "type (*funcptr)(args...)"
4835 # unnecessary space "type ( *funcptr)(args...)"
4839 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4842 # unnecessary space "type (* funcptr)(args...)"
4846 "Unnecessary space before function pointer name\n" . $herecurr);
4849 # unnecessary space "type (*funcptr )(args...)"
4853 "Unnecessary space after function pointer name\n" . $herecurr);
4856 # unnecessary space "type (*funcptr) (args...)"
4860 "Unnecessary space before function pointer arguments\n" . $herecurr);
4879 "space prohibited before open square bracket '['\n" . $herecurr) &&
4901 # if there is a space between the name and the open
4914 "space prohibited between function name and open parenthesis '('\n" . $herecurr) &&
5012 # ; should have either the end of line or a space or \ after it
5017 "space required after that '$op' $at\n" . $hereptr)) {
5044 # , must not have a space before and must have a space on the right.
5050 "space prohibited before that '$op' $at\n" . $hereptr)) {
5057 "space required after that '$op' $at\n" . $hereptr)) {
5078 # unary operators should have a space before and
5086 "space required before that '$op' $at\n" . $hereptr)) {
5098 "space prohibited after that '$op' $at\n" . $hereptr)) {
5107 # unary ++ and unary -- are allowed no space on one side.
5111 "space required one side of that '$op' $at\n" . $hereptr)) {
5119 "space prohibited before that '$op' $at\n" . $hereptr)) {
5126 "space prohibited after that '$op' $at\n" . $hereptr)) {
5152 "space preferred before that '$op' $at\n" . $hereptr)) {
5173 "space prohibited before that '$op' $at\n" . $hereptr)) {
5236 "space prohibited before semicolon\n" . $herecurr) &&
5265 #need space before brace following if, while, etc
5269 "space required before the open brace '{'\n" . $herecurr) &&
5283 # closing brace should have a space following it when it has anything
5287 "space required after that close brace '}'\n" . $herecurr) &&
5297 "space prohibited after that open square bracket '['\n" . $herecurr) &&
5305 "space prohibited before that close square bracket ']'\n" . $herecurr) &&
5316 "space prohibited after that open parenthesis '('\n" . $herecurr) &&
5326 "space prohibited before that close parenthesis ')'\n" . $herecurr) &&
5385 # check that goto labels aren't indented (allow a single space indentation)
5424 "space required before the open parenthesis '('\n" . $herecurr);
5494 # Need a space before open parenthesis after if, while etc
5497 "space required before the open parenthesis '('\n" . $herecurr) &&
5537 my $space = $1;
5545 fix_insert_line($fixlinenr, "$space$statement;");
5546 my $newline = "${space}if (";
6118 # check for missing a space in a string concatenation
6121 "break quoted strings at a space character\n" . $hereprev);
6452 "exactly one space required after that #$1\n" . $herecurr) &&