Home
last modified time | relevance | path

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

1234

/PHP-8.0/ext/ffi/
H A Dffi.c2977 if (old->kind != type->kind in zend_ffi_same_types()
6666 val->kind = MAX(val->kind, op2->kind); \
6673 val->kind = op2->kind; \
6686 val->kind = MAX(val->kind, op2->kind); \
6689 val->kind = op2->kind; \
6702 val->kind = MAX(val->kind, op2->kind); \
6711 val->kind = op2->kind; \
6717 val->kind = op2->kind; \
6732 val->kind = MAX(val->kind, op2->kind); \
6751 val->kind = MAX(val->kind, op2->kind); \
[all …]
/PHP-8.0/Zend/
H A Dzend_ast.h183 zend_ast_kind kind; member
192 zend_ast_kind kind; member
199 zend_ast_kind kind; member
240 zend_ast *ast = zend_ast_create_0(kind); in zend_ast_create_ex_0()
245 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1()
305 return (ast->kind >> ZEND_AST_SPECIAL_SHIFT) & 1; in zend_ast_is_special()
309 return (ast->kind >> ZEND_AST_IS_LIST_SHIFT) & 1; in zend_ast_is_list()
317 ZEND_ASSERT(ast->kind == ZEND_AST_ZVAL); in zend_ast_get_zval()
327 ZEND_ASSERT(ast->kind == ZEND_AST_CONSTANT); in zend_ast_get_constant_name()
334 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; in zend_ast_get_num_children()
[all …]
H A Dzend_ast.c122 ast->kind = kind; in zend_ast_create_decl()
145 ast->kind = kind; in zend_ast_create_0()
158 ast->kind = kind; in zend_ast_create_1()
177 ast->kind = kind; in zend_ast_create_2()
199 ast->kind = kind; in zend_ast_create_3()
224 ast->kind = kind; in zend_ast_create_4()
252 ast->kind = kind; in zend_ast_create_5()
283 list->kind = kind; in zend_ast_create_list_0()
298 list->kind = kind; in zend_ast_create_list_1()
322 list->kind = kind; in zend_ast_create_list_2()
[all …]
H A Dzend_vm_gen.php826 switch($kind) {
1086 switch($kind) {
1179 switch($kind) {
1217 switch ($kind) {
1528 switch ($kind) {
1778 switch ($kind) {
2073 if ($kind != ZEND_VM_KIND_CALL && $kind != ZEND_VM_KIND_HYBRID) {
2111 if ($kind == ZEND_VM_KIND_GOTO || $kind == ZEND_VM_KIND_HYBRID) {
2140 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) {
2186 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) {
[all …]
H A Dzend_compile.c2300 || ast->kind == ZEND_AST_ISSET || ast->kind == ZEND_AST_EMPTY; in zend_short_circuiting_commit()
2489 return ast->kind == ZEND_AST_STMT_LIST || ast->kind == ZEND_AST_LABEL in zend_is_unticked_stmt()
2491 || ast->kind == ZEND_AST_USE_TRAIT || ast->kind == ZEND_AST_METHOD; in zend_is_unticked_stmt()
9194 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr()
9195 || kind == ZEND_AST_GREATER || kind == ZEND_AST_GREATER_EQUAL in zend_is_allowed_in_const_expr()
9196 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr()
9198 || kind == ZEND_AST_UNARY_PLUS || kind == ZEND_AST_UNARY_MINUS in zend_is_allowed_in_const_expr()
9199 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr()
9200 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr()
9202 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr()
[all …]
H A Dzend_opcode.c620 zend_op_array *op_array, uint32_t var_num, uint32_t kind, uint32_t start, uint32_t end) { in emit_live_range_raw() argument
630 range->var |= kind; in emit_live_range_raw()
640 uint32_t kind; in emit_live_range() local
661 kind = ZEND_LIVE_SILENCE; in emit_live_range()
665 kind = ZEND_LIVE_ROPE; in emit_live_range()
671 kind = ZEND_LIVE_LOOP; in emit_live_range()
721 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
739 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
754 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
772 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
[all …]
/PHP-8.0/ext/tokenizer/
H A Dtokenizer.stub.php16 /** @param int|string|array $kind */
17 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()
H A Dtokenizer_arginfo.h23 ZEND_ARG_INFO(0, kind)
/PHP-8.0/ext/pdo_dblib/tests/
H A Dtimeout.phpt29 // expect some kind of error code
43 // expect some kind of error code
55 // expect some kind of error code
67 // expect some kind of error code
/PHP-8.0/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.0/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.0/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.0/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt34 $kind = $constructor === 'imagecreate' ? 'palette' : 'truecolor';
35 echo "$kind gamma ($in, $out): ";
/PHP-8.0/ext/pdo/
H A Dphp_pdo_int.h59 int pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
/PHP-8.0/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.0/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()
2233 type->kind = tmp->kind; in schema_type_fixup()
2321 switch (tmp->kind) { in delete_model()
[all …]
/PHP-8.0/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 108 milliseconds

1234