Lines Matching refs:attribute
28 zend_long attribute, value; in PHP_FUNCTION() local
33 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) in PHP_FUNCTION()
41 switch(attribute) { in PHP_FUNCTION()
61 value = unum_getAttribute(FORMATTER_OBJECT(nfo), attribute); in PHP_FUNCTION()
70 double value_double = unum_getDoubleAttribute(FORMATTER_OBJECT(nfo), attribute); in PHP_FUNCTION()
90 zend_long attribute; in PHP_FUNCTION() local
99 &object, NumberFormatter_ce_ptr, &attribute ) == FAILURE ) in PHP_FUNCTION()
107 …length = unum_getTextAttribute( FORMATTER_OBJECT(nfo), attribute, value, value_buf_size, &INTL_DAT… in PHP_FUNCTION()
112 …length = unum_getTextAttribute( FORMATTER_OBJECT(nfo), attribute, value, length, &INTL_DATA_ERROR_… in PHP_FUNCTION()
127 zend_long attribute; in PHP_FUNCTION() local
133 &object, NumberFormatter_ce_ptr, &attribute, &value ) == FAILURE) in PHP_FUNCTION()
141 switch(attribute) { in PHP_FUNCTION()
161 unum_setAttribute(FORMATTER_OBJECT(nfo), attribute, zval_get_long(value)); in PHP_FUNCTION()
164 unum_setDoubleAttribute(FORMATTER_OBJECT(nfo), attribute, zval_get_double(value)); in PHP_FUNCTION()
182 zend_long attribute; in PHP_FUNCTION() local
189 &object, NumberFormatter_ce_ptr, &attribute, &value, &len ) == FAILURE) in PHP_FUNCTION()
202 …unum_setTextAttribute(FORMATTER_OBJECT(nfo), attribute, svalue, slength, &INTL_DATA_ERROR_CODE(nfo… in PHP_FUNCTION()