Lines Matching defs:testLocale
259 char *testLocale = 0;
263 testLocale=(char*)malloc(sizeof(char) * (strlen(rawData2[NAME][i])+1));
264 strcpy(testLocale,rawData2[NAME][i]);
266 log_verbose("Testing %s .....\n", testLocale);
267 cap=uloc_getLanguage(testLocale, NULL, 0, &status);
271 uloc_getLanguage(testLocale, temp, cap+1, &status);
281 cap=uloc_getCountry(testLocale, temp, cap, &status);
285 uloc_getCountry(testLocale, temp, cap+1, &status);
295 cap=uloc_getVariant(testLocale, temp, cap, &status);
299 uloc_getVariant(testLocale, temp, cap+1, &status);
308 cap=uloc_getName(testLocale, NULL, 0, &status);
312 uloc_getName(testLocale, name, cap+1, &status);
314 log_err("ERROR: in uloc_getName(%s,NULL,0,..), expected U_BUFFER_OVERFLOW_ERROR!\n", testLocale);
326 free(testLocale);
526 char* testLocale = 0;
531 testLocale=(char*)malloc(sizeof(char) * 1);
538 testLocale=(char*)realloc(testLocale, sizeof(char) * (u_strlen(dataTable[NAME][i])+1));
539 u_austrcpy(testLocale, dataTable[NAME][i]);
541 log_verbose("Testing %s ......\n", testLocale);
543 temp=uloc_getISO3Language(testLocale);
551 temp=uloc_getISO3Country(testLocale);
558 sprintf(temp2, "%x", (int)uloc_getLCID(testLocale));
565 free(testLocale);
864 const char *testLocale;
884 testLocale=rawData2[NAME][i];
886 log_verbose("Testing..... %s\n", testLocale);
889 maxresultsize=uloc_getDisplayLanguage(testLocale, displayLocale, NULL, maxresultsize, &status);
894 uloc_getDisplayLanguage(testLocale, displayLocale, testLang, maxresultsize + 1, &status);
905 maxresultsize=uloc_getDisplayScript(testLocale, displayLocale, NULL, maxresultsize, &status);
910 uloc_getDisplayScript(testLocale, displayLocale, testScript, maxresultsize + 1, &status);
921 maxresultsize=uloc_getDisplayCountry(testLocale, displayLocale, NULL, maxresultsize, &status);
926 uloc_getDisplayCountry(testLocale, displayLocale, testCtry, maxresultsize + 1, &status);
937 maxresultsize=uloc_getDisplayVariant(testLocale, displayLocale, NULL, maxresultsize, &status);
942 uloc_getDisplayVariant(testLocale, displayLocale, testVar, maxresultsize + 1, &status);
953 maxresultsize=uloc_getDisplayName(testLocale, displayLocale, NULL, maxresultsize, &status);
958 uloc_getDisplayName(testLocale, displayLocale, testName, maxresultsize + 1, &status);
3109 const char* testLocale = 0;
3146 testLocale=rawData2[NAME][i];
3148 log_verbose("Testing %s ......\n", testLocale);