Home
last modified time | relevance | path

Searched refs:has_utf8 (Results 1 – 3 of 3) sorted by relevance

/openbsd/gnu/usr.bin/perl/dist/Carp/t/
H A Dvivify_stash.t6 our $has_utf8; BEGIN { $has_utf8 = exists($::{"utf8::"}); }
13 print !(exists($::{"utf8::"}) xor $has_utf8) ? "" : "not ", "ok 1 # used utf8\n";
/openbsd/gnu/usr.bin/perl/
H A Dsv.c12204 bool has_utf8 = DO_UTF8(sv); /* has the result utf8? */ local
12205 const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
12330 if (has_utf8 && !pat_utf8) {
12468 else if (has_utf8) {
13406 if (SvUTF8(PL_numeric_radix_sv) && !has_utf8) {
13408 has_utf8 = TRUE;
13673 sv_setuv_mg(argsv, has_utf8
13720 if (is_utf8 != has_utf8) {
13805 has_utf8 = TRUE;
13806 if (has_utf8)
/openbsd/usr.bin/awk/
H A Drun.c1063 static int has_utf8(char *s) /* return 1 if s contains any utf-8 (2 bytes or more) character */ in has_utf8() function
1209 if (!has_utf8(t) || strcmp(fmt,"%s") == 0) { in format()