Home | History | Annotate | Download | only in common

Lines Matching defs:temp

111     char ** temp;
114 temp = _installedLocales;
119 uprv_free(temp);
134 char ** temp;
144 temp = (char **) uprv_malloc(sizeof(char*) * (localeCount+1));
146 if (temp != NULL) {
149 ures_getNextString(&installed, NULL, (const char **)&temp[i++], &status);
151 temp[i] = NULL;
157 _installedLocales = temp;
158 temp = NULL;
163 uprv_free(temp);