Home
last modified time | relevance | path

Searched refs:kind (Results 1 – 25 of 88) sorted by relevance

1234

/PHP-8.1/ext/ffi/
H A Dffi.c2998 if (old->kind != type->kind in zend_ffi_same_types()
7022 val->kind = MAX(val->kind, op2->kind); \
7029 val->kind = op2->kind; \
7042 val->kind = MAX(val->kind, op2->kind); \
7045 val->kind = op2->kind; \
7058 val->kind = MAX(val->kind, op2->kind); \
7067 val->kind = op2->kind; \
7073 val->kind = op2->kind; \
7088 val->kind = MAX(val->kind, op2->kind); \
7107 val->kind = MAX(val->kind, op2->kind); \
[all …]
/PHP-8.1/Zend/
H A Dzend_ast.h189 zend_ast_kind kind; member
198 zend_ast_kind kind; member
205 zend_ast_kind kind; member
246 zend_ast *ast = zend_ast_create_0(kind); in zend_ast_create_ex_0()
251 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1()
315 return (ast->kind >> ZEND_AST_SPECIAL_SHIFT) & 1; in zend_ast_is_special()
319 return (ast->kind >> ZEND_AST_IS_LIST_SHIFT) & 1; in zend_ast_is_list()
327 ZEND_ASSERT(ast->kind == ZEND_AST_ZVAL); in zend_ast_get_zval()
337 ZEND_ASSERT(ast->kind == ZEND_AST_CONSTANT); in zend_ast_get_constant_name()
344 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; in zend_ast_get_num_children()
[all …]
H A Dzend_vm_gen.php828 switch ($kind) {
1088 switch ($kind) {
1181 switch ($kind) {
1219 switch ($kind) {
1530 switch ($kind) {
1780 switch ($kind) {
2075 if ($kind != ZEND_VM_KIND_CALL && $kind != ZEND_VM_KIND_HYBRID) {
2107 if ($kind == ZEND_VM_KIND_GOTO || $kind == ZEND_VM_KIND_HYBRID) {
2142 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) {
2188 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) {
[all …]
H A Dzend_ast.c119 ast->kind = kind; in zend_ast_create_decl()
142 ast->kind = kind; in zend_ast_create_0()
155 ast->kind = kind; in zend_ast_create_1()
174 ast->kind = kind; in zend_ast_create_2()
196 ast->kind = kind; in zend_ast_create_3()
221 ast->kind = kind; in zend_ast_create_4()
249 ast->kind = kind; in zend_ast_create_5()
280 list->kind = kind; in zend_ast_create_list_0()
295 list->kind = kind; in zend_ast_create_list_1()
319 list->kind = kind; in zend_ast_create_list_2()
[all …]
H A Dzend_fibers.h80 void *kind; member
126 ZEND_API bool zend_fiber_init_context(zend_fiber_context *context, void *kind, zend_fiber_coroutine…
138 ZEND_ASSERT(context->kind == zend_ce_fiber && "Fiber context does not belong to a Zend fiber"); in END_EXTERN_C()
H A Dzend_compile.c2364 || ast->kind == ZEND_AST_ISSET || ast->kind == ZEND_AST_EMPTY; in zend_short_circuiting_commit()
3249 switch (kind) { in zend_compile_assign()
3419 switch (kind) { in zend_compile_compound_assign()
9083 switch (kind) { in zend_compile_assign_coalesce()
9759 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr()
9761 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr()
9764 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr()
9765 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr()
9767 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr()
9769 || kind == ZEND_AST_MAGIC_CONST || kind == ZEND_AST_COALESCE in zend_is_allowed_in_const_expr()
[all …]
H A Dzend_opcode.c465 ZEND_ASSERT(Z_ASTVAL(c->value)->kind == ZEND_AST_CONST_ENUM_INIT); in destroy_zend_class()
695 range->var |= kind; in emit_live_range_raw()
705 uint32_t kind; in emit_live_range() local
726 kind = ZEND_LIVE_SILENCE; in emit_live_range()
730 kind = ZEND_LIVE_ROPE; in emit_live_range()
736 kind = ZEND_LIVE_LOOP; in emit_live_range()
786 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
804 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
819 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
837 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
[all …]
/PHP-8.1/ext/tokenizer/
H A Dtokenizer.stub.php21 /** @param int|string|array $kind */
22 public function is($kind): bool {} argument
H A Dtokenizer.c148 zval *kind; in PHP_METHOD() local
151 Z_PARAM_ZVAL(kind) in PHP_METHOD()
154 if (Z_TYPE_P(kind) == IS_LONG) { in PHP_METHOD()
160 RETURN_BOOL(Z_LVAL_P(id_zval) == Z_LVAL_P(kind)); in PHP_METHOD()
161 } else if (Z_TYPE_P(kind) == IS_STRING) { in PHP_METHOD()
167 RETURN_BOOL(zend_string_equals(text, Z_STR_P(kind))); in PHP_METHOD()
168 } else if (Z_TYPE_P(kind) == IS_ARRAY) { in PHP_METHOD()
171 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(kind), entry) { in PHP_METHOD()
200 …nd_argument_type_error(1, "must be of type string|int|array, %s given", zend_zval_type_name(kind)); in PHP_METHOD()
/PHP-8.1/ext/pdo_dblib/tests/
H A Dtimeout.phpt24 // expect some kind of error code
38 // expect some kind of error code
50 // expect some kind of error code
62 // expect some kind of error code
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dutil.inc3 function get_active_cp($kind = "")
11 return sapi_windows_cp_get($kind);
47 function skip_if_wrong_cp($cp, $kind = "")
49 if (get_active_cp($kind) != $cp) {
/PHP-8.1/Zend/tests/type_declarations/mixed/validation/
H A Dmixed_parameter_weak_success.phpt2 Test that the mixed parameter type accepts any kind of arguments in weak mode
H A Dmixed_parameter_strict_success.phpt2 Test that the mixed parameter type accepts any kind of arguments in strict mode
H A Dmixed_return_weak_success.phpt2 Test that the mixed return type is compatible with any kind of return value in weak mode
H A Dmixed_return_strict_success.phpt2 Test that the mixed return type is compatible with any kind of return value in strict mode
H A Dmixed_property_weak_success.phpt2 Test that the mixed property type accepts any kind of value in weak mode
H A Dmixed_property_strict_success.phpt2 Test that the mixed property type accepts any kind of value in strict mode
/PHP-8.1/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt32 $kind = $constructor === 'imagecreate' ? 'palette' : 'truecolor';
33 echo "$kind gamma ($in, $out): ";
/PHP-8.1/ext/date/tests/
H A DDateTime_data-absolute.inc5 * in a userland package. Please be so kind as to leave them.
H A DDateTime_data-massive.inc5 * in a userland package. Please be so kind as to leave them.
/PHP-8.1/ext/pdo/
H A Dphp_pdo_int.h59 bool pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
/PHP-8.1/ext/tokenizer/tests/
H A DPhpToken_methods.phpt113 PhpToken::is(): Argument #1 ($kind) must be of type string|int|array, float given
114 PhpToken::is(): Argument #1 ($kind) must only have elements of type string|int, float given
/PHP-8.1/ext/soap/
H A Dphp_sdl.h163 sdlContentKind kind; member
197 sdlTypeKind kind; member
H A Dphp_schema.c319 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType()
350 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType()
380 cur_type->kind = XSD_TYPEKIND_LIST; in schema_simpleType()
1018 newModel->kind = XSD_CONTENT_ALL; in schema_all()
1167 newModel->kind = XSD_CONTENT_ALL; in schema_group()
1296 newModel->kind = XSD_CONTENT_ANY; in schema_any()
2182 switch (model->kind) { in schema_content_model_fixup()
2205 model->kind = XSD_CONTENT_ALL; in schema_content_model_fixup()
2234 type->kind = tmp->kind; in schema_type_fixup()
2328 switch (tmp->kind) { in delete_model()
[all …]
/PHP-8.1/ext/json/tests/
H A Djson_exceptions_error_clearing.phpt8 // here we cause a different kind of error to the following errors, so that

Completed in 163 milliseconds

1234