Home
last modified time | relevance | path

Searched refs:obj (Results 451 – 474 of 474) sorted by relevance

1...<<111213141516171819

/PHP-7.0/ext/standard/tests/general_functions/
H A Dis_callable_basic2.phpt80 $obj = new contains_object_class;
97 $obj,
98 $obj->class_object1,
99 $obj->no_member_class_object,
/PHP-7.0/ext/spl/
H A Dspl_iterators.c130 static inline spl_recursive_it_object *spl_recursive_it_from_obj(zend_object *obj) /* {{{ */ { in spl_recursive_it_from_obj() argument
131 return (spl_recursive_it_object*)((char*)(obj) - XtOffsetOf(spl_recursive_it_object, std)); in spl_recursive_it_from_obj()
3505 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument
3508 zend_class_entry *ce = Z_OBJCE_P(obj); in spl_iterator_apply()
3510 iter = ce->get_iterator(ce, obj, 0); in spl_iterator_apply()
3596 zval *obj; in PHP_FUNCTION() local
3622 zval *obj; in PHP_FUNCTION() local
3625 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &obj, zend_ce_traversable) == FAILURE) { in PHP_FUNCTION()
3629 if (spl_iterator_apply(obj, spl_iterator_count_apply, (void*)&count) == SUCCESS) { in PHP_FUNCTION()
3636 zval *obj; member
[all …]
/PHP-7.0/win32/build/
H A Dconfutils.js1487 var src, obj, sym, flags;
1559 obj = sub_build + build_dir + "\\" + filename.replace(re, ".obj");
1563 objs_line += " " + obj
1566 objs_line = obj;
1569 resp += " " + obj.replace('$(BUILD_DIR)', bd);
1570 tv += " " + obj;
1611 obj = filename.replace(re, ".obj");
1613 …gs + ") $(CFLAGS) $(" + bd_flags_name + ") /c " + dir + "\\" + src + " /Fo" + sub_build + d + obj);
/PHP-7.0/ext/exif/tests/
H A Dexif_tagname_variation1.phpt25 return "obj'ct";
/PHP-7.0/ext/xml/
H A Dxml.c118 ZEND_ARG_INFO(1, obj)
503 zval *obj; in xml_call_handler() local
508 (obj = zend_hash_index_find(Z_ARRVAL_P(handler), 0)) != NULL && in xml_call_handler()
510 Z_TYPE_P(obj) == IS_OBJECT && in xml_call_handler()
512 …php_error_docref(NULL, E_WARNING, "Unable to call handler %s::%s()", ZSTR_VAL(Z_OBJCE_P(obj)->name… in xml_call_handler()
/PHP-7.0/ext/standard/tests/strings/
H A Dstrtok_variation2.phpt25 return "obj-ect";
/PHP-7.0/ext/date/
H A Dphp_date.c604 php_date_obj *obj; \
615 obj = Z_PHPDATE_P(object); \
1989 php_interval_obj *obj; in date_interval_has_property() local
2002 obj = Z_PHPINTERVAL_P(object); in date_interval_has_property()
2004 if (!obj->initialized) { in date_interval_has_property()
4035 php_interval_obj *obj; in date_interval_read_property() local
4048 obj = Z_PHPINTERVAL_P(object); in date_interval_read_property()
4050 if (!obj->initialized) { in date_interval_read_property()
4101 php_interval_obj *obj; in date_interval_write_property() local
4112 obj = Z_PHPINTERVAL_P(object); in date_interval_write_property()
[all …]
/PHP-7.0/ext/mysqli/tests/
H A Dmysqli_connect_oo.phpt16 $obj = new stdClass();
/PHP-7.0/ext/dom/
H A Delement.c233 int dom_element_tag_name_read(dom_object *obj, zval *retval) in dom_element_tag_name_read() argument
239 nodep = dom_object_get_node(obj); in dom_element_tag_name_read()
267 int dom_element_schema_type_info_read(dom_object *obj, zval *retval) in dom_element_schema_type_info_read() argument
/PHP-7.0/Zend/
H A Dzend_object_handlers.c1649 int zend_std_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zend_objec… in zend_std_get_closure() argument
1654 if (Z_TYPE_P(obj) != IS_OBJECT) { in zend_std_get_closure()
1658 ce = Z_OBJCE_P(obj); in zend_std_get_closure()
1672 *obj_ptr = Z_OBJ_P(obj); in zend_std_get_closure()
H A Dzend_types.h107 zend_object *obj; member
530 #define Z_OBJ(zval) (zval).value.obj
H A DOBJECTS2_HOWTO71 $foo =& $obj->bar;
H A Dzend_API.h389 ZEND_API void zend_merge_properties(zval *obj, HashTable *properties);
/PHP-7.0/
H A D.gitignore206 ext/mbstring/libmbfl/*.obj
H A DINSTALL478 2. Edit magnus.conf (for servers >= 6) or obj.conf (for servers < 6)
489 3. Configure the default object in obj.conf (for virtual server
490 classes [version 6.0+] in their vserver.obj.conf):
578 similar. Add the following line to the object in obj.conf for every
591 in obj.conf with the following:
/PHP-7.0/ext/mysqli/
H A Dmysqli_api.c1211 zval obj; local
1227 object_init(&obj);
1229 php_add_field_properties(&obj, field);
1230 add_index_zval(return_value, i, &obj);
/PHP-7.0/ext/openssl/
H A Dopenssl.c811 ASN1_OBJECT * obj; in add_assoc_name_entry() local
825 obj = X509_NAME_ENTRY_get_object(ne); in add_assoc_name_entry()
826 nid = OBJ_obj2nid(obj); in add_assoc_name_entry()
4420 ASN1_OBJECT *obj; in PHP_FUNCTION() local
4439 obj = OBJ_nid2obj(nid); in PHP_FUNCTION()
4440 if (obj != NULL) { in PHP_FUNCTION()
4441 int oir_len = OBJ_obj2txt(oir_buf, sizeof(oir_buf), obj, 1); in PHP_FUNCTION()
4443 ASN1_OBJECT_free(obj); in PHP_FUNCTION()
/PHP-7.0/ext/xmlwriter/
H A Dphp_xmlwriter.c112 ze_xmlwriter_object *obj = Z_XMLWRITER_P(object); \
113 intern = obj->xmlwriter_ptr; \
/PHP-7.0/win32/
H A Dinstall.txt712 important lines in obj.conf and allow the web server to handle
738 * Edit magnus.conf (for servers >= 6) or obj.conf (for servers < 6)
749 * Configure the default object in obj.conf (for virtual server
750 classes [Sun Web Server 6.0+] in their vserver.obj.conf): In the
813 similar. Add the following line to the object in obj.conf for every
826 in obj.conf with the following:
852 php7_init in magnus.conf/obj.conf:
/PHP-7.0/ext/phar/
H A Dphar_object.c1915 zval *obj; in PHP_METHOD() local
1929 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|s", &obj, zend_ce_traversable, &base, &base_len) == … in PHP_METHOD()
1944 pass.c = Z_OBJCE_P(obj); in PHP_METHOD()
1956 if (SUCCESS == spl_iterator_apply(obj, (spl_iterator_apply_func_t) phar_build, (void *) &pass)) { in PHP_METHOD()
/PHP-7.0/ext/standard/
H A Dbasic_functions.c4951 zval *obj, *method; local
4956 && (obj = zend_hash_index_find(Z_ARRVAL_P(function), 0)) != NULL
4958 && Z_TYPE_P(obj) == IS_OBJECT
4960 …G, "Unable to call %s::%s() - function does not exist", ZSTR_VAL(Z_OBJCE_P(obj)->name), Z_STRVAL_P…
/PHP-7.0/Zend/tests/
H A D019.phpt232 // dump the object to see that obj was not harmed
/PHP-7.0/ext/mbstring/oniguruma/
H A DHISTORY1837 2003/01/30: [bug] .c.o --> .c.obj in win32\Makefile.
/PHP-7.0/ext/fileinfo/tests/
H A Dmagic10791 0 beshort 0x01df executable (RISC System/6000 V3.1) or obj module
10794 #0 beshort 0x0103 executable (RT Version 2) or obj module

Completed in 180 milliseconds

1...<<111213141516171819