Lines Matching refs:lines
444 my @lines = ();
497 @lines = ();
527 @lines = ();
725 last if (!defined $lines[$line]);
726 next if ($lines[$line] =~ /^-/);
729 $blk .= $lines[$line] . "\n";
912 if ($lines[$line] =~ /^.\s*#\s*(?:ifndef|ifdef|if)\s/) {
914 } elsif ($lines[$line] =~ /^.\s*#\s*(?:else|elif)\b/) {
916 } elsif ($lines[$line] =~ /^.\s*#\s*endif\b/) {
920 foreach my $c (split(//, $lines[$line])) {
1628 push(@lines, $line);
1644 foreach my $line (@lines) {
1986 …if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file…
2072 (!defined $lines[$realline_next - 1] ||
2073 substr($lines[$realline_next - 1], $off_next) =~ /^\s*$/)) {
2163 defined $lines[$ctx_ln - 1] &&
2164 $lines[$ctx_ln - 1] =~ /^-/)) {
2166 $ctx_skip-- if (!defined $lines[$ctx_ln - 1] || $lines[$ctx_ln - 1] !~ /^-/);
2178 defined($lines[$ctx_ln - 1]) && $lines[$ctx_ln - 1] =~ /^\+\s*\{/ &&
2179 defined($lines[$ctx_ln - 2]) && length($lines[$ctx_ln - 2]) < 80) {
2185 defined $lines[$ctx_ln - 1])
2187 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
2855 while ($cnt > 0 && defined $lines[$ln - 1] &&
2856 $lines[$ln - 1] =~ /^(?:-|..*\\$)/)
2859 $cnt-- if ($lines[$ln - 1] !~ /^-/);
2874 if ($off != 0 || $lines[$ln - 1] !~ /^-/) {
2875 $rest .= substr($lines[$ln - 1], $off) . "\n";