Home
last modified time | relevance | path

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

1...<<11121314151617181920

/PHP-7.1/ext/standard/tests/general_functions/
H A Dvar_export-locale.phpt267 foreach($valid_objects as $obj) {
269 var_export( $obj );
271 var_export( $obj, FALSE);
273 var_dump( var_export( $obj, TRUE) );
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.1/ext/mysqli/tests/
H A Dmysqli_connect.phpt22 $obj = new stdClass();
23 if (!is_null($tmp = @mysqli_connect($obj)))
H A Dmysqli_connect_oo.phpt16 $obj = new stdClass();
/PHP-7.1/ext/exif/tests/
H A Dexif_imagetype_variation1.phpt23 return "obj'ct";
197 Warning: exif_imagetype(obj'ct): failed to open stream: No such file or directory in %s on line %d
H A Dexif_tagname_variation1.phpt25 return "obj'ct";
/PHP-7.1/Zend/
H A Dzend_compile.h304 #define OBJ_PROP(obj, offset) \ argument
305 ((zval*)((char*)(obj) + offset))
306 #define OBJ_PROP_NUM(obj, num) \ argument
307 (&(obj)->properties_table[(num)])
H A Dzend_object_handlers.h118 typedef int (*zend_object_get_closure_t)(zval *obj, zend_class_entry **ce_ptr, union _zend_function…
H A Dzend_vm_def.h2260 zend_object *obj; variable
2265 obj = Z_OBJ_P(object);
2273 OBJ_RELEASE(obj);
3126 zend_object *obj; variable
3187 obj = Z_OBJ_P(object);
3188 called_scope = obj->ce;
3224 obj = NULL;
5033 zval *obj; variable
5051 obj = Z_REFVAL_P(obj);
5068 ce = Z_OBJCE_P(obj);
[all …]
H A Dzend_object_handlers.c1718 int zend_std_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zend_objec… in zend_std_get_closure() argument
1723 if (Z_TYPE_P(obj) != IS_OBJECT) { in zend_std_get_closure()
1727 ce = Z_OBJCE_P(obj); in zend_std_get_closure()
1741 *obj_ptr = Z_OBJ_P(obj); in zend_std_get_closure()
H A DOBJECTS2_HOWTO71 $foo =& $obj->bar;
/PHP-7.1/ext/snmp/
H A Dsnmp.c1956 php_snmp_object *obj; in php_snmp_read_property() local
1960 obj = Z_SNMP_P(object); in php_snmp_read_property()
1971 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1995 php_snmp_object *obj; in php_snmp_write_property() local
2004 obj = Z_SNMP_P(object); in php_snmp_write_property()
2009 hnd->write_func(obj, value); in php_snmp_write_property()
2077 php_snmp_object *obj; in php_snmp_get_properties() local
2083 obj = Z_SNMP_P(object); in php_snmp_get_properties()
2087 if (!hnd->read_func || hnd->read_func(obj, &rv) != SUCCESS) { in php_snmp_get_properties()
2093 return obj->zo.properties; in php_snmp_get_properties()
/PHP-7.1/main/
H A DSAPI.c1066 SAPI_API int sapi_get_target_uid(uid_t *obj) in sapi_get_target_uid() argument
1069 return sapi_module.get_target_uid(obj); in sapi_get_target_uid()
1075 SAPI_API int sapi_get_target_gid(gid_t *obj) in sapi_get_target_gid() argument
1078 return sapi_module.get_target_gid(obj); in sapi_get_target_gid()
/PHP-7.1/ext/session/
H A Dsession.c1722 zval *obj = NULL;
1727 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|b", &obj, php_session_iface_entry, &register_shutdow…
1735 if ((current_mptr = zend_hash_find_ptr(&Z_OBJCE_P(obj)->function_table, func_name))) {
1741 Z_ADDREF_P(obj);
1742 add_next_index_zval(&PS(mod_user_names).names[i], obj);
1754 if ((current_mptr = zend_hash_find_ptr(&Z_OBJCE_P(obj)->function_table, func_name))) {
1759 Z_ADDREF_P(obj);
1760 add_next_index_zval(&PS(mod_user_names).names[i], obj);
1774 if ((current_mptr = zend_hash_find_ptr(&Z_OBJCE_P(obj)->function_table, func_name))) {
1779 Z_ADDREF_P(obj);
[all …]
/PHP-7.1/ext/standard/tests/strings/
H A Dstr_split_variation1.phpt223 string(3) "obj"
H A Dexplode1.phpt77 $obj = new string1;
78 var_dump( explode("b", $obj) );
H A Dstrtok_variation2.phpt25 return "obj-ect";
/PHP-7.1/ext/standard/tests/array/
H A Dcount_recursive.phpt93 $obj = new count_class();
94 print "COUNT_NORMAL: should be 3, is ".count($obj)."\n";
/PHP-7.1/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()
3518 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument
3521 zend_class_entry *ce = Z_OBJCE_P(obj); in spl_iterator_apply()
3523 iter = ce->get_iterator(ce, obj, 0); in spl_iterator_apply()
3609 zval *obj; in PHP_FUNCTION() local
3635 zval *obj; in PHP_FUNCTION() local
3638 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &obj, zend_ce_traversable) == FAILURE) { in PHP_FUNCTION()
3642 if (spl_iterator_apply(obj, spl_iterator_count_apply, (void*)&count) == SUCCESS) { in PHP_FUNCTION()
3649 zval *obj; member
[all …]
/PHP-7.1/win32/build/
H A Dconfutils.js1503 var src, obj, sym, flags;
1575 obj = sub_build + build_dir + "\\" + filename.replace(re, ".obj");
1579 objs_line += " " + obj
1582 objs_line = obj;
1585 resp += " " + obj.replace('$(BUILD_DIR)', bd);
1586 tv += " " + obj;
1676 obj = filename.replace(re, ".obj");
1678 …gs + ") $(CFLAGS) $(" + bd_flags_name + ") /c " + dir + "\\" + src + " /Fo" + sub_build + d + obj);
/PHP-7.1/ext/xml/
H A Dxml.c118 ZEND_ARG_INFO(0, obj)
501 zval *obj; in xml_call_handler() local
506 (obj = zend_hash_index_find(Z_ARRVAL_P(handler), 0)) != NULL && in xml_call_handler()
508 Z_TYPE_P(obj) == IS_OBJECT && in xml_call_handler()
510 …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.1/ext/date/
H A Dphp_date.c615 php_date_obj *obj; \
626 obj = Z_PHPDATE_P(object); \
2002 php_interval_obj *obj; in date_interval_has_property() local
2015 obj = Z_PHPINTERVAL_P(object); in date_interval_has_property()
2017 if (!obj->initialized) { in date_interval_has_property()
4138 php_interval_obj *obj; in date_interval_read_property() local
4152 obj = Z_PHPINTERVAL_P(object); in date_interval_read_property()
4154 if (!obj->initialized) { in date_interval_read_property()
4175 fvalue = obj->diff->f; in date_interval_read_property()
4211 php_interval_obj *obj; in date_interval_write_property() local
[all …]
/PHP-7.1/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.1/
H A D.gitignore205 ext/mbstring/libmbfl/*.obj
/PHP-7.1/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);

Completed in 140 milliseconds

1...<<11121314151617181920