Home | History | Annotate | Download | only in cintltst

Lines Matching refs:resultlength

80     int32_t resultlength;
164 resultlength=0;
165 resultlengthneeded=udat_format(def, d, NULL, resultlength, NULL, &status);
169 resultlength=resultlengthneeded+1;
174 result=(UChar*)malloc(sizeof(UChar) * resultlength);
175 udat_format(def, d, result, resultlength, NULL, &status);
277 resultlength=0;
278 resultlengthneeded=udat_toPattern(def1, FALSE, NULL, resultlength, &status);
282 resultlength=resultlengthneeded + 1;
283 result=(UChar*)malloc(sizeof(UChar) * resultlength);
284 udat_toPattern(def1, FALSE, result, resultlength, &status);
577 int32_t resultlength;
633 resultlength=0;
634 resultlengthout=udat_getSymbols(fr, UDAT_WEEKDAYS, 5 , NULL, resultlength, &status);
638 resultlength=resultlengthout+1;
643 result=(UChar*)malloc(sizeof(UChar) * resultlength);
644 udat_getSymbols(fr, UDAT_WEEKDAYS, 5, result, resultlength, &status);
692 resultlength=0;
693 resultlengthout=udat_toPattern(fr, FALSE, NULL, resultlength, &status);
697 resultlength=resultlengthout + 1;
698 pattern=(UChar*)malloc(sizeof(UChar) * resultlength);
699 udat_toPattern(fr, FALSE, pattern, resultlength, &status);
708 resultlength=0;
709 resultlengthout=udat_toPattern(def, FALSE, NULL, resultlength,&status);
713 resultlength=resultlengthout + 1;
718 result=(UChar*)malloc(sizeof(UChar) * resultlength);
719 udat_toPattern(fr, FALSE,result, resultlength, &status);
733 resultlength=0;
734 resultlengthout=udat_getSymbols(fr, UDAT_MONTHS, 11 , NULL, resultlength, &status);
737 resultlength=resultlengthout+1;
742 result=(UChar*)malloc(sizeof(UChar) * resultlength);
743 udat_getSymbols(fr, UDAT_MONTHS, 11, result, resultlength, &status);
748 resultlength=resultlengthout+1;
750 udat_setSymbols(def, UDAT_MONTHS, 11, result, resultlength, &status);
758 resultlength=0;
759 resultlengthout=udat_getSymbols(def, UDAT_MONTHS, 11, NULL, resultlength, &status);
762 resultlength=resultlengthout+1;
763 value=(UChar*)malloc(sizeof(UChar) * resultlength);
764 udat_getSymbols(def, UDAT_MONTHS, 11, value, resultlength, &status);
1056 int32_t resultlength, resultlengthout;
1061 resultlength=0;
1062 resultlengthout=udat_getSymbols(datfor, type, idx , NULL, resultlength, &status);
1066 resultlength=resultlengthout+1;
1067 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1068 udat_getSymbols(datfor, type, idx, result, resultlength, &status);
1090 int32_t resultlength, resultlengthout;
1103 resultlength=0;
1104 resultlengthout=udat_getSymbols(datfor, type, idx, NULL, resultlength, &status);
1107 resultlength=resultlengthout+1;
1108 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1109 udat_getSymbols(datfor, type, idx, result, resultlength, &status);
1133 int32_t resultlength, resultlengthout;
1136 resultlength=0;
1137 resultlengthout=udat_getSymbols(from, type, idx , NULL, resultlength, &status);
1140 resultlength=resultlengthout+1;
1141 result=(UChar*)malloc(sizeof(UChar) * resultlength);
1142 udat_getSymbols(from, type, idx, result, resultlength, &status);
1149 resultlength=resultlengthout+1;
1150 udat_setSymbols(to, type, idx, result, resultlength, &status);
1157 resultlength=0;
1158 resultlengthout=udat_getSymbols(to, type, idx, NULL, resultlength, &status);
1161 resultlength=resultlengthout+1;
1162 value=(UChar*)malloc(sizeof(UChar) * resultlength);
1163 udat_getSymbols(to, type, idx, value, resultlength, &status);
1186 int32_t resultlength, resultlengthneeded;
1189 resultlength=0;
1190 resultlengthneeded=unum_formatDouble(numfor, d, NULL, resultlength, NULL, &status);
1194 resultlength=resultlengthneeded+1;
1195 /*result2=(UChar*)malloc(sizeof(UChar) * resultlength);*/ /* this leaks */
1196 result2=(UChar*)ctst_malloc(sizeof(UChar) * resultlength); /*this won't*/
1197 unum_formatDouble(numfor, d, result2, resultlength, NULL, &status);