| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/t/ |
| H A D | mime-name.t | 33 my $enc = find_encoding($canon); 36 qq(find_encoding($canon)->mime_name eq $mime_name); 38 qq(find_encoding($canon)->name eq $canon); 50 ok find_encoding("utf8"); 51 ok find_encoding("UTF8"); 52 ok find_encoding("utf-8-strict"); 53 ok find_encoding("utf-8"); 54 ok find_encoding("UTF-8");
|
| H A D | undef.t | 6 use Encode qw(encode decode find_encoding); 20 my $enc = find_encoding($name); 21 is($enc->encode(undef), undef, "find_encoding('$name')->encode(undef) returns undef"); 22 is($enc->decode(undef), undef, "find_encoding('$name')->decode(undef) returns undef");
|
| H A D | Aliases.t | 141 my $e = Encode::find_encoding($a); 156 Encode::find_encoding("myhebrew"); # polute alias cache 170 my $e = Encode::find_encoding($a); 178 my $e = Encode::find_encoding($a); 188 my $e = Encode::find_encoding($a);
|
| H A D | isa.t | 5 use Encode qw/find_encoding/; 9 isa_ok find_encoding($_), "Encode::Encoding" for @enc;
|
| H A D | encoding-locale.t | 12 use Encode qw<find_encoding>; 21 my $enc = find_encoding($locale_encoding);
|
| H A D | utf8ref.t | 12 # my $a = find_encoding('ASCII'); 13 my $u = find_encoding('UTF-8');
|
| H A D | Encode.t | 20 find_encoding is_utf8); 95 my $mime = find_encoding('iso-8859-2'); 97 my $x11 = find_encoding('iso8859-2'); 100 my $spc = find_encoding('iso 8859-2'); 171 my $enc = find_encoding($name); 194 my $latin1 = find_encoding('latin1');
|
| H A D | magic.t | 21 use Encode qw(find_encoding encode decode encode_utf8 decode_utf8 is_utf8 _utf8_on _utf8_off FB_CROAK); 25 my $ascii = find_encoding('ASCII'); 26 my $latin1 = find_encoding('Latin1'); 27 my $utf8 = find_encoding('UTF-8'); 28 my $utf16 = find_encoding('UTF-16LE');
|
| H A D | decode.t | 5 use Encode qw(decode_utf8 FB_CROAK find_encoding decode); 28 my $latin1 = find_encoding('latin1');
|
| H A D | fallback.t | 52 my $ascii = find_encoding('ascii'); 53 my $latin1 = find_encoding('latin1'); 54 my $utf8 = find_encoding('utf8');
|
| H A D | rt85489.t | 25 my $ascii = Encode::find_encoding("ascii");
|
| H A D | Unicode.t | 24 use Encode qw(encode decode find_encoding); 183 my $encoding = find_encoding("UTF16-BE");
|
| H A D | utf8strict.t | 113 my $d = find_encoding("utf-8-strict");
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/lib/Encode/ |
| H A D | Guess.pm | 9 our %DEF_SUSPECTS = map { $_ => find_encoding($_) } qw(ascii utf8); 44 my $e = find_encoding($c) or die "Unknown encoding: $c"; 76 return find_encoding('utf8') unless $NoUTFAutoGuess; 84 return find_encoding('utf8') 87 return find_encoding('UTF-32') 90 return find_encoding('UTF-16') 115 return find_encoding($utf); 120 my $e = find_encoding($c) or die "Unknown encoding: $c";
|
| H A D | Encoder.pm | 24 my $obj = find_encoding($encname) 51 my $obj = find_encoding($encname) 64 my $obj = find_encoding($encname) 81 my $obj = find_encoding($myname)
|
| H A D | Alias.pm | 45 ( ref($new) ) ? $new : Encode::find_encoding($new); 60 $Alias{$find} = Encode::find_encoding($name);
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/ |
| H A D | Encode.pm | 24 encodings find_encoding find_mime_encoding clone_encoding 93 my $obj = ref( $_[0] ) ? $_[0] : find_encoding( $_[0] ); 151 sub find_encoding($;$) { subroutine 159 return find_encoding( $name, $skip_external ); 163 my $obj = find_encoding(shift); 169 my $obj = find_encoding(shift); 389 =head3 find_encoding 391 [$obj =] find_encoding(ENCODING) 402 $obj = find_encoding($name); 411 my $enc = find_encoding("is [all...] |
| H A D | encoding.pm | 65 find_encoding( 140 my $enc = find_encoding($name); 196 unless ( defined find_encoding( $arg{$h} ) ) {
|
| H A D | Encode.xs | 531 find_encoding(pTHX_ SV *enc) in find_encoding() function 991 obj = find_encoding(aTHX_ encoding); 1013 obj = find_encoding(aTHX_ encoding); 1067 from_obj = find_encoding(aTHX_ from); 1070 to_obj = find_encoding(aTHX_ to);
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/lib/Encode/CN/ |
| H A D | HZ.pm | 26 my $GB = Encode::find_encoding('gb2312-raw'); 72 my $GB = Encode::find_encoding('gb2312-raw'); 141 my $GB = Encode::find_encoding('gb2312-raw');
|
| /openbsd-src/gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding/ |
| H A D | warnings.pm | 180 my $ascii = Encode::find_encoding('us-ascii') or return; 181 my $latin1 = Encode::find_encoding('iso-8859-1') or return;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/ |
| H A D | Locale.pm | 120 unless (Encode::find_encoding($ENCODING_LOCALE)) { 129 $foundit++ if Encode::find_encoding($ENCODING_LOCALE);
|
| /openbsd-src/gnu/usr.bin/perl/lib/DBM_Filter/ |
| H A D | encode.pm | 22 my $encoding = Encode::find_encoding($encoding_name) ;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/ |
| H A D | TranscodeSmart.pm | 28 my $e = Encode::find_encoding($_[1]);
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/lib/Encode/Unicode/ |
| H A D | UTF7.pm | 26 my $e_utf16 = find_encoding("UTF-16BE");
|