Lines Matching refs:s
998 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1048 my $lines = `${git_command} log --no-color --no-merges --pretty=format:'%H %s' $git_range`;
3659 my $s = $stat;
3660 $s =~ s/{.*$//s;
3663 if ($s =~ /$Ident:\*$/s) {
3666 } elsif ($s =~ /^.\s*$Ident\s*\(/s) {
3668 } elsif ($s =~ /^.\s*else\b/s) {
3671 …} elsif ($prev_values eq 'E' && $s =~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?((?:\s*$Id…
3674 possible($type, "A:" . $s);
3677 } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
3678 possible($1, "B:" . $s);
3682 while ($s =~ /\(($Ident)(?:\s+$Sparse)*[\s\*]+\s*\)/sg) {
3683 possible($1, "C:" . $s);
3689 …if ($prev_values eq 'E' && $s =~ /^(.(?:typedef\s*)?(?:(?:$Storage|$Inline)\s*)*\s*$Type\s*(?:\b$I…
3692 my $ctx = $s;
3699 possible($1, "D:" . $s);
3785 my ($s, $c) = ($stat, $cond);
3787 substr($s, 0, length($c), '');
3790 $s =~ s/$;/ /g;
3800 $s =~ s/\n./\n/gs;
3801 while ($s =~ /\n\s+\\\n/) {
3802 $cond_lines += $s =~ s/\n\s+\\\n/\n/g;
3812 $s =~ s/^.*\bdo\b//;
3813 $s =~ s/^\s*{//;
3814 if ($s =~ s/^\s*\\//) {
3817 if ($s =~ s/^\s*?\n//) {
3836 if ($s =~ /^\s*\#\s*(?:else|elif)/) {
3845 $s =~ /^\s*?\n/ ||
3846 $s =~ /^\s*#\s*?/ ||
3847 $s =~ /^\s*$Ident\s*:/) {
3848 $continuation = ($s =~ /^.*?\\\n/) ? 1 : 0;
3849 if ($s =~ s/^.*?\n//) {
3855 my (undef, $sindent) = line_stats("+" . $s);
3870 if ($check && $s ne '' &&
3874 ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
5075 my ($s, $c) = ($stat, $cond);
5106 substr($s, 0, length($c), '');
5107 $s =~ s/\n.*//g;
5108 $s =~ s/$;//g; # Remove any comments
5109 if (length($c) && $s !~ /^\s*{?\s*\\*\s*$/ &&
5146 my $s = $1;
5147 $s =~ s/$;//g; # Remove any comments
5148 if ($s !~ /^\s*(?:\sif|(?:{|)\s*\\?\s*$)/) {
5192 my ($s, $c) = ctx_statement_block($linenr, $realcnt, 0);
5196 substr($s, 0, length($c), '');
5197 $s =~ s/\n.*//g;
5199 if ($s =~ /^\s*;/) {
5684 …"Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a strin…
5806 my ($s, $c) = ctx_statement_block($linenr - 3, $realcnt, 0);
5809 …if ($s =~ /(?:^|\n)[ \+]\s*(?:$Type\s*)?\Q$testval\E\s*=\s*(?:\([^\)]*\)\s*)?\s*$allocFunctions\s*…
5810 $s !~ /\b__GFP_NOWARN\b/ ) {
6407 my $s = $stat;
6409 substr($s, 0, length($cond), '');
6411 if ($s =~ /^\s*;/)