Lines Matching defs:loose
609 char *loose, *tight;
611 loose = strrchr(remainder, '*');
614 if ((loose == NULL) && (tight == NULL)) {
618 if ((loose == NULL) || (tight && (strcoll(loose, tight) < 0))) {
623 if ((tight == NULL) || (strcoll(tight, loose) < 0)) {
624 *loose++ = '\0';
625 *part = XtNewString(loose);
668 char *loose, *tight;
692 loose = strchr(resource, '*');
694 if ((loose == NULL) && (tight == NULL))
697 loose_len = (loose) ? (int) strlen(loose) : 0;
700 if ((loose == NULL) || (tight_len > loose_len))
703 remainder = XtNewString(loose);