Home | History | Annotate | Download | only in cintltst

Lines Matching refs:resultlength

73     int32_t resultlength;
157 resultlength=0;
158 resultlengthneeded=udat_format(def, d, NULL, resultlength, NULL, &status);
162 resultlength=resultlengthneeded+1;
167 result=(UChar*)malloc(sizeof(UChar) * resultlength);
168 udat_format(def, d, result, resultlength, NULL, &status);
270 resultlength=0;
271 resultlengthneeded=udat_toPattern(def1, FALSE, NULL, resultlength, &status);
275 resultlength=resultlengthneeded + 1;
276 result=(UChar*)malloc(sizeof(UChar) * resultlength);
277 udat_toPattern(def1, FALSE, result, resultlength, &status);
560 int32_t resultlength;
606 resultlength=0;
607 resultlengthout=udat_getSymbols(fr, UDAT_WEEKDAYS, 5 , NULL, resultlength, &status);
611 resultlength=resultlengthout+1;
616 result=(UChar*)malloc(sizeof(UChar) * resultlength);
617 udat_getSymbols(fr, UDAT_WEEKDAYS, 5, result, resultlength, &status);
661 resultlength=0;
662 resultlengthout=udat_toPattern(fr, FALSE, NULL, resultlength, &status);
666 resultlength=resultlengthout + 1;
667 pattern=(UChar*)malloc(sizeof(UChar) * resultlength);
668 udat_toPattern(fr, FALSE, pattern, resultlength, &status);
677 resultlength=0;
678 resultlengthout=udat_toPattern(def, FALSE, NULL, resultlength,&status);
682 resultlength=resultlengthout + 1;
687 result=(UChar*)malloc(sizeof(UChar) * resultlength);
688 udat_toPattern(fr, FALSE,result, resultlength, &status);
702 resultlength=0;
703 resultlengthout=udat_getSymbols(fr, UDAT_MONTHS, 11 , NULL, resultlength, &status);
706 resultlength=resultlengthout+1;
711 result=(UChar*)malloc(sizeof(UChar) * resultlength);
712 udat_getSymbols(fr, UDAT_MONTHS, 11, result, resultlength, &status);
717 resultlength=resultlengthout+1;
719 udat_setSymbols(def, UDAT_MONTHS, 11, result, resultlength, &status);
727 resultlength=0;
728 resultlengthout=udat_getSymbols(def, UDAT_MONTHS, 11, NULL, resultlength, &status);
731 resultlength=resultlengthout+1;
732 value=(UChar*)malloc(sizeof(UChar) * resultlength);
733 udat_getSymbols(def, UDAT_MONTHS, 11, value, resultlength, &status);
992 int32_t resultlength, resultlengthout;
997 resultlength=0;
998 resultlengthout=udat_getSymbols(datfor, type, idx , NULL, resultlength, &status);
1002 resultlength=resultlengthout+1;
1003 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1004 udat_getSymbols(datfor, type, idx, result, resultlength, &status);
1026 int32_t resultlength, resultlengthout;
1038 resultlength=0;
1039 resultlengthout=udat_getSymbols(datfor, type, idx, NULL, resultlength, &status);
1042 resultlength=resultlengthout+1;
1043 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1044 udat_getSymbols(datfor, type, idx, result, resultlength, &status);
1068 int32_t resultlength, resultlengthout;
1071 resultlength=0;
1072 resultlengthout=udat_getSymbols(from, type, idx , NULL, resultlength, &status);
1075 resultlength=resultlengthout+1;
1076 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1077 udat_getSymbols(from, type, idx, result, resultlength, &status);
1084 resultlength=resultlengthout+1;
1085 udat_setSymbols(to, type, idx, result, resultlength, &status);
1092 resultlength=0;
1093 resultlengthout=udat_getSymbols(to, type, idx, NULL, resultlength, &status);
1096 resultlength=resultlengthout+1;
1097 value=(UChar*)malloc(sizeof(UChar) * resultlength);
1098 udat_getSymbols(to, type, idx, value, resultlength, &status);
1121 int32_t resultlength, resultlengthneeded;
1124 resultlength=0;
1125 resultlengthneeded=unum_formatDouble(numfor, d, NULL, resultlength, NULL, &status);
1129 resultlength=resultlengthneeded+1;
1130 /*result2=(UChar*)malloc(sizeof(UChar) * resultlength);*/ /* this leaks */
1131 result2=(UChar*)ctst_malloc(sizeof(UChar) * resultlength); /*this won't*/
1132 unum_formatDouble(numfor, d, result2, resultlength, NULL, &status);