Lines Matching refs:output

11 # its output except for some specific circumstances where other decisions
12 # seemed to produce better output. It uses Pod::Parser and is designed to be
240 # Pod::Paragraph object. Just output it verbatim, but with tabs converted to
249 $self->output ($_);
253 # Pod::Paragraph object. Perform interpolation and output the results.
257 $self->output ($_[0]), return if $$self{VERBATIM};
261 # Interpolate and output the paragraph.
267 $self->output ($self->reformat ($_ . "\n"));
304 # For all the other formatting codes, empty content produces no output.
308 # When we output the text, we'll map this back.
330 # output them directly.
504 $self->output ("\n" . "$margin$marker $text $closemark" . "\n\n");
508 $self->output ($margin . $text . "\n");
520 # that argument is empty, just output the item tag; if it contains a newline,
521 # output the item tag followed by the newline. Otherwise, see if there's
522 # enough room for us to output the item tag in the margin of the text or if we
539 my $output = $self->reformat ($tag);
540 $output =~ s/^$margin /$margin:/ if ($$self{alt} && $indent > 0);
541 $output =~ s/\n*$/\n/;
547 $output .= "\n" if $_ && $_ =~ /^\s*$/;
549 $self->output ($output);
551 $self->output ($self->reformat ($_)) if $_ && /\S/;
559 $self->output ($_);
575 my $output = '';
580 $output .= $spaces . $1 . "\n";
585 $output .= $spaces . $_;
586 $output =~ s/\s+$/\n\n/;
587 $output;
609 # Output text to the output device.
610 sub output { $_[1] =~ tr/\01/ /; print { $_[0]->output_handle } $_[1] }
615 sub output_code { $_[0]->output ($_[1]) }
688 special formatting controls or codes whatsoever, and its output is therefore
703 If set to a true value, selects an alternate output format that, among other
710 in the output. Useful for viewing code documented with POD blocks with the
725 output.
760 being the file handle to write the formatted output to. The first defaults
763 input and output disk files instead. See L<Pod::Parser> for the specific
812 output, due to an internal implementation detail.