Lines Matching refs:Encode
7 use Encode ;
8 use Encode::Alias;
43 $Opt{string} and Encode::from_to($Opt{string}, $from, $to) and print $Opt{string} and exit;
58 $Opt{perlqq} and $Opt{check} = Encode::PERLQQ;
59 $Opt{htmlcref} and $Opt{check} = Encode::HTMLCREF;
60 $Opt{xmlcref} and $Opt{check} = Encode::XMLCREF;
62 my $efrom = Encode->getEncoding($from) || die "Unknown encoding '$from'";
63 my $eto = Encode->getEncoding($to) || die "Unknown encoding '$to'";
94 Encode::from_to( $_, $from, $to, $Opt{check} );
98 Encode::from_to( $_, $from, $to, $Opt{check} );
137 print join( "\n", Encode->encodings(":all") ), "\n";
142 if ( my $alias = Encode::resolve_alias( $_[0] ) ) {
166 resolve encoding to its (Encode) canonical name
173 The following are mainly of interest to Encode hackers:
242 instead of "cp850", or "winlatin1" for "cp1252". See L<Encode::Supported>
247 Resolve I<encoding_alias> to Encode canonical encoding name.
279 Invokes debugging mode. Primarily for Encode hackers.
290 Uses Encode::from_to for conversion. This is the default.