Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 25 of 33) sorted by relevance

12

/PHP-7.3/ext/standard/tests/file/
H A Dglob_error_002-win32.phpt2 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 D001.phpt2 Simple If condition test
/PHP-7.3/Zend/
H A Dzend_portability.h322 # 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 Dzend_vm_gen.php717 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 Dbug26281.phpt2 Bug #26281 (switch() crash when condition is a string offset)
H A Dbug69758.phpt16 // Add condition and then pop off straight away.
H A Dbug38287.phpt12 // error occurs here: execution should never get inside the if condition because $not_there is NULL
/PHP-7.3/ext/mbstring/tests/
H A Dskipif.inc2 // This script prints "skip" if condition does not meet.
/PHP-7.3/ext/spl/tests/
H A DSplQueue_setIteratorMode_param_lifo.phpt2 SplQueue setIteratorMode to LIFO produces fail condition in try/catch
/PHP-7.3/Zend/tests/type_declarations/
H A Dscalar_constant_defaults_error.phpt2 Scalar type - default via constants - error condition
/PHP-7.3/ext/json/
H A Djson_scanner.re36 #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 Djson_scanner.c37 #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 Dbug71514.phpt2 Bug #71514 (Bad dba_replace condition because of wrong API usage)
/PHP-7.3/ext/session/tests/
H A Dskipif.inc2 // This script prints "skip" if condition does not meet.
/PHP-7.3/ext/gd/tests/
H A Dlibgd00086_extern.phpt16 gd-png error: setjmp returns error condition 1
H A Dbug39780_extern.phpt16 gd-png error: setjmp returns error condition 2
H A Dlibgd00086.phpt17 Warning: imagecreatefrompng(): gd-png error: setjmp returns error condition in %s on line %d
H A Dbug39780.phpt17 Warning: imagecreatefrompng(): gd-png error: setjmp returns error condition in %s on line %d
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h353 #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 Dpcre2_match.c592 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 Dbug66112.phpt2 Bug #66112 (Use after free condition in SOAP extension)
/PHP-7.3/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c2053 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 DsljitLir.h827 #define SLJIT_SET(condition) ((condition) << 10) argument
/PHP-7.3/ext/standard/tests/strings/
H A Dsetlocale_error.phpt2 Test setlocale() function : error condition
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_bp.c925 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()

Completed in 84 milliseconds

12