Home
last modified time | relevance | path

Searched defs:class_name (Results 1 – 25 of 39) sorted by relevance

12

/php-src/ext/simplexml/
H A Dsimplexml.stub.php5 function simplexml_load_file(string $filename, ?string $class_name = SimpleXMLElement::class, int $…
7 function simplexml_load_string(string $data, ?string $class_name = SimpleXMLElement::class, int $op…
9 function simplexml_import_dom(object $node, ?string $class_name = SimpleXMLElement::class): ?Simple…
/php-src/Zend/
H A Dzend_list.c110 const char *class_name = get_active_class_name(&space); in zend_fetch_resource2() local
125 const char *class_name = get_active_class_name(&space); in zend_fetch_resource() local
134 const char *space, *class_name; in zend_fetch_resource_ex() local
155 const char *space, *class_name; in zend_fetch_resource2_ex() local
H A Dzend_constants.c295 ZEND_API zval *zend_get_class_constant_ex(zend_string *class_name, zend_string *constant_name, zend… in zend_get_class_constant_ex()
408 zend_string *class_name = zend_string_init_interned(name, class_name_len, 0); in zend_get_constant_ex() local
H A Dzend_execute_API.c1647 static ZEND_COLD void report_class_fetch_error(zend_string *class_name, uint32_t fetch_type) in report_class_fetch_error()
1669 zend_class_entry *zend_fetch_class(zend_string *class_name, uint32_t fetch_type) /* {{{ */ in zend_fetch_class()
1718 zend_string *class_name, uint32_t fetch_type, zend_class_entry *scope) in zend_fetch_class_with_scope()
1750 zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *key, uint32_t fetc… in zend_fetch_class_by_name()
H A Dzend_API.h148 #define ZEND_ARG_OBJ_TYPE_MASK(pass_by_ref, name, class_name, type_mask, default_value) \ argument
150 #define ZEND_ARG_VARIADIC_OBJ_TYPE_MASK(pass_by_ref, name, class_name, type_mask) \ argument
154 #define ZEND_ARG_OBJ_INFO(pass_by_ref, name, class_name, allow_null) \ argument
156 #define ZEND_ARG_OBJ_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, class_name, allow_null, default_val… argument
158 #define ZEND_ARG_VARIADIC_OBJ_INFO(pass_by_ref, name, class_name, allow_null) \ argument
172 …IN_ARG_WITH_RETURN_OBJ_INFO_EX(name, return_reference, required_num_args, class_name, allow_null) \ argument
178 #define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO(name, class_name, allow_null) \ argument
195 …GIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(name, return_reference, required_num_args, class_name, type) \ argument
279 #define INIT_CLASS_ENTRY(class_container, class_name, functions) \ argument
282 #define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \ argument
[all …]
H A Dzend_builtin_functions.c625 zend_string *class_name; in is_a_impl() local
809 const char *prop_name, *class_name; in ZEND_FUNCTION() local
1137 zend_string *class_name; in ZEND_FUNCTION() local
H A Dzend_ast.c102 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_class_const_or_name(zend_ast *class_name, zend_as… in zend_ast_create_class_const_or_name()
814 zend_string *class_name = zend_ast_get_str(class_name_ast); in zend_ast_evaluate_inner() local
836 zend_string *class_name = zend_ast_get_str(ast->child[0]); in zend_ast_evaluate_inner() local
H A Dzend.c389 const char *prop_name, *class_name; in print_hash() local
489 zend_string *class_name = Z_OBJ_HANDLER_P(expr, get_class_name)(Z_OBJ_P(expr)); in zend_print_flat_zval_r_to_buf() local
555 zend_string *class_name = Z_OBJ_HANDLER_P(expr, get_class_name)(zobj); in zend_print_zval_r_to_buf() local
H A Dzend_enum.c528 zend_string *class_name, zend_string *case_name, zval *value) { in create_enum_case_ast()
H A Dzend_compile.c997 ZEND_API zend_string *zend_create_member_string(zend_string *class_name, zend_string *member_name) { in zend_create_member_string()
1152 zval *class_name = zend_ast_get_zval(ast); in zend_resolve_class_name_ast() local
1520 …d_result zend_unmangle_property_name_ex(const zend_string *name, const char **class_name, const ch… in zend_unmangle_property_name_ex()
1664 static inline bool class_name_refers_to_active_ce(zend_string *class_name, uint32_t fetch_type) /* … in class_name_refers_to_active_ce()
1704 zend_string *class_name = zend_ast_get_str(ast); in zend_resolve_const_class_name_reference() local
1732 zval *class_name; in zend_try_compile_const_expr_resolve_class_name() local
1808 static bool zend_try_ct_eval_class_const(zval *zv, zend_string *class_name, zend_string *name) /* {… in zend_try_ct_eval_class_const()
6623 zend_string *class_name = zend_ast_get_str(ast); in zend_compile_single_typename() local
10340 zend_string *class_name; in zend_compile_const_expr_class_const() local
10383 zend_string *class_name = zend_ast_get_str(class_ast); in zend_compile_const_expr_class_name() local
[all …]
H A Dzend_inheritance.c370 static void track_class_dependency(zend_class_entry *ce, zend_string *class_name) in track_class_dependency()
564 zend_string *class_name = resolve_class_name(scope, ZEND_TYPE_NAME(*single_type)); in register_unresolved_classes() local
2182 zend_string* class_name = cur_precedence->exclude_class_names[j]; in zend_traits_init_trait_structures() local
H A Dzend_closures.c594 zend_string *class_name = closure->func.common.scope->name; in zend_closure_get_debug_info() local
H A Dzend_API.c95 const char *class_name = get_active_class_name(&space); in zend_wrong_param_count() local
384 const char *class_name = get_active_class_name(&space); in zend_unexpected_extra_named_error() local
1110 const char *class_name = active_function->common.scope in zend_parse_parameters_debug_error() local
1707 const char *class_name, *prop_name; in object_properties_load() local
3038 const char *class_name = ZEND_TYPE_LITERAL_NAME(new_arg_info[i].type); in zend_register_functions() local
3593 ZEND_API zend_result zend_disable_class(const char *class_name, size_t class_name_length) /* {{{ */ in zend_disable_class()
/php-src/ext/spl/
H A Dphp_spl.c158 #define SPL_ADD_CLASS(class_name, z_list, sub, allow, ce_flags) \ argument
231 static int spl_autoload(zend_string *class_name, zend_string *lc_name, const char *ext, int ext_len… in spl_autoload()
297 zend_string *class_name, *lc_name, *file_exts = NULL; in PHP_FUNCTION() local
419 static zend_class_entry *spl_perform_autoload(zend_string *class_name, zend_string *lc_name) { in spl_perform_autoload()
466 zend_string *class_name; in PHP_FUNCTION() local
/php-src/ext/standard/
H A Dincomplete_class.c33 zend_string *class_name = php_lookup_class_name(object); in incomplete_class_message() local
43 zend_string *class_name = php_lookup_class_name(object); in throw_incomplete_class_error() local
H A Dvar.c55 const char *prop_name, *class_name; in php_object_property_dump() local
92 zend_string *class_name; in php_var_dump() local
249 const char *prop_name, *class_name; in zval_object_property_dump() local
282 zend_string *class_name; in php_debug_zval_dump() local
467 const char *class_name, *prop_name; in php_object_element_export() local
/php-src/ext/intl/formatter/
H A Dformatter_format.c109 const char *class_name = get_active_class_name(&space); in PHP_FUNCTION() local
H A Dformatter_parse.c91 const char *class_name = get_active_class_name(&space); in PHP_FUNCTION() local
/php-src/sapi/phpdbg/
H A Dphpdbg_bp.h83 const char *class_name; member
H A Dphpdbg_print.c351 char *method_name, *class_name = strtok(function_lowercase, "::"); in phpdbg_print_opcodes() local
/php-src/Zend/Optimizer/
H A Dcompact_literals.c98 zval *class_name = &op_array->literals[op1]; in add_static_slot() local
/php-src/ext/readline/
H A Dreadline_cli.c539 zend_string *class_name = NULL; in cli_completion_generator() local
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Delement.c594 const lxb_char_t *class_name, size_t len) in lxb_dom_elements_by_class_name()
H A Dnode.c699 const lxb_char_t *class_name, size_t len) in lxb_dom_node_by_class_name()
/php-src/ext/sqlite3/
H A Dsqlite3.c41 #define SQLITE3_CHECK_INITIALIZED(db_obj, member, class_name) \ argument
47 #define SQLITE3_CHECK_INITIALIZED_STMT(member, class_name) \ argument

Completed in 206 milliseconds

12