Searched refs:ctype_space (Results 1 – 18 of 18) sorted by relevance
/PHP-8.0/ext/ctype/tests/ |
H A D | ctype_space_basic.phpt | 2 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 D | ctype_space_variation4.phpt | 2 Test ctype_space() function : usage variations - octal and hexadecimal values 8 * Pass octal and hexadecimal values as $c to ctype_space() to test behaviour 11 echo "*** Testing ctype_space() : usage variations ***\n"; 22 var_dump(ctype_space($c)); 30 var_dump(ctype_space($c)); 36 *** Testing ctype_space() : usage variations ***
|
H A D | ctype_space_variation2.phpt | 2 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($c)) { 24 *** Testing ctype_space() : usage variations ***
|
H A D | ctype_space_variation1.phpt | 2 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 ***
|
H A D | ctype_space_variation3.phpt | 2 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 D | 001.phpt | 25 ctype_test_001("ctype_space"); 38 ctype_space 6
|
H A D | 002.phpt | 32 ctype_test_002("ctype_space"); 47 ctype_space 6 6 0
|
H A D | bug25745.phpt | 10 "ctype_space", "ctype_upper", "ctype_xdigit"
|
/PHP-8.0/ext/ctype/ |
H A D | ctype_arginfo.h | 37 ZEND_FUNCTION(ctype_space); 51 ZEND_FE(ctype_space, arginfo_ctype_space)
|
H A D | ctype.stub.php | 21 function ctype_space(mixed $text): bool {} function
|
H A D | ctype.c | 154 PHP_FUNCTION(ctype_space) in PHP_FUNCTION() argument
|
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_maketables.c | 141 if (isspace(i)) x += ctype_space;
|
H A D | pcre2_match.c | 2268 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 2280 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() 3024 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match() 3041 if (cc >= 128 || (mb->ctypes[cc] & ctype_space) == 0) in match() 3286 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match() 3699 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) in match() 3704 if (fc >= 256 || (mb->ctypes[fc] & ctype_space) == 0) in match() 3843 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 3848 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() 4345 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) break; in match() [all …]
|
H A D | pcre2_auto_possess.c | 980 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 984 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
|
H A D | pcre2_dfa_match.c | 276 ctype_space, ctype_space, 284 ctype_space, 0,
|
H A D | pcre2_internal.h | 580 #define ctype_space 0x01 macro
|
H A D | pcre2_compile.c | 2666 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex() 2766 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
|
H A D | pcre2_jit_compile.c | 8460 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|
Completed in 148 milliseconds