Lines Matching +defs:temp +defs:string
989 /* return of TRUE = resolved string fit, FALSE = didn't fit. Not
992 static Boolean Resolve(register _Xconst char *source, /* The source string */
994 Substitution sub, /* Array of string values to substitute */
996 char *buf, /* Where to put the resolved string; */
1056 /* Substitute the substitution string */
1195 char *temp;
1226 for (temp = buf; (temp = strchr(temp, ' ')) != NULL;)
1227 *temp++ = '-';
1240 for (temp = buf; (temp = strchr(temp, ' ')) != NULL;)
1241 *temp++ = '-';
1257 String string;
1268 string = ExtractLocaleName(pd->language);
1270 if (string == NULL || string[0] == '\0') {
1276 len = (int) strlen(string) + 1;
1277 subs[0].substitution = (_XtString) string;
1288 ch = strchr(string, '_');
1290 len = (int) (ch - string);
1291 (void) strncpy(p1, string, (size_t) len);
1293 string = ch + 1;
1301 ch = strchr(string, '.');
1303 len = (int) (ch - string);
1304 strncpy(*rest, string, (size_t) len);
1309 (void) strcpy(*rest, string);