Lines Matching defs:resultlength

185     int32_t resultlength;
289 resultlength=0;
291 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
295 resultlength=resultlengthneeded+1;
296 result=(UChar*)malloc(sizeof(UChar) * resultlength);
299 unum_format(cur_def, l, result, resultlength, &pos1, &status);
322 resultlength=0;
324 resultlengthneeded=unum_formatDouble(cur_def, d, NULL, resultlength, &pos2, &status);
328 resultlength=resultlengthneeded+1;
329 result=(UChar*)malloc(sizeof(UChar) * resultlength);
332 unum_formatDouble(cur_def, d, result, resultlength, &pos2, &status);
379 resultlength=0;
381 resultlengthneeded=unum_formatDoubleCurrency(cur_def, a, temp, NULL, resultlength, &pos2, &status);
384 resultlength=resultlengthneeded+1;
385 result=(UChar*)malloc(sizeof(UChar) * resultlength);
386 unum_formatDoubleCurrency(cur_def, a, temp, result, resultlength, &pos2, &status);
434 resultlength=u_strlen(temp1);
438 d1=unum_parseDouble(cur_def, temp1, resultlength, &parsepos, &status);
442 log_err("parseDouble('%s') failed. The error is : %s\n", aescstrdup(temp1, resultlength), myErrorName(status));
469 resultlength=0;
471 resultlengthneeded=unum_format(per_fr, l, NULL, resultlength, &pos1, &status);
475 resultlength=resultlengthneeded+1;
476 result=(UChar*)malloc(sizeof(UChar) * resultlength);
479 unum_format(per_fr, l, result, resultlength, &pos1, &status);
519 resultlength=0;
520 resultlengthneeded=unum_toPattern(pattern, false, NULL, resultlength, &status);
524 resultlength=resultlengthneeded+1;
525 result=(UChar*)malloc(sizeof(UChar) * resultlength);
526 unum_toPattern(pattern, false, result, resultlength, &status);
544 resultlength=0;
545 resultlengthneeded=unum_toPattern(cur_def, false, NULL, resultlength, &status);
549 resultlength=resultlengthneeded+1;
550 result=(UChar*)malloc(sizeof(UChar) * resultlength);
551 unum_toPattern(cur_def, false, result, resultlength, &status);
580 resultlength=0;
581 resultlengthneeded=unum_format(cur_def, l, NULL, resultlength, &pos1, &status);
585 resultlength=resultlengthneeded+1;
586 result=(UChar*)malloc(sizeof(UChar) * resultlength);
587 unum_format(cur_def, l, result, resultlength, &pos1, &status);
613 resultlength=0;
614 resultlengthneeded=unum_format(cur_frpattern, l, NULL, resultlength, &pos1, &status);
618 resultlength=resultlengthneeded+1;
619 unum_format(cur_frpattern, l, temp1, resultlength, &pos1, &status);
654 resultlength = unum_getSymbol(cur_frpattern, (UNumberFormatSymbol)i, symbol, UPRV_LENGTHOF(symbol), &status);
659 if(resultlength != 2 || symbol[0] != 0x41 + i || symbol[1] != 0x61 + i) {
677 resultlength=5;
678 unum_getTextAttribute(cur_fr, UNUM_NEGATIVE_SUFFIX, temp, resultlength, &status);
688 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status);
708 unum_getTextAttribute(def, UNUM_POSITIVE_PREFIX, temp, resultlength, &status);
725 unum_getTextAttribute(def, UNUM_NEGATIVE_PREFIX, temp, resultlength, &status);
742 unum_getTextAttribute(def, UNUM_NEGATIVE_SUFFIX, temp, resultlength, &status);
759 unum_getTextAttribute(def, UNUM_POSITIVE_SUFFIX, temp, resultlength, &status);
1234 int32_t resultlength;
1250 resultlength=0;
1251 resultlengthneeded=unum_formatDouble(fmt, d, NULL, resultlength, NULL, &status);
1255 resultlength=resultlengthneeded+1;
1256 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1257 unum_formatDouble(fmt, d, result, resultlength, NULL, &status);
1316 int32_t resultlength;
1352 resultlength=0;
1353 resultlengthneeded=unum_toPattern(pattern, false, NULL, resultlength, &status);
1357 resultlength=resultlengthneeded+1;
1358 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1359 unum_toPattern(pattern, false, result, resultlength, &status);
1380 resultlength=0;
1382 resultlengthneeded=unum_formatDouble(pattern, d, NULL, resultlength, &pos1, &status);
1386 resultlength=resultlengthneeded+1;
1387 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1388 unum_formatDouble(pattern, d, result, resultlength, NULL, &status);