Lines Matching refs:lines
47 # max number of chars in each line, above which lines are wrapped in
50 # number of lines of context in sdiffs
137 my @lines = `LC_ALL=C svn --non-interactive status` or msg_fatal ('"svn status" failed');
138 foreach my $line (@lines) {
155 my @lines = `LC_ALL=C cvs -z3 status 2>&1 | egrep '(^\\? |^cvs status: Examining |Status:)' | grep -v Up-to-date`
158 foreach my $line (@lines) {
384 # returns the number of lines actually added to the array
390 # $indent_len is the number of chars to indent wrapped lines (because of the
471 # the 1st 2 lines are the file names
495 # new lines added to the file: print them on the right side in blue
498 # print an equal number of blank lines on the left side
506 # lines deleted
514 # if deleted lines are immediately followed by added lines,
515 # then some of the deleted lines are actually changed lines.
537 # no deleted lines: print the new lines on the right side
545 # deleted lines remain, print them in brown on the left side
552 # unchanged (context) lines
650 # read all lines until the next
713 my $lines = `cat $file | wc -l`;
714 chomp ($lines);
716 print INDEX "$lines new line(s)\n";
717 $total_new += $lines;
722 my $lines = `cat $webrev_dir/$file/old.$basename | wc -l`;
723 chomp ($lines);
724 print INDEX "$lines deleted line(s)\n";
725 $total_deleted += $lines;
730 my $lines = `cat $file | wc -l`;
731 chomp ($lines);
732 print INDEX "$lines new line(s) not under svn control\n";
733 $total_non_svn += $lines;