Lines Matching refs:output
1221 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1222 my $count = $output =~ tr/\n//;
1223 return $count eq 1 && $output =~ m{^${filename}$};
1231 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1232 $output =~ s/^\s*//gm;
1233 my @lines = split("\n", $output);
2337 my $output = '';
2340 $output .= RED;
2342 $output .= YELLOW;
2344 $output .= GREEN;
2347 $output .= $prefix . $level . ':';
2349 $output .= BLUE if ($color);
2350 $output .= "$type:";
2352 $output .= RESET if ($color);
2353 $output .= ' ' . $msg . "\n";
2356 my @lines = split("\n", $output, -1);
2358 $output = join("\n", @lines);
2362 $output = (split('\n', $output))[0] . "\n";
2367 $output .= $verbose_messages{$type} . "\n\n";
2371 push(our @report, $output);