Lines Matching full:resultlength
147 int32_t resultlength;
251 resultlength=0;
253 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
257 resultlength=resultlengthneeded+1;
258 result=(UChar*)malloc(sizeof(UChar) * resultlength);
261 unum_format(cur_def, l, result, resultlength, &pos1, &status);
284 resultlength=0;
286 resultlengthneeded=unum_formatDouble(cur_def, d, NULL, resultlength, &pos2, &status);
290 resultlength=resultlengthneeded+1;
291 result=(UChar*)malloc(sizeof(UChar) * resultlength);
294 unum_formatDouble(cur_def, d, result, resultlength, &pos2, &status);
341 resultlength=0;
343 resultlengthneeded=unum_formatDoubleCurrency(cur_def, a, temp, NULL, resultlength, &pos2, &status);
346 resultlength=resultlengthneeded+1;
347 result=(UChar*)malloc(sizeof(UChar) * resultlength);
348 unum_formatDoubleCurrency(cur_def, a, temp, result, resultlength, &pos2, &status);
396 resultlength=u_strlen(temp1);
400 d1=unum_parseDouble(cur_def, temp1, resultlength, &parsepos, &status);
404 log_err("parseDouble('%s') failed. The error is : %s\n", aescstrdup(temp1, resultlength), myErrorName(status));
431 resultlength=0;
433 resultlengthneeded=unum_format(per_fr, l, NULL, resultlength, &pos1, &status);
437 resultlength=resultlengthneeded+1;
438 result=(UChar*)malloc(sizeof(UChar) * resultlength);
441 unum_format(per_fr, l, result, resultlength, &pos1, &status);
481 resultlength=0;
482 resultlength, &status);
486 resultlength=resultlengthneeded+1;
487 result=(UChar*)malloc(sizeof(UChar) * resultlength);
488 unum_toPattern(pattern, FALSE, result, resultlength, &status);
506 resultlength=0;
507 resultlengthneeded=unum_toPattern(cur_def, FALSE, NULL, resultlength, &status);
511 resultlength=resultlengthneeded+1;
512 result=(UChar*)malloc(sizeof(UChar) * resultlength);
513 unum_toPattern(cur_def, FALSE, result, resultlength, &status);
542 resultlength=0;
543 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
547 resultlength=resultlengthneeded+1;
548 result=(UChar*)malloc(sizeof(UChar) * resultlength);
549 unum_format(cur_def, l, result, resultlength, &pos1, &status);
575 resultlength=0;
576 resultlengthneeded=unum_format(cur_frpattern, l, NULL, resultlength, &pos1, &status);
580 resultlength=resultlengthneeded+1;
581 unum_format(cur_frpattern, l, temp1, resultlength, &pos1, &status);
616 resultlength = unum_getSymbol(cur_frpattern, (UNumberFormatSymbol)i, symbol, sizeof(symbol)/U_SIZEOF_UCHAR, &status);
621 if(resultlength != 2 || symbol[0] != 0x41 + i || symbol[1] != 0x61 + i) {
639 resultlength=5;
640 unum_getTextAttribute(cur_fr, UNUM_NEGATIVE_SUFFIX, temp, resultlength, &status);
650 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status);
670 unum_getTextAttribute(def, UNUM_POSITIVE_PREFIX, temp, resultlength, &status);
687 unum_getTextAttribute(def, UNUM_NEGATIVE_PREFIX, temp, resultlength, &status);
704 unum_getTextAttribute(def, UNUM_NEGATIVE_SUFFIX, temp, resultlength, &status);
721 unum_getTextAttribute(def, UNUM_POSITIVE_SUFFIX, temp, resultlength, &status);
1177 int32_t resultlength;
1193 resultlength=0;
1194 resultlengthneeded=unum_formatDouble(fmt, d, NULL, resultlength, NULL, &status);
1198 resultlength=resultlengthneeded+1;
1199 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1200 unum_formatDouble(fmt, d, result, resultlength, NULL, &status);
1258 int32_t resultlength;
1293 resultlength=0;
1294 resultlengthneeded=unum_toPattern(pattern, FALSE, NULL, resultlength, &status);
1298 resultlength=resultlengthneeded+1;
1299 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1300 unum_toPattern(pattern, FALSE, result, resultlength, &status);
1316 resultlength=0;
1318 resultlengthneeded=unum_formatDouble(pattern, d, NULL, resultlength, &pos1, &status);
1322 resultlength=resultlengthneeded+1;
1323 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1324 unum_formatDouble(pattern, d, result, resultlength, NULL, &status);