Searched defs:properties (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_4/ext/simplexml/ |
| H A D | php_simplexml.h | 61 HashTable *properties; member in struct:__anon192
|
| /PHP_5_4/Zend/ |
| H A D | zend.c | 358 HashTable *properties = NULL; local 374 properties = Z_OBJPROP_P(expr); 376 if (properties) { 377 if (++properties->nApplyCount>1) { 379 properties->nApplyCount--; 382 print_flat_hash(properties TSRMLS_CC); 383 properties->nApplyCount--; 416 HashTable *properties; local 433 if ((properties = Z_OBJDEBUG_P(expr, is_temp)) == NULL) { 436 if (++properties [all...] |
| H A D | zend.h | 300 HashTable *properties; member in struct:_zend_object
|
| H A D | zend_API.c | 1009 ZEND_API void zend_merge_properties(zval *obj, HashTable *properties, int destroy_ht TSRMLS_DC) /* {{{ */ argument 1015 zend_hash_apply_with_arguments(properties TSRMLS_CC, (apply_func_args_t)zend_merge_property, 2, obj, obj_ht); 1019 zend_hash_destroy(properties); 1020 FREE_HASHTABLE(properties); 1139 object->properties = NULL; 1144 /* This function requires 'properties' to contain all props declared in the 1146 * has protected members then you need to merge the properties seperately by 1148 ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *class_type, HashTable *properties ZEND_FILE_LINE_DC TSRMLS_DC) /* {{{ */ 1164 if (properties) { 1165 object->properties [all...] |
| H A D | zend_builtin_functions.c | 945 * properties, returned to user */ 957 Returns an array of default properties of the class. */ 981 Returns an array of object properties */ 986 HashTable *properties; local 1002 properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); 1004 if (properties == NULL) { 1012 zend_hash_internal_pointer_reset_ex(properties, &pos); 1014 while (zend_hash_get_current_data_ex(properties, (void **) &value, &pos) == SUCCESS) { 1015 if (zend_hash_get_current_key_ex(properties, &key, &key_len, &num_index, 0, &pos) == HASH_KEY_IS_STRING) { 1023 zend_hash_move_forward_ex(properties, [all...] |
| /PHP_5_4/ext/libxml/ |
| H A D | php_libxml.h | 80 HashTable *properties; member in struct:_php_libxml_node_object
|
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 183 /* Struct for properties */ 453 /* Static properties */ 455 /* counting static properties */ 473 /* static properties */ 474 string_printf(str, "\n%s - Static properties [%d] {\n", indent, count_static_props); 535 /* Default/Implicit properties */ 557 HashTable *properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); local 564 if (properties && zend_hash_num_elements(properties)) { 565 zend_hash_internal_pointer_reset_ex(properties, 3974 HashTable *properties = Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC); local [all...] |
Completed in 31 milliseconds