Lines Matching defs:colon
2409 FcChar8 *env, *e, *colon;
2434 colon = (FcChar8 *) strchr ((char *) e, FC_SEARCH_PATH_SEPARATOR);
2435 if (!colon)
2436 colon = e + strlen ((char *) e);
2437 path[i] = malloc (colon - e + 1);
2440 strncpy ((char *) path[i], (const char *) e, colon - e);
2441 path[i][colon - e] = '\0';
2442 if (*colon)
2443 e = colon + 1;
2445 e = colon;
2600 * The directories in $XDG_DATA_DIRS should be seperated with a colon ':'.