/PHP-7.3/ext/standard/tests/file/ |
H A D | glob_error_002-win32.phpt | 2 Test glob() function: error condition - pattern too long. 16 echo "*** Testing glob() : error condition - pattern too long. ***\n"; 23 *** Testing glob() : error condition - pattern too long. ***
|
/PHP-7.3/tests/lang/ |
H A D | 001.phpt | 2 Simple If condition test
|
/PHP-7.3/Zend/ |
H A D | zend_portability.h | 322 # define EXPECTED(condition) __builtin_expect(!!(condition), 1) argument 323 # define UNEXPECTED(condition) __builtin_expect(!!(condition), 0) argument 325 # define EXPECTED(condition) (condition) argument 326 # define UNEXPECTED(condition) (condition) argument
|
H A D | zend_vm_gen.php | 717 function format_condition($condition) { argument 718 if ($condition === "") { 722 if ($condition[0] === "(" && substr($condition, -1) === ")") { 723 return $condition; 726 return "(".$condition.")"; 2404 $condition = $m[3]; 2417 $opcodes[$orig_code]['type_spec'][$code] = $condition; 2881 foreach($dsc['type_spec'] as $code => $condition) { 2882 $condition = format_condition($condition); 2884 out($f, "\t\t\tif $condition {\n"); [all …]
|
/PHP-7.3/Zend/tests/ |
H A D | bug26281.phpt | 2 Bug #26281 (switch() crash when condition is a string offset)
|
H A D | bug69758.phpt | 16 // Add condition and then pop off straight away.
|
H A D | bug38287.phpt | 12 // error occurs here: execution should never get inside the if condition because $not_there is NULL
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | skipif.inc | 2 // This script prints "skip" if condition does not meet.
|
/PHP-7.3/ext/spl/tests/ |
H A D | SplQueue_setIteratorMode_param_lifo.phpt | 2 SplQueue setIteratorMode to LIFO produces fail condition in try/catch
|
/PHP-7.3/Zend/tests/type_declarations/ |
H A D | scalar_constant_defaults_error.phpt | 2 Scalar type - default via constants - error condition
|
/PHP-7.3/ext/json/ |
H A D | json_scanner.re | 36 #define PHP_JSON_CONDITION_SET(condition) YYSETCONDITION(yyc##condition) 37 #define PHP_JSON_CONDITION_GOTO(condition) goto yyc_##condition 38 #define PHP_JSON_CONDITION_SET_AND_GOTO(condition) \ 39 PHP_JSON_CONDITION_SET(condition); \ 40 PHP_JSON_CONDITION_GOTO(condition)
|
H A D | json_scanner.c | 37 #define PHP_JSON_CONDITION_SET(condition) YYSETCONDITION(yyc##condition) argument 38 #define PHP_JSON_CONDITION_GOTO(condition) goto yyc_##condition argument 39 #define PHP_JSON_CONDITION_SET_AND_GOTO(condition) \ argument 40 PHP_JSON_CONDITION_SET(condition); \ 41 PHP_JSON_CONDITION_GOTO(condition)
|
/PHP-7.3/ext/dba/tests/ |
H A D | bug71514.phpt | 2 Bug #71514 (Bad dba_replace condition because of wrong API usage)
|
/PHP-7.3/ext/session/tests/ |
H A D | skipif.inc | 2 // This script prints "skip" if condition does not meet.
|
/PHP-7.3/ext/gd/tests/ |
H A D | libgd00086_extern.phpt | 16 gd-png error: setjmp returns error condition 1
|
H A D | bug39780_extern.phpt | 16 gd-png error: setjmp returns error condition 2
|
H A D | libgd00086.phpt | 17 Warning: imagecreatefrompng(): gd-png error: setjmp returns error condition in %s on line %d
|
H A D | bug39780.phpt | 17 Warning: imagecreatefrompng(): gd-png error: setjmp returns error condition in %s on line %d
|
/PHP-7.3/ext/pcre/pcre2lib/ |
H A D | pcre2_intmodedep.h | 353 #define ACROSSCHAR(condition, eptr, action) \ argument 354 while((condition) && ((*eptr) & 0xc0u) == 0x80u) action 459 #define ACROSSCHAR(condition, eptr, action) \ argument 460 if ((condition) && ((*eptr) & 0xfc00u) == 0xdc00u) action 534 #define ACROSSCHAR(condition, eptr, action) do { } while (0) argument
|
H A D | pcre2_match.c | 592 BOOL condition; /* Used in conditional groups */ in match() local 5255 condition = FALSE; in match() 5274 condition = number == Fcurrent_recurse; in match() 5275 if (condition) break; in match() 5294 if (condition) break; in match() 5305 condition = TRUE; in match() 5336 condition = Lpositive; /* TRUE for positive assertion */ in match() 5346 condition = !Lpositive; /* TRUE for negative assertion */ in match() 5354 condition = !Lpositive; in match() 5366 if (condition) in match() [all …]
|
/PHP-7.3/ext/soap/tests/bugs/ |
H A D | bug66112.phpt | 2 Bug #66112 (Use after free condition in SOAP extension)
|
/PHP-7.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitLir.c | 2053 condition = type & 0xff; in sljit_emit_cmp() 2055 if ((condition == SLJIT_EQUAL || condition == SLJIT_NOT_EQUAL)) { in sljit_emit_cmp() 2069 switch (condition) { in sljit_emit_cmp() 2071 condition = SLJIT_GREATER; in sljit_emit_cmp() 2074 condition = SLJIT_LESS_EQUAL; in sljit_emit_cmp() 2077 condition = SLJIT_LESS; in sljit_emit_cmp() 2080 condition = SLJIT_GREATER_EQUAL; in sljit_emit_cmp() 2083 condition = SLJIT_SIG_GREATER; in sljit_emit_cmp() 2086 condition = SLJIT_SIG_LESS_EQUAL; in sljit_emit_cmp() 2089 condition = SLJIT_SIG_LESS; in sljit_emit_cmp() [all …]
|
H A D | sljitLir.h | 827 #define SLJIT_SET(condition) ((condition) << 10) argument
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | setlocale_error.phpt | 2 Test setlocale() function : error condition
|
/PHP-7.3/sapi/phpdbg/ |
H A D | phpdbg_bp.c | 925 phpdbg_param_t *condition; in phpdbg_set_breakpoint_at() local 929 condition = param->next; in phpdbg_set_breakpoint_at() 930 hash = zend_inline_hash_func(condition->str, condition->len); in phpdbg_set_breakpoint_at() 933 phpdbg_create_conditional_break(&new_break, param, condition->str, condition->len, hash); in phpdbg_set_breakpoint_at() 935 …e=\"exists\" arg=\"%s\"", "Conditional break %s exists at the specified location", condition->str); in phpdbg_set_breakpoint_at()
|