| /PHP_TRUNK/ext/mysqli/tests/ |
| H A D | reflection_tools.inc | 31 if ($properties = $class->getProperties()) { 33 foreach ($properties as $prop) 41 if ($properties = $class->getDefaultProperties()) { 42 ksort($properties, SORT_STRING); 43 foreach ($properties as $name => $v) 47 if ($properties = $class->getStaticProperties()) { 48 ksort($properties, SORT_STRING); 49 foreach ($properties as $name => $v)
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_objects.c | 32 object->properties = NULL; 43 if (object->properties) { 44 zend_hash_destroy(object->properties); 45 FREE_HASHTABLE(object->properties); 147 (*object)->properties = NULL; 170 if (!new_object->properties) { 175 if (!old_object->properties) { 183 if (old_object->properties) { 184 if (!new_object->properties) { 185 ALLOC_HASHTABLE(new_object->properties); [all...] |
| 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_object_handlers.c | 52 if we have __get and property that is not part of the properties array is 55 if we have __set and property that is not part of the properties array is 60 recursion and enable accessors to change properties array. 68 if (!zobj->properties) { 73 ALLOC_HASHTABLE(zobj->properties); 74 zend_hash_init(zobj->properties, 0, NULL, ZVAL_PTR_DTOR, 0); 83 zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]); 96 zend_hash_quick_add(zobj->properties, prop_info->name, prop_info->name_length+1, prop_info->h, (void**)&zobj->properties_table[prop_info->offset], sizeof(zval*), (void**)&zobj->properties_table[prop_info->offset]); 109 if (!zobj->properties) { 112 return zobj->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/dom/ |
| H A D | characterdata.c | 237 if ((nodep->content == (xmlChar *) &(nodep->properties)) || 244 nodep->properties = NULL;
|
| H A D | documentfragment.c | 96 prop = tree->properties;
|
| H A D | namednodemap.c | 104 curnode = nodep->properties; 234 curnode = (xmlNodePtr)nodep->properties;
|
| H A D | dom_iterators.c | 296 curnode = (xmlNodePtr) nodep->properties;
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 332 pdbh->std.properties = NULL; 338 if (pdbh->std.properties) { 339 zend_hash_destroy(dbh->std.properties); 340 efree(dbh->std.properties); 345 pdbh->std.properties = dbh->std.properties; 1577 dbh->std.properties = NULL;
|
| /PHP_TRUNK/ext/simplexml/ |
| H A D | php_simplexml.h | 61 HashTable *properties; member in struct:__anon191
|
| H A D | simplexml.c | 291 attr = node ? node->properties : NULL; 513 attr = node ? node->properties : NULL; 526 attr = node->properties; 559 zend_error(E_WARNING, "It is not yet possible to assign complex types to %s", attribs ? "attributes" : "properties"); 774 attr = node ? node->properties : NULL; 904 attr = node ? node->properties : NULL; 1083 else if (sxe->properties) { 1084 zend_hash_clean(sxe->properties); 1085 rv = sxe->properties; 1089 sxe->properties [all...] |
| /PHP_TRUNK/ext/soap/ |
| H A D | php_packet_soap.c | 82 attr = env->properties; 130 attr = body->properties; 158 attr = head->properties;
|
| H A D | php_schema.c | 117 new_tns = get_attribute(schema->properties, "targetNamespace"); 128 new_tns = get_attribute(schema->properties, "targetNamespace"); 181 tns = get_attribute(schema->properties, "targetNamespace"); 192 location = get_attribute(trav->properties, "schemaLocation"); 212 location = get_attribute(trav->properties, "schemaLocation"); 234 ns = get_attribute(trav->properties, "namespace"); 235 location = get_attribute(trav->properties, "schemaLocation"); 310 ns = get_attribute(simpleType->properties, "targetNamespace"); 315 name = get_attribute(simpleType->properties, "name"); 416 itemType = get_attribute(listType->properties, "itemTyp [all...] |
| H A D | php_sdl.c | 218 if ((attr = get_attribute_ex(node->properties, "required", WSDL_NAMESPACE)) != NULL && 362 targetNamespace = get_attribute(definitions->properties, "targetNamespace"); 388 xmlAttrPtr tmp = get_attribute(trav->properties, "location"); 404 xmlAttrPtr name = get_attribute(trav->properties, "name"); 414 xmlAttrPtr name = get_attribute(trav->properties, "name"); 424 xmlAttrPtr name = get_attribute(trav->properties, "name"); 434 xmlAttrPtr name = get_attribute(trav->properties, "name"); 456 tmp = get_attribute(header->properties, "message"); 471 tmp = get_attribute(header->properties, "part"); 484 tmp = get_attribute(header->properties, "us [all...] |
| H A D | php_xml.c | 286 attr = get_attribute_ex(node->properties, attribute, attr_ns); 299 xmlAttrPtr attr = get_attribute_ex(node->properties, attribute, attr_ns);
|
| H A D | php_encoding.c | 108 if (xml->properties) { \ 109 null = get_attribute(xml->properties, "nil"); \ 126 if (xml->properties) { \ 127 null = get_attribute(xml->properties, "nil"); \ 302 xmlAttrPtr attr = (*node_ptr)->properties; 555 xmlAttrPtr type_attr = get_attribute_ex(data->properties,"type", XSI_NAMESPACE); 594 xmlAttrPtr type_attr = get_attribute_ex(data->properties,"type", XSI_NAMESPACE); 1604 xmlAttrPtr val = get_attribute(data->properties, (*attr)->name); 2576 (attr = get_attribute(data->properties,"arrayType")) && 2596 } else if ((attr = get_attribute(data->properties,"itemTyp [all...] |
| /PHP_TRUNK/ext/tidy/ |
| H A D | tidy.c | 825 if (!obj->std.properties) { 830 zend_hash_update(obj->std.properties, "value", sizeof("value"), (void *)&temp, sizeof(zval *), NULL); 836 if (!obj->std.properties) { 841 zend_hash_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer"), (void *)&temp, sizeof(zval *), NULL); 857 if (!obj->std.properties) { 862 ADD_PROPERTY_STRINGL(obj->std.properties, value, buf.bp, buf.size ? buf.size-1 : 0); 865 ADD_PROPERTY_STRING(obj->std.properties, name, tidyNodeGetName(obj->node)); 866 ADD_PROPERTY_LONG(obj->std.properties, type, tidyNodeGetType(obj->node)); 867 ADD_PROPERTY_LONG(obj->std.properties, line, tidyNodeLine(obj->node)); 868 ADD_PROPERTY_LONG(obj->std.properties, colum [all...] |
| /PHP_TRUNK/ext/intl/breakiterator/ |
| H A D | breakiterator_class.cpp | 223 zend_hash_copy(intern->zo.properties, &(ce->default_properties),
|
| /PHP_TRUNK/ext/libxml/ |
| H A D | libxml.c | 155 if (object->properties) { 156 object->properties = NULL; 236 php_libxml_node_free_list((xmlNodePtr) node->properties TSRMLS_CC); 251 php_libxml_node_free_list((xmlNodePtr) node->properties TSRMLS_CC); 1278 php_libxml_node_free_list((xmlNodePtr) node->properties TSRMLS_CC);
|
| H A D | php_libxml.h | 80 HashTable *properties; member in struct:_php_libxml_node_object
|
| /PHP_TRUNK/ext/intl/transliterator/ |
| H A D | transliterator_class.c | 132 zend_hash_copy( intern->zo.properties, &(ce->default_properties ), 411 /* Declare 'Transliterator' class properties */ 415 "Transliterator: attempt to create properties "
|
| /PHP_TRUNK/ext/intl/common/ |
| H A D | common_enum.cpp | 204 zend_hash_copy(intern->zo.properties, &(ce->default_properties),
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_array.c | 85 if (!intern->std.properties) { 88 return intern->std.properties; 93 if (!intern->std.properties) { 96 return intern->std.properties; 732 php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Cannot append properties to objects, use %s::offsetSet() instead", Z_OBJCE_P(object)->name); 804 if (!intern->std.properties) { 808 if (HASH_OF(intern->array) == intern->std.properties) { 809 return intern->std.properties; 813 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(intern->std.properties) + 1, 0); 818 zend_hash_copy(intern->debug_info, intern->std.properties, (copy_ctor_func_ [all...] |
| H A D | spl_heap.c | 531 if (!intern->std.properties) { 537 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(intern->std.properties) + 1, 0); 544 zend_hash_copy(intern->debug_info, intern->std.properties, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)); 627 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 653 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 682 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 715 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 758 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 845 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties are no longer ensured.", 0 TSRMLS_CC); 919 zend_throw_exception(spl_ce_RuntimeException, "Heap is corrupted, heap properties ar [all...] |