Lines Matching defs:wildcard
40 * A wildcard only matches jar files, not class files in the same
51 * wildcard is replaced by the (possibly empty) sequence of elements
116 * WildcardIterator_for(wildcard) returns an iterator.
118 * of an entry in the wildcard's directory. The basename's memory
133 WildcardIterator_for(const char *wildcard)
137 HANDLE handle = FindFirstFile(wildcard, &find_data);
175 WildcardIterator_for(const char *wildcard)
178 int wildlen = strlen(wildcard);
182 char *dirname = JLI_StringDup(wildcard);
354 wildcardConcat(const char *wildcard, const char *basename)
356 int wildlen = strlen(wildcard);
360 memcpy(filename, wildcard, wildlen-1);
366 wildcardFileList(const char *wildcard)
370 WildcardIterator it = WildcardIterator_for(wildcard);
375 FileList_add(fl, wildcardConcat(wildcard, basename));