Lines Matching refs:in

220 	# was in Encode::UTF_EBCDIC
260 # was in Encode::utf8
319 to fit in one document. This POD itself explains the top-level APIs
347 Traditionally, computer data has been moved around in 8-bit chunks
348 often called "bytes". These chunks are also known as "octets" in
352 numbers, pixels in an image - or just about anything.
356 byte has 256 possible values, it easily fits in Perl's much larger
365 I<character>: a character in the range 0..(2**32-1) (or more).
370 I<byte>: a character in the range 0..255
403 C<Use of uninitialized value in subroutine entry>.
408 Decodes a sequence of octets assumed to be in I<ENCODING> into Perl's
409 internal form and returns the resulting string. As in encode(),
414 For example, to convert ISO-8859-1 data to a string in Perl's internal format:
425 C<Use of uninitialized value in subroutine entry>.
430 Converts B<in-place> data between two encodings. The data in $octets
431 must be encoded as octets and not as characters in Perl's internal
440 Note that because the conversion happens in place, the data to be
443 from_to() returns the length of the converted string in octets on success, undef
461 that comprise $string are encoded in Perl's internal format and the
492 When "::" is not in the name, "Encode::" is assumed.
496 To find out in detail which encodings are supported by this package,
528 are totally identical in their functionality.
531 open my $in, "<:encoding(shiftjis)", $infile or die;
533 while(<$in>){ print $out $_; }
536 open my $in, "<", $infile or die;
538 while(<$in>){
567 in place of a malformed character. For UCM-based encodings,
584 This is handy when you have to call decode repeatedly in the case
591 # buffer may end in a partial character so we append
615 in the character repertoire of the encoding.
617 HTML/XML character reference modes are about the same, in place of
654 should provide the interface described in L<Encode::Encoding>.
662 Before the introduction of utf8 support in perl, The C<eq> operator
682 Programs should run just as fast in the new character-oriented mode
683 as in the old byte-oriented mode.
693 was born and many features documented in the book remained
715 When $octet is... The utf8 flag in $utf8 is
724 careful in such cases mentioned in B<CAVEAT> paragraphs.
726 This utf8 flag is not visible in perl scripts, exactly for the same
735 The following API uses parts of Perl's internals in the current
742 [INTERNAL] Tests whether the UTF-8 flag is turned on in the STRING.
743 If CHECK is true, also checks the data in STRING for being well-formed
750 [INTERNAL] Turns on the UTF-8 flag in STRING. The data in STRING is
758 [INTERNAL] Turns off the UTF-8 flag in STRING. Do not use frivolously.