Home | History | Annotate | Download | only in cintltst

Lines Matching refs:source

145     UChar *source=NULL, *result=NULL; 
151 source=CharsToUChars(canonTests[x][0]);
152 neededLen= unorm_normalize(source, u_strlen(source), UNORM_NFD, 0, NULL, 0, &status);
158 unorm_normalize(source, u_strlen(source), UNORM_NFD, 0, result, resLen, &status);
161 log_data_err("ERROR in unorm_normalize at %s: %s - (Are you missing data?)\n", austrdup(source), myErrorName(status) );
166 free(source);
174 UChar *source=NULL, *result=NULL;
180 source=CharsToUChars(compatTests[x][0]);
181 neededLen= unorm_normalize(source, u_strlen(source), UNORM_NFKD, 0, NULL, 0, &status);
187 unorm_normalize(source, u_strlen(source), UNORM_NFKD, 0, result, resLen, &status);
190 log_data_err("ERROR in unorm_normalize at %s: %s - (Are you missing data?)\n", austrdup(source), myErrorName(status) );
195 free(source);
203 UChar *source=NULL, *result=NULL;
209 source=CharsToUChars(canonTests[x][0]);
210 neededLen= unorm_normalize(source, u_strlen(source), UNORM_NFC, 0, NULL, 0, &status);
216 unorm_normalize(source, u_strlen(source), UNORM_NFC, 0, result, resLen, &status);
219 log_data_err("ERROR in unorm_normalize at %s: %s - (Are you missing data?)\n", austrdup(source),myErrorName(status) );
224 free(source);
232 UChar *source=NULL, *result=NULL;
238 source=CharsToUChars(compatTests[x][0]);
239 neededLen= unorm_normalize(source, u_strlen(source), UNORM_NFKC, 0, NULL, 0, &status);
245 unorm_normalize(source, u_strlen(source), UNORM_NFKC, 0, result, resLen, &status);
248 log_data_err("ERROR in unorm_normalize at %s: %s - (Are you missing data?)\n", austrdup(source), myErrorName(status) );
253 free(source);
604 /* NULL source */
1191 /* expected iterator indexes in the source string for each iteration piece */