Home
last modified time | relevance | path

Searched refs:ctype_space (Results 1 – 17 of 17) sorted by relevance

/PHP-8.1/ext/ctype/tests/
H A Dctype_space_variation1.phpt2 Test ctype_space() function : usage variations - different data types as $c argument
8 * Pass different data types as $c argument to ctype_space() to test behaviour
11 echo "*** Testing ctype_space() : usage variations ***\n";
84 // loop through each element of $inputs to check the behavior of ctype_space()
88 var_dump( ctype_space($input) );
97 *** Testing ctype_space() : usage variations ***
101 Deprecated: ctype_space(): Argument of type int will be interpreted as string in the future in %s o…
106 Deprecated: ctype_space(): Argument of type int will be interpreted as string in the future in %s o…
111 Deprecated: ctype_space(): Argument of type int will be interpreted as string in the future in %s o…
116 Deprecated: ctype_space(): Argument of type int will be interpreted as string in the future in %s o…
[all …]
H A Dctype_space_basic.phpt2 Test ctype_space() function : basic functionality
7 echo "*** Testing ctype_space() : basic functionality ***\n";
12 var_dump(ctype_space($c1));
15 var_dump(ctype_space($c2));
20 *** Testing ctype_space() : basic functionality ***
H A Dctype_space_variation2.phpt2 Test ctype_space() function : usage variations - different integers
8 * Pass different integers to ctype_space() to test which character codes are considered
12 echo "*** Testing ctype_space() : usage variations ***\n";
17 if (ctype_space(chr($c))) {
24 *** Testing ctype_space() : usage variations ***
H A Dctype_space_variation3.phpt2 Test ctype_space() function : usage variations - different strings
8 * Pass strings containing different character types to ctype_space() to test
12 echo "*** Testing ctype_space() : usage variations ***\n";
48 var_dump( ctype_space($value) );
55 *** Testing ctype_space() : usage variations ***
H A D001.phpt28 ctype_test_001("ctype_space");
41 ctype_space 6
H A D002.phpt32 ctype_test_002("ctype_space");
47 ctype_space 6 6 0
H A Dbug25745.phpt12 "ctype_space", "ctype_upper", "ctype_xdigit"
/PHP-8.1/ext/ctype/
H A Dctype_arginfo.h37 ZEND_FUNCTION(ctype_space);
51 ZEND_FE(ctype_space, arginfo_ctype_space)
H A Dctype.stub.php21 function ctype_space(mixed $text): bool {} function
H A Dctype.c166 PHP_FUNCTION(ctype_space) in PHP_FUNCTION() argument
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c141 if (isspace(i)) x += ctype_space;
H A Dpcre2_match.c2270 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
2282 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
3026 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match()
3043 if (cc >= 128 || (mb->ctypes[cc] & ctype_space) == 0) in match()
3288 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match()
3701 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) in match()
3706 if (fc >= 256 || (mb->ctypes[fc] & ctype_space) == 0) in match()
3845 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
3850 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
4347 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) break; in match()
[all …]
H A Dpcre2_auto_possess.c981 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
985 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
H A Dpcre2_dfa_match.c276 ctype_space, ctype_space,
284 ctype_space, 0,
H A Dpcre2_internal.h580 #define ctype_space 0x01 macro
H A Dpcre2_compile.c2687 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex()
2787 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
H A Dpcre2_jit_compile.c8537 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()

Completed in 128 milliseconds