Home
last modified time | relevance | path

Searched refs:expr (Results 1 – 25 of 52) sorted by relevance

123

/PHP-8.2/Zend/
H A Dzend_language_parser.y1141 | expr T_BOOLEAN_OR expr
1143 | expr T_BOOLEAN_AND expr
1145 | expr T_LOGICAL_OR expr
1147 | expr T_LOGICAL_AND expr
1172 | expr T_IS_EQUAL expr
1176 | expr '<' expr
1180 | expr '>' expr
1184 | expr T_SPACESHIP expr
1193 | expr '?' expr ':' expr
1195 | expr '?' ':' expr
[all …]
H A Dzend_ini_parser.y310 …ALSE NULL_NULL cfg_var_ref constant_literal constant_string encapsed_list expr option_offset secti…
357 expr { $$ = $1; }
393 expr:
395 | expr '|' expr { zend_ini_do_op('|', &$$, &$1, &$3); }
396 | expr '&' expr { zend_ini_do_op('&', &$$, &$1, &$3); }
397 | expr '^' expr { zend_ini_do_op('^', &$$, &$1, &$3); }
398 | '~' expr { zend_ini_do_op('~', &$$, &$2, NULL); }
399 | '!' expr { zend_ini_do_op('!', &$$, &$2, NULL); }
400 | '(' expr ')' { $$ = $2; }
H A Dzend.c387 if (Z_TYPE_P(expr) == IS_STRING) { in zend_make_printable_zval()
413 switch (Z_TYPE_P(expr)) { in zend_print_flat_zval_r_to_buf()
430 zend_string *class_name = Z_OBJ_HANDLER_P(expr, get_class_name)(Z_OBJ_P(expr)); in zend_print_flat_zval_r_to_buf()
440 properties = Z_OBJPROP_P(expr); in zend_print_flat_zval_r_to_buf()
442 GC_PROTECT_RECURSION(Z_OBJ_P(expr)); in zend_print_flat_zval_r_to_buf()
453 smart_str_append(buf, Z_STR_P(expr)); in zend_print_flat_zval_r_to_buf()
477 switch (Z_TYPE_P(expr)) { in zend_print_zval_r_to_buf()
494 zend_object *zobj = Z_OBJ_P(expr); in zend_print_zval_r_to_buf()
510 if (GC_IS_RECURSIVE(Z_OBJ_P(expr))) { in zend_print_zval_r_to_buf()
519 GC_PROTECT_RECURSION(Z_OBJ_P(expr)); in zend_print_zval_r_to_buf()
[all …]
H A Dzend.h296 ZEND_API bool zend_make_printable_zval(zval *expr, zval *expr_copy);
297 ZEND_API size_t zend_print_zval(zval *expr, int indent);
298 ZEND_API void zend_print_zval_r(zval *expr, int indent);
299 ZEND_API zend_string *zend_print_zval_r_to_str(zval *expr, int indent);
300 ZEND_API void zend_print_flat_zval_r(zval *expr);
301 void zend_print_flat_zval_r_to_buf(smart_str *str, zval *expr);
/PHP-8.2/Zend/tests/
H A Dflexible-heredoc-complex-test1.phpt25 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
27 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dflexible-heredoc-complex-test2.phpt25 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
27 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dflexible-heredoc-complex-test3.phpt25 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
27 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dflexible-heredoc-complex-test4.phpt32 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
34 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dbug61681.phpt11 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dexception_in_nested_rope.phpt17 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dtemporary_cleaning_016.phpt15 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dwarning_during_heredoc_scan_ahead.phpt17 Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in %…
H A Dconst_expr_dim_on_null_warning.phpt2 DIM on null in constant expr should emit warning
H A Dbug60613.phpt2 Bug #60613 (Segmentation fault with $cls->{expr}() syntax)
H A Dbug60611.phpt2 Bug #60611 (Segmentation fault with Cls::{expr}() syntax)
/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_arm64.lua251 local function parse_reg(expr, shift)
257 local tp = map_type[tname or expr]
263 expr = reg
290 local function parse_reg_base(expr)
291 if expr == "sp" then return 0x3e0 end
292 local base, tp = parse_reg(expr, 5)
444 local function parse_shift(expr)
451 local function parse_lslx16(expr)
461 local function parse_extend(expr)
472 local function parse_cond(expr, inv)
[all …]
H A Ddasm_x86.lua683 local n = tonumber(expr)
699 local function immexpr(expr)
708 return "iJ", sub(expr, 3)
727 return "iI", expr
731 local function dispexpr(expr)
732 local disp = expr == "" and 0 or toint(expr)
736 expr = dispt
755 local function rtexpr(expr)
770 return expr, map_reg_num[expr]
777 local expr = param
[all …]
H A Ddasm_ppc.lua1455 local function parse_gpr(expr)
1457 local tp = map_type[tname or expr]
1463 expr = reg
1470 werror("bad register name `"..expr.."'")
1473 local function parse_fpr(expr)
1479 werror("bad register name `"..expr.."'")
1482 local function parse_vr(expr)
1491 local function parse_vs(expr)
1500 local function parse_cr(expr)
1501 local r = match(expr, "^cr([0-7])$")
[all …]
H A Ddasm_mips.lua831 local function parse_gpr(expr)
832 local tname, ovreg = match(expr, "^([%w_]+):(r[1-3]?[0-9])$")
833 local tp = map_type[tname or expr]
837 werror("type `"..(tname or expr).."' needs a register override")
839 expr = reg
841 local r = match(expr, "^r([1-3]?[0-9])$")
846 werror("bad register name `"..expr.."'")
849 local function parse_fpr(expr)
850 local r = match(expr, "^f([1-3]?[0-9])$")
855 werror("bad register name `"..expr.."'")
H A Ddasm_arm.lua536 local function parse_gpr(expr)
537 local tname, ovreg = match(expr, "^([%w_]+):(r1?[0-9])$")
538 local tp = map_type[tname or expr]
544 expr = reg
546 local r = match(expr, "^r(1?[0-9])$")
551 werror("bad register name `"..expr.."'")
554 local function parse_gpr_pm(expr)
555 local pm, expr2 = match(expr, "^([+-]?)(.*)$")
559 local function parse_vr(expr, tp)
560 local t, r = match(expr, "^([sd])([0-9]+)$")
[all …]
/PHP-8.2/Zend/tests/constexpr/
H A Dnew_invalid_operation_in_arg.phpt2 Invalid operation in new arg in const expr
H A Dnew_arg_unpack.phpt2 Argument unpacking in new arguments in const expr (not yet supported)
/PHP-8.2/Zend/tests/enum/
H A Dbacked-int-const-invalid-expr.phpt2 Int enum invalid const expr
H A Dbacked-int-const-expr.phpt2 Int enum const expr
/PHP-8.2/ext/session/
H A Dmod_files.sh65 bash $0 $newpath `expr $depth - 1` $bitsperchar recurse

Completed in 73 milliseconds

123