Searched defs:properties (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/ext/simplexml/ |
| H A D | php_simplexml.h | 61 HashTable *properties; member in struct:__anon191
|
| /PHP_TRUNK/Zend/ |
| H A D | zend.c | 359 HashTable *properties = NULL; local 375 properties = Z_OBJPROP_P(expr); 377 if (properties) { 378 if (++properties->nApplyCount>1) { 380 properties->nApplyCount--; 383 print_flat_hash(properties TSRMLS_CC); 384 properties->nApplyCount--; 417 HashTable *properties; local 434 if ((properties = Z_OBJDEBUG_P(expr, is_temp)) == NULL) { 437 if (++properties [all...] |
| H A D | zend.h | 314 HashTable *properties; member in struct:_zend_object
|
| H A D | zend_API.c | 1038 ZEND_API void zend_merge_properties(zval *obj, HashTable *properties, int destroy_ht TSRMLS_DC) /* {{{ */ argument 1044 zend_hash_apply_with_arguments(properties TSRMLS_CC, (apply_func_args_t)zend_merge_property, 2, obj, obj_ht); 1048 zend_hash_destroy(properties); 1049 FREE_HASHTABLE(properties); 1168 object->properties = NULL; 1173 /* This function requires 'properties' to contain all props declared in the 1175 * has protected members then you need to merge the properties seperately by 1177 ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *class_type, HashTable *properties ZEND_FILE_LINE_DC TSRMLS_DC) /* {{{ */ 1193 if (properties) { 1194 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_TRUNK/ext/libxml/ |
| H A D | php_libxml.h | 80 HashTable *properties; member in struct:_php_libxml_node_object
|
| /PHP_TRUNK/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, 3982 HashTable *properties = Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC); local [all...] |
Completed in 18 milliseconds