Lines Matching refs:output
1188 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1189 my $count = $output =~ tr/\n//;
1190 return $count eq 1 && $output =~ m{^${filename}$};
1198 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1199 $output =~ s/^\s*//gm;
1200 my @lines = split("\n", $output);
2304 my $output = '';
2307 $output .= RED;
2309 $output .= YELLOW;
2311 $output .= GREEN;
2314 $output .= $prefix . $level . ':';
2316 $output .= BLUE if ($color);
2317 $output .= "$type:";
2319 $output .= RESET if ($color);
2320 $output .= ' ' . $msg . "\n";
2323 my @lines = split("\n", $output, -1);
2325 $output = join("\n", @lines);
2329 $output = (split('\n', $output))[0] . "\n";
2334 $output .= $verbose_messages{$type} . "\n\n";
2338 push(our @report, $output);