| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_attr.c | 30 * Get collation attribute value. }}} */ 32 * Get collation attribute value. 36 long attribute, value; local 42 &object, Collator_ce_ptr, &attribute ) == FAILURE ) 53 value = ucol_getAttribute( co->ucoll, attribute, COLLATOR_ERROR_CODE_P( co ) ); 54 COLLATOR_CHECK_STATUS( co, "Error getting attribute value" ); 61 * Get collation attribute value. }}} */ 63 * Set collation attribute. 67 long attribute, value; local 73 &object, Collator_ce_ptr, &attribute, [all...] |
| /PHP_5_3/ext/intl/formatter/ |
| H A D | formatter_attr.c | 29 * Get formatter attribute value. }}} */ 31 * Get formatter attribute value. 35 long attribute, value; local 40 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) 51 switch(attribute) { 71 value = unum_getAttribute(FORMATTER_OBJECT(nfo), attribute); 80 double value_double = unum_getDoubleAttribute(FORMATTER_OBJECT(nfo), attribute); 93 INTL_METHOD_CHECK_STATUS( nfo, "Error getting attribute value" ); 98 * Get formatter attribute value. }}} */ 100 * Get formatter attribute valu 104 long attribute; local 148 long attribute; local 186 unum_setAttribute(FORMATTER_OBJECT(nfo), attribute, Z_LVAL_PP(value)); local 190 unum_setDoubleAttribute(FORMATTER_OBJECT(nfo), attribute, Z_DVAL_PP(value)); local 212 long attribute; local 235 unum_setTextAttribute(FORMATTER_OBJECT(nfo), attribute, svalue, slength, &INTL_DATA_ERROR_CODE(nfo)); local [all...] |
| /PHP_5_3/ext/ldap/ |
| H A D | ldap.c | 925 char *attribute; local 959 attribute = ldap_first_attribute(ldap, ldap_result_entry, &ber); 961 while (attribute != NULL) { 962 ldap_value = ldap_get_values_len(ldap, ldap_result_entry, attribute); 973 attr_len = strlen(attribute); 974 zend_hash_update(Z_ARRVAL_P(tmp1), php_strtolower(attribute, attr_len), attr_len+1, (void *) &tmp2, sizeof(zval *), NULL); 975 add_index_string(tmp1, num_attrib, attribute, 1); 979 ldap_memfree(attribute); 981 attribute = ldap_next_attribute(ldap, ldap_result_entry, ber); 1010 Return first attribute */ 1016 char *attribute; local 1044 char *attribute; local 1084 char *attribute; local 1112 zend_hash_update(Z_ARRVAL_P(return_value), attribute, strlen(attribute)+1, (void *) &tmp, sizeof(zval *), NULL); local 1266 char *attribute; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_schema.c | 160 Content: ((include | import | redefine | annotation)*, (((simpleType | complexType | group | attributeGroup) | element | attribute | notation), annotation*)*) 194 soap_error0(E_ERROR, "Parsing Schema: include has no 'schemaLocation' attribute"); 214 soap_error0(E_ERROR, "Parsing Schema: redefine has no 'schemaLocation' attribute"); 282 } else if (node_is_equal(trav,"attribute")) { 370 soap_error0(E_ERROR, "Parsing Schema: simpleType has no 'name' attribute"); 453 soap_error0(E_ERROR, "Parsing Schema: element has both 'itemType' attribute and subtype"); 633 Content: (annotation?, (simpleType?, (minExclusive | minInclusive | maxExclusive | maxInclusive | totalDigits | fractionDigits | length | minLength | maxLength | enumeration | whiteSpace | pattern)*)?, ((attribute | attributeGroup)*, anyAttribute?)) 654 soap_error0(E_ERROR, "Parsing Schema: restriction has no 'base' attribute"); 712 if (node_is_equal(trav,"attribute")) { 738 Content: (annotation?, (group | all | choice | sequence)?, ((attribute | attributeGrou 2023 copy_extra_attribute(void *attribute) argument 2435 delete_extra_attribute(void *attribute) argument 2448 delete_extra_attribute_persistent(void *attribute) argument 2461 delete_attribute(void *attribute) argument 2487 delete_attribute_persistent(void *attribute) argument [all...] |
| H A D | php_xml.c | 300 xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) argument 312 attr = get_attribute_ex(node->properties, attribute, attr_ns); 321 xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) argument 325 xmlAttrPtr attr = get_attribute_ex(node->properties, attribute, attr_ns); 331 xmlNodePtr tmp = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, value, attr_ns);
|
| /PHP_5_3/ext/tidy/ |
| H A D | tidy.c | 859 zval *attribute, *children, *temp; local 888 MAKE_STD_ZVAL(attribute); 892 array_init(attribute); 898 add_assoc_string(attribute, name, val, TRUE); 902 ZVAL_NULL(attribute); 904 zend_hash_update(obj->std.properties, "attribute", sizeof("attribute"), (void *)&attribute, sizeof(zval *), NULL);
|