Searched defs:utf8 (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | utf8.pm | 1 package utf8; package 3 $utf8::hint_bits = 0x00800000; 8 $^H |= $utf8::hint_bits; 13 $^H &= ~$utf8::hint_bits; 27 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code 31 use utf8; 32 no utf8; 35 $num_octets = utf8::upgrade($string); 36 $success = utf8::downgrade($string[, FAIL_OK]); 39 utf8 [all...] |
H A D | utf8_heavy.pl | 1 package utf8; package 26 ## Called from utf8.c 68 if (my $base = $utf8::Exact{$type}) { 82 if (my $base = $utf8::Canonical{$canonical}) { 209 if ($c eq 'utf8') { 213 $subobj = utf8->SWASHNEW("", $c, 0, 0, 0); 240 # NOTE: utf8.c:swash_init() assumes entries are never modified once generated. 243 # See utf8.c:Perl_swash_fetch for problems with this interface.
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/ |
H A D | utf8.pm | 1 package DBM_Filter::utf8 ; 25 =head1 DBM_Filter::utf8 34 $db->Filter_Push('utf8');
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/ |
H A D | Util.pm | 167 require utf8; 169 utf8::encode($u); # drop utf8 flag 243 # when the source file used utf-8 without the apropriate "use utf8;". 249 package utf8; package 280 utf8::encode($toencode) if ($] >= 5.008 && utf8::is_utf8($toencode));
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | princ_comp.c | 89 unsigned int utf8 = (flags & KRB5_PRINCIPAL_COMPARE_UTF8) != 0; local 121 if (utf8)
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/ |
H A D | Encode.pm | 194 utf8::encode($str); 202 return decode("utf8", $str, $check); 204 return undef unless utf8::decode($str); 228 chr(utf8::unicode_to_native(ord(substr($str,$i,1)))); 238 chr(utf8::native_to_unicode(ord(substr($str,$i,1)))); 250 utf8::upgrade($str); 260 # was in Encode::utf8 261 package Encode::utf8; 262 push @Encode::utf8::ISA, 'Encode::Encoding'; 299 $Encode::Encoding{utf8} [all...] |
/osnet-11/usr/src/cmd/ldap/common/ |
H A D | convutf8.c | 178 char *utf8; 184 utf8 = strdup(src); 185 return ( utf8 ); 652 char *utf8; local 667 utf8 = strdup(src); 668 return utf8; 704 utf8 = (char *) malloc( outLen + 1); 705 if( utf8 == NULL ) { 712 resultLen = ucnv_convert( "utf-8", ldaptool_charset, utf8, (outLen + 1), src, 716 free(utf8); [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/ |
H A D | xnu.c | 291 grub_uint8_t *utf8, grub_uint16_t *utf16, 300 prop->name = utf8; 323 grub_uint8_t *utf8; local 328 utf8 = (grub_uint8_t *) grub_strdup (name); 329 if (!utf8) 336 grub_free (utf8); 340 utf16len = grub_utf8_to_utf16 (utf16, len, utf8, len, NULL); 343 grub_free (utf8); 348 err = grub_xnu_devprop_add_property (dev, utf8, utf16, 352 grub_free (utf8); 290 grub_xnu_devprop_add_property(struct grub_xnu_devprop_device_descriptor *dev, grub_uint8_t *utf8, grub_uint16_t *utf16, int utf16len, void *data, int datalen) argument 365 grub_uint8_t *utf8; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | regcomp.c | 129 I32 utf8; /* whether the pattern is utf8 or not */ member in struct:RExC_state_t 130 I32 orig_utf8; /* whether the pattern was originally in utf8 */ 132 * where pattern must be upgraded to utf8. */ 157 #define RExC_utf8 (pRExC_state->utf8) 1793 detect such a sequence we have to convert the entire pattern to utf8 1795 on 1 byte == 1 character, but we will need to use utf8 to encode 1802 "UTF8 mismatch! Converting to utf8 for resizing and compile\n")); 3676 "+utf8::%.*s\n", (int)n, RExC_parse); 3679 "!utf8 [all...] |
H A D | util.c | 1043 I32 utf8 = 0; local 1058 utf8 = SvUTF8(msv); 1084 SvFLAGS(msg) |= utf8; 1103 SvFLAGS(ERRSV) |= utf8; 1146 I32 utf8 = 0; local 1157 utf8 = SvUTF8(msv); 1183 SvFLAGS(msg) |= utf8; 1202 SvFLAGS(ERRSV) |= utf8; 1264 I32 utf8 = 0; local 1267 utf8 1363 I32 utf8 = 0; local [all...] |
Completed in 37 milliseconds