Searched refs:fargs (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_4/ext/intl/msgformat/ |
| H A D | msgformat_format.c | 37 zval **fargs; local 54 fargs = safe_emalloc(count, sizeof(zval *), 0); 60 fargs[i] = *val; 61 Z_ADDREF_P(fargs[i]); 66 umsg_format_helper(MSG_FORMAT_OBJECT(mfo), count, fargs, &formatted, &formatted_len, &INTL_DATA_ERROR_CODE(mfo) TSRMLS_CC); local 69 zval_ptr_dtor(&fargs[i]); 72 efree(fargs);
|
| H A D | msgformat_helpers.cpp | 63 Formattable* fargs = new Formattable[fmt_count ? fmt_count : 1]; local 73 fargs[i].setDate(U_MILLIS_PER_SECOND * (double)Z_LVAL_P(args[i])); 78 fargs[i].setDouble(Z_DVAL_P(args[i])); 83 fargs[i].setLong(Z_LVAL_P(args[i])); 96 fargs[i].setInt64(tInt64); 103 delete[] fargs; 106 fargs[i].setString(stringVal); 113 delete[] fargs; 122 ((const MessageFormat*)fmt)->format(fargs, fmt_count, resultStr, fieldPosition, *status); 124 delete[] fargs; 140 Formattable *fargs = ((const MessageFormat*)fmt)->parse(srcString, *count, *status); local [all...] |
| H A D | msgformat_parse.c | 33 zval **fargs; local 42 umsg_parse_helper(MSG_FORMAT_OBJECT(mfo), &count, &fargs, usource, usrc_len, &INTL_DATA_ERROR_CODE(mfo)); local 50 add_next_index_zval(return_value, fargs[i]); 52 efree(fargs);
|
Completed in 3 milliseconds