Searched refs:ctype_space (Results 1 – 16 of 16) sorted by relevance
/PHP-7.2/ext/ctype/tests/ |
H A D | ctype_space_error.phpt | 2 Test ctype_space() function : error conditions - Incorrect number of args 7 /* Prototype : bool ctype_space(mixed $c) 13 * Pass an incorrect number of arguments to ctype_space() to test behaviour 16 echo "*** Testing ctype_space() : error conditions ***\n"; 21 echo "\n-- Testing ctype_space() function with Zero arguments --\n"; 22 var_dump( ctype_space() ); 24 //Test ctype_space with one more than the expected number of arguments 28 var_dump( ctype_space($c, $extra_arg) ); 34 *** Testing ctype_space() : error conditions *** 36 -- Testing ctype_space() function with Zero arguments -- [all …]
|
H A D | ctype_space_basic.phpt | 2 Test ctype_space() function : basic functionality 7 /* Prototype : bool ctype_space(mixed $c) 12 echo "*** Testing ctype_space() : basic functionality ***\n"; 17 var_dump(ctype_space($c1)); 20 var_dump(ctype_space($c2)); 26 *** Testing ctype_space() : basic functionality ***
|
H A D | ctype_space_variation2.phpt | 2 Test ctype_space() function : usage variations - different integers 7 /* Prototype : bool ctype_space(mixed $c) 13 * Pass different integers to ctype_space() to test which character codes are considered 17 echo "*** Testing ctype_space() : usage variations ***\n"; 22 if (ctype_space($c)) { 30 *** Testing ctype_space() : usage variations ***
|
H A D | ctype_space_variation4.phpt | 2 Test ctype_space() function : usage variations - octal and hexadecimal values 7 /* Prototype : bool ctype_space(mixed $c) 13 * Pass octal and hexadecimal values as $c to ctype_space() to test behaviour 16 echo "*** Testing ctype_space() : usage variations ***\n"; 27 var_dump(ctype_space($c)); 35 var_dump(ctype_space($c)); 42 *** 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 7 /* Prototype : bool ctype_space(mixed $c) 13 * Pass different data types as $c argument to ctype_space() to test behaviour 16 echo "*** Testing ctype_space() : usage variations ***\n"; 89 // loop through each element of $inputs to check the behavior of ctype_space() 93 var_dump( ctype_space($input) ); 103 *** Testing ctype_space() : usage variations ***
|
H A D | ctype_space_variation3.phpt | 2 Test ctype_space() function : usage variations - different strings 7 /* Prototype : bool ctype_space(mixed $c) 13 * Pass strings containing different character types to ctype_space() to test 17 echo "*** Testing ctype_space() : usage variations ***\n"; 53 var_dump( ctype_space($value) ); 61 *** 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-7.2/ext/ctype/ |
H A D | ctype.c | 43 static PHP_FUNCTION(ctype_space); 106 PHP_FE(ctype_space, arginfo_ctype_space) 248 static PHP_FUNCTION(ctype_space) in PHP_FUNCTION() argument
|
/PHP-7.2/ext/pcre/pcrelib/ |
H A D | pcre_maketables.c | 138 if (isspace(i)) x += ctype_space; in pcre_maketables()
|
H A D | dftables.c | 181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
H A D | pcre_exec.c | 2392 (md->ctypes[c] & ctype_space) != 0 in match() 2409 (md->ctypes[c] & ctype_space) == 0 in match() 4566 if (cc < 128 && (md->ctypes[cc] & ctype_space) != 0) in match() 4583 if (cc >= 128 || (md->ctypes[cc] & ctype_space) == 0) in match() 4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match() 4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match() 5238 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) in match() 5243 if (c >= 256 || (md->ctypes[c] & ctype_space) == 0) in match() 5876 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) break; in match() 5891 if (c >= 256 ||(md->ctypes[c] & ctype_space) == 0) break; in match() [all …]
|
H A D | pcre_compile.c | 3529 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 3533 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes() 4698 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch() 5723 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
|
H A D | pcre_internal.h | 2586 #define ctype_space 0x01 macro
|
H A D | pcre_jit_compile.c | 6282 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|
Completed in 103 milliseconds