Searched defs:UTF (Results 1 - 3 of 3) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | regexec.c | 92 #define UTF ((PL_reg_flags & RF_utf8) != 0) macro 409 "UTF-8 regex...\n")); 423 "UTF-8 target...\n")); 592 /* XXXX May be hopelessly wrong for UTF... */ 1016 if (UTF) { 1079 m, (char **)0, ln, (bool)UTF)) 1091 (char **)0, ln, (bool)UTF)) 1118 m, (char **)0, ln, (bool)UTF)) 1130 (char **)0, ln, (bool)UTF)) 1714 char *s0 = UTF [all...] |
H A D | regcomp.c | 235 #define UTF (RExC_utf8 != 0) macro 242 #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv)) 243 #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b) 736 if (UTF && OP(scan) == EXACTF && STR_LEN(scan) >= 6) { 745 Unicode UTF-8 751 as Unicode calls it), an EXACTF of length six (the UTF-8 encoded byte 753 of length two (the byte length of UTF-8 encoded U+0390 or U+03B0). 760 Thanks to the design of UTF-8, there cannot be false matches: 761 A sequence of valid UTF-8 bytes cannot be a subsequence of 762 another valid sequence of UTF [all...] |
H A D | toke.c | 43 # define UTF (!IN_BYTES) macro 45 # define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || (PL_hints & HINT_UTF8)) macro 257 else if (PL_oldoldbufptr && isIDFIRST_lazy_if(PL_oldoldbufptr,UTF)) { 259 for (t = PL_oldoldbufptr; *t && (isALNUM_lazy_if(t,UTF) || *t == ':'); t++) ; 677 for (s = PL_last_uni; isALNUM_lazy_if(s,UTF) || *s == '-'; s++) ; 771 if (isIDFIRST_lazy_if(s,UTF) || 788 if (UTF && !IN_BYTES && is_utf8_string((U8*)PL_tokenbuf, len)) 1225 I32 this_utf8 = UTF; /* The source string is assumed to be UTF8 */ 1360 && (isALNUM_lazy_if(s+1,UTF) || strchr(":'{$+-", s[1]))) 1465 * escapes will be longer than any UTF [all...] |
Completed in 37 milliseconds