Home | History | Annotate | Download | only in cintltst

Lines Matching refs:dataTable

155 static UChar*** dataTable=0;
527 testLocale=(char*)realloc(testLocale, sizeof(char) * (u_strlen(dataTable[NAME][i])+1));
528 u_austrcpy(testLocale, dataTable[NAME][i]);
535 if (0 != u_strcmp(expected, dataTable[LANG3][i])) {
537 austrdup(dataTable[LANG3][i]));
543 if (0 != u_strcmp(expected, dataTable[CTRY3][i])) {
545 austrdup(dataTable[CTRY3][i]));
815 expectedLang=dataTable[compareIndex][i];
817 expectedLang=dataTable[DLANG_EN][i];
819 expectedScript=dataTable[compareIndex + 1][i];
821 expectedScript=dataTable[DSCRIPT_EN][i];
823 expectedCtry=dataTable[compareIndex + 2][i];
825 expectedCtry=dataTable[DCTRY_EN][i];
827 expectedVar=dataTable[compareIndex + 3][i];
829 expectedVar=dataTable[DVAR_EN][i];
831 expectedName=dataTable[compareIndex + 4][i];
833 expectedName=dataTable[DNAME_EN][i];
1009 dataTable = (UChar***)(calloc(sizeof(UChar**),LOCALE_INFO_SIZE));
1012 dataTable[i] = (UChar**)(calloc(sizeof(UChar*),LOCALE_SIZE));
1014 dataTable[i][j] = CharsToUChars(rawData2[i][j]);
1022 if(dataTable != NULL) {
1025 free(dataTable[i][j]);
1027 free(dataTable[i]);
1029 free(dataTable);
1031 dataTable = NULL;