Lines Matching defs:wildcard
90 * be wildcard-expanded.
592 * See if the given name has any wildcard characters in it and all braces and
755 * expanded word contains wildcard characters, it is expanded further,
837 * The wildcard isn't in the first component.
838 * Find all the components up to the one with the wildcard.
892 const char *brace, *slash, *wildcard, *wildcardComponent;
914 /* Find the first wildcard in the pattern. */
915 for (wildcard = pattern; *wildcard != '\0'; wildcard++)
916 if (*wildcard == '?' || *wildcard == '[' || *wildcard == '*')
919 if (*wildcard == '\0') {
921 * No directory component and no wildcard at all -- this
929 /* Back up to the start of the component containing the wildcard. */
931 wildcardComponent = wildcard;
936 /* The first component contains the wildcard. */