Home | History | Annotate | Download | only in cintltst

Lines Matching refs:testLang

883     UChar  *testLang  = 0;
909 testLang=(UChar*)malloc(sizeof(UChar) * (maxresultsize+1));
910 uloc_getDisplayLanguage(testLocale, displayLocale, testLang, maxresultsize + 1, &status);
914 testLang=&_NUL;
1004 if (0 !=u_strcmp(testLang,expectedLang)) {
1005 log_data_err(" Display Language mismatch: got %s expected %s displayLocale=%s (Are you missing data?)\n", austrdup(testLang), austrdup(expectedLang), displayLocale);
1027 if(testLang!=&_NUL) {
1028 free(testLang);
1325 UChar *testLang=0;
1336 testLang=(UChar*)malloc(sizeof(UChar) * (size + 1));
1337 uloc_getDisplayLanguage(languageCodes[i], inLocale[localeIndex], testLang, size + 1, &status);
1341 if (u_strcmp(testLang, expectedLang) != 0)
1343 languageCodes[i], languageNames[i], austrdup(testLang));
1344 free(testLang);