/PHP-7.0/Zend/ |
H A D | zend_ast.h | 155 zend_ast_kind kind; /* Type of the node (ZEND_AST_* enum constant) */ member 163 zend_ast_kind kind; member 172 zend_ast_kind kind; member 179 zend_ast_kind kind; member 196 ZEND_API zend_ast *zend_ast_create_ex(zend_ast_kind kind, zend_ast_attr attr, ...); 197 ZEND_API zend_ast *zend_ast_create(zend_ast_kind kind, ...); 200 zend_ast_kind kind, uint32_t flags, uint32_t start_lineno, zend_string *doc_comment, 218 return (ast->kind >> ZEND_AST_IS_LIST_SHIFT) & 1; in zend_ast_is_list() 226 ZEND_ASSERT(ast->kind == ZEND_AST_ZVAL); in zend_ast_get_zval() 237 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; in zend_ast_get_num_children() [all …]
|
H A D | zend_vm_gen.php | 576 switch($kind) { 692 switch($kind) { 727 switch($kind) { 855 switch ($kind) { 873 switch ($kind) { 885 switch ($kind) { 901 switch ($kind) { 995 switch ($kind) { 1031 switch ($kind) { 1238 switch ($kind) { [all …]
|
H A D | zend_ast.c | 82 ast->kind = kind; in zend_ast_create_decl() 103 ast->kind = kind; in zend_ast_create_from_va_list() 139 va_start(va, kind); in zend_ast_create() 152 list->kind = kind; in zend_ast_create_list() 160 va_start(va, kind); in zend_ast_create_list() 236 switch (ast->kind) { in zend_ast_evaluate() 472 new->kind = list->kind; in zend_ast_copy() 482 new->kind = ast->kind; in zend_ast_copy() 496 switch (ast->kind) { in zend_ast_destroy_ex() 847 switch (ast->kind) { in zend_ast_export_stmt() [all …]
|
H A D | zend_compile.c | 2100 return ast->kind == ZEND_AST_VAR || ast->kind == ZEND_AST_DIM in zend_is_variable() 2101 || ast->kind == ZEND_AST_PROP || ast->kind == ZEND_AST_STATIC_PROP in zend_is_variable() 2125 while (ast->kind == ZEND_AST_DIM || ast->kind == ZEND_AST_PROP) { in zend_can_write_to_variable() 6898 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr() 6899 || kind == ZEND_AST_GREATER || kind == ZEND_AST_GREATER_EQUAL in zend_is_allowed_in_const_expr() 6900 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr() 6902 || kind == ZEND_AST_UNARY_PLUS || kind == ZEND_AST_UNARY_MINUS in zend_is_allowed_in_const_expr() 6903 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr() 6904 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr() 6905 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr() [all …]
|
H A D | README.ZEND_VM | 94 zend_vm_gen.php can produce different kind of executors. You can select 95 different opcode threading model using --with-vm-kind=CALL|SWITCH|GOTO. You can 102 $ php zend_vm_gen.php --with-vm-kind=CALL
|
/PHP-7.0/ext/opcache/Optimizer/ |
H A D | compact_literals.c | 63 #define LITERAL_FLAGS(kind, slots, related) \ argument 64 ((kind) | ((slots) << LITERAL_NUM_SLOTS_SHIFT) | (related)) 66 #define LITERAL_INFO(n, kind, merge, slots, related) do { \ argument 70 #define LITERAL_INFO_CLASS(n, kind, merge, slots, related, _num) do { \ argument 75 #define LITERAL_INFO_OBJ(n, kind, merge, slots, related, _num) do { \ argument 84 uint32_t kind, in optimizer_literal_obj_info() argument 95 LITERAL_INFO_OBJ(constant, kind, 1, slots, related, op_array->this_var); in optimizer_literal_obj_info() 97 LITERAL_INFO(constant, kind, 0, slots, related); in optimizer_literal_obj_info() 105 uint32_t kind, in optimizer_literal_class_info() argument 111 LITERAL_INFO_CLASS(constant, kind, 1, slots, related, op.constant); in optimizer_literal_class_info() [all …]
|
/PHP-7.0/ext/pdo_dblib/tests/ |
H A D | timeout.phpt | 28 // expect some kind of error code 41 // expect some kind of error code 53 // expect some kind of error code 65 // expect some kind of error code
|
/PHP-7.0/ext/date/tests/ |
H A D | DateTime_data-absolute.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-massive.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-dates.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-february.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-spring-type2-type3.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-spring-type3-type2.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-spring-type3-type3.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-spring-type2-type2.inc | 5 * in a userland package. Please be so kind as to leave them.
|
/PHP-7.0/ext/pdo/ |
H A D | php_pdo_int.h | 63 int pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
|
H A D | pdo_dbh.c | 1276 int pdo_hash_methods(pdo_dbh_object_t *dbh_obj, int kind) in pdo_hash_methods() argument 1287 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods() 1292 if (!(dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent))) { in pdo_hash_methods() 1295 zend_hash_init_ex(dbh->cls_methods[kind], 8, NULL, in pdo_hash_methods() 1338 zend_hash_str_add_mem(dbh->cls_methods[kind], lc_name, namelen, &func, sizeof(func)); in pdo_hash_methods()
|
H A D | php_pdo_driver.h | 296 typedef const zend_function_entry *(*pdo_dbh_get_driver_methods_func)(pdo_dbh_t *dbh, int kind);
|
/PHP-7.0/ext/soap/ |
H A D | php_sdl.h | 166 sdlContentKind kind; member 200 sdlTypeKind kind; member
|
H A D | php_schema.c | 322 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType() 353 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType() 383 cur_type->kind = XSD_TYPEKIND_LIST; in schema_simpleType() 1021 newModel->kind = XSD_CONTENT_ALL; in schema_all() 1170 newModel->kind = XSD_CONTENT_ALL; in schema_group() 1299 newModel->kind = XSD_CONTENT_ANY; in schema_any() 2186 switch (model->kind) { in schema_content_model_fixup() 2209 model->kind = XSD_CONTENT_ALL; in schema_content_model_fixup() 2237 type->kind = tmp->kind; in schema_type_fixup() 2325 switch (tmp->kind) { in delete_model() [all …]
|
H A D | php_encoding.c | 1327 switch (model->kind) { in model_to_zval_object() 1403 if (tmp->kind == XSD_CONTENT_ANY) { in model_to_zval_object() 1445 if (sdlType->kind == XSD_TYPEKIND_RESTRICTION && in to_zval_object_ex() 1452 enc->details.sdl_type->kind != XSD_TYPEKIND_LIST && in to_zval_object_ex() 1476 } else if (sdlType->kind == XSD_TYPEKIND_EXTENSION && in to_zval_object_ex() 1634 switch (model->kind) { in model_to_xml_object() 1792 switch (model->kind) { in model_array_element() 1844 if (sdlType->kind == XSD_TYPEKIND_RESTRICTION && in to_xml_object() 1870 } else if (sdlType->kind == XSD_TYPEKIND_EXTENSION && in to_xml_object() 3215 switch (type->kind) { in sdl_guess_convert_zval() [all …]
|
/PHP-7.0/ext/opcache/ |
H A D | zend_accelerator_util_funcs.c | 192 if (ast->kind == ZEND_AST_ZVAL) { in zend_ast_clone() 194 copy->kind = ZEND_AST_ZVAL; in zend_ast_clone() 202 copy->kind = list->kind; in zend_ast_clone() 216 copy->kind = ast->kind; in zend_ast_clone()
|
H A D | zend_persist_calc.c | 99 if (ast->kind == ZEND_AST_ZVAL) { in zend_persist_ast_calc()
|
/PHP-7.0/ext/com_dotnet/ |
H A D | com_handlers.c | 289 DESCKIND kind; in com_method_get() local 299 if (SUCCEEDED(ITypeComp_Bind(comp, olename, lhash, INVOKE_FUNC, &TI, &kind, &bindptr))) { in com_method_get() 300 switch (kind) { in com_method_get()
|
/PHP-7.0/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 699 static const zend_function_entry *get_driver_methods(pdo_dbh_t *dbh, int kind) in get_driver_methods() argument 701 switch (kind) { in get_driver_methods()
|