Lines Matching refs:output

10 # match its output except for some specific circumstances where other
11 # decisions seemed to produce better output. It uses Pod::Parser and is
156 # a Pod::Paragraph object. Just output it verbatim, but with tabs converted
165 $self->output ($_);
169 # a Pod::Paragraph object. Perform interpolation and output the results.
173 $self->output ($_[0]), return if $$self{VERBATIM};
216 # Now actually interpolate and output the paragraph.
222 $self->output ($self->reformat ($_ . "\n"));
243 # For all the other sequences, empty content produces no output.
247 # When we output the text, we'll map this back.
286 $self->output ("\n==== $_ ====\n\n");
289 $self->output ($_ . "\n");
300 $self->output ("\n== $_ ==\n\n");
302 $self->output (' ' x ($$self{indent} / 2) . $_ . "\n\n");
387 # If we were given any explicit text, just output it.
411 # Now build the actual output text.
435 # argument. If that argument is empty, just output the item tag; if it
436 # contains a newline, output the item tag followed by the newline.
437 # Otherwise, see if there's enough room for us to output the item tag in the
455 my $output = $self->reformat ($tag);
456 $output =~ s/\n*$/\n/;
457 $self->output ($output);
459 $self->output ($self->reformat ($_)) if /\S/;
465 $self->output ($_);
481 my $output = '';
486 $output .= $spaces . $1 . "\n";
491 $output .= $spaces . $_;
492 $output =~ s/\s+$/\n\n/;
493 $output;
515 # Output text to the output device.
516 sub output { $_[1] =~ tr/\01/ /; print { $_[0]->output_handle } $_[1] }
588 special formatting controls or codes whatsoever, and its output is therefore
603 If set to a true value, selects an alternate output format that, among other
619 output.
636 being the file handle to write the formatted output to. The first defaults
639 input and output disk files instead. See L<Pod::Parser> for the specific
676 output, due to an internal implementation detail.