Lines Matching refs:s
1198 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1249 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
4238 my $s = $stat;
4239 $s =~ s/{.*$//s;
4242 if ($s =~ /$Ident:\*$/s) {
4245 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
4247 } elsif ($s =~ /^.\s*else\b/s) {
4250 …} elsif ($prev_values eq 'E' && $s =~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?((?:\s*$Id…
4253 possible($type, "A:" . $s);
4256 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
4257 possible($1, "B:" . $s);
4261 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
4262 possible($1, "C:" . $s);
4268 …if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$I…
4271 my $ctx = $s;
4278 possible($1, "D:" . $s);
4364 my ($s, $c) = ($stat, $cond);
4366 substr($s, 0, length($c), '');
4369 $s =~ s/$;/ /g;
4379 $s =~ s/\n./\n/gs;
4380 while ($s =~ /\n\s+\\\n/) {
4381 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
4391 $s =~ s/^.*\bdo\b//;
4392 $s =~ s/^\s*{//;
4393 if ($s =~ s/^\s*\\//) {
4396 if ($s =~ s/^\s*?\n//) {
4415 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
4424 $s =~ /^\s*?\n/ ||
4425 $s =~ /^\s*#\s*?/ ||
4426 $s =~ /^\s*$Ident\s*:/) {
4427 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
4428 if ($s =~ s/^.*?\n//) {
4434 my (undef, $sindent) = line_stats("+" . $s);
4449 if ($check && $s ne '' &&
4453 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
5685 my ($s, $c) = ($stat, $cond);
5716 substr($s, 0, length($c), '');
5717 $s =~ s/\n.*//g;
5718 $s =~ s/$;//g; # Remove any comments
5719 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
5756 my $s = $1;
5757 $s =~ s/$;//g; # Remove any comments
5758 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
5802 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
5806 substr($s, 0, length($c), '');
5807 $s =~ s/\n.*//g;
5809 if ($s =~ /^\s*;/) {
6288 …"Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a strin…
6294 …if ($rawline =~ /^\+.*\([^"]*"$tracing_logging_tags{0,3}%s(?:\s*\(\s*\)\s*)?$tracing_logging_tags{…
6422 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
6425 …if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*$allocFunctions\s*…
6426 $s !~ /\b__GFP_NOWARN\b/ ) {
7065 my $s = $stat;
7067 substr($s, 0, length($cond), '');
7069 if ($s =~ /^\s*;/)