Searched refs:fnmatch (Results 1 - 25 of 152) sorted by relevance

1234567

/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_fnmatch.rb8 assert_equal(t.include?(i.chr), File.fnmatch("[#{s}]", i.chr, File::FNM_DOTMATCH))
9 assert_equal(t.include?(i.chr), !File.fnmatch("[^#{s}]", i.chr, File::FNM_DOTMATCH))
10 assert_equal(t.include?(i.chr), !File.fnmatch("[!#{s}]", i.chr, File::FNM_DOTMATCH))
14 assert(File.fnmatch('\[1\]' , '[1]'), "[ruby-dev:22819]")
15 assert(File.fnmatch('*?', 'a'), "[ruby-dev:22815]")
16 assert(File.fnmatch('*/', 'a/'))
17 assert(File.fnmatch('\[1\]' , '[1]', File::FNM_PATHNAME))
18 assert(File.fnmatch('*?', 'a', File::FNM_PATHNAME))
19 assert(File.fnmatch('*/', 'a/', File::FNM_PATHNAME))
21 assert(File.fnmatch('ca
[all...]
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dfnmatch.h55 * @(#)fnmatch.h 8.1 (Berkeley) 6/2/93
82 int fnmatch(const char *, const char *, int) __DARWIN_ALIAS(fnmatch); variable
85 int fnmatch(const char *, const char *, int) LIBC_ALIAS(fnmatch);
/macosx-10.10.1/sudo-73/src/emul/
H A Dfnmatch.h28 int fnmatch __P((const char *pattern, const char *string, int flags));
/macosx-10.10.1/libffi-18.1/tests/
H A Drun-tests.py7 from fnmatch import fnmatch
H A Ddejagnu.py10 from fnmatch import fnmatch
49 return fnmatch(platform, matchstr)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/
H A Drun-tests.py7 from fnmatch import fnmatch
H A Ddejagnu.py10 from fnmatch import fnmatch
49 return fnmatch(platform, matchstr)
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dfnmatch_.h33 /* Bits set in the FLAGS argument to `fnmatch'. */
45 /* Value returned by `fnmatch' if STRING does not match PATTERN. */
49 `fnmatch'. Since this is not the case here it will never be
58 extern int fnmatch (const char *__pattern, const char *__name,
65 #endif /* fnmatch.h */
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dfnmatch.h24 * posix fnmatch interface definitions
32 /* fnmatch flags */
39 /* nonstandard fnmatch() flags */
49 /* fnmatch error codes -- other non-zero values from <regex.h> */
57 extern int fnmatch(const char*, const char*, int);
H A Dfnmatch.c24 * fnmatch implementation
31 #include <fnmatch.h>
35 int fnm; /* fnmatch flag */
53 fnmatch(const char* pattern, const char* subject, register int flags) function
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Dfnmatch.h36 it is used only inside the prototype for `fnmatch', which is elided in
47 /* Bits set in the FLAGS argument to `fnmatch'. */
58 /* Value returned by `fnmatch' if STRING does not match PATTERN. */
63 extern int fnmatch __P ((const char *__pattern, const char *__string,
70 #endif /* fnmatch.h */
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dloader.py3 from fnmatch import fnmatch
20 if fnmatch(fn, data[0]):
H A Ddejagnu.py9 from fnmatch import fnmatch
49 return fnmatch(platform, matchstr)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dloader.py3 from fnmatch import fnmatch
20 if fnmatch(fn, pathPattern):
H A Ddejagnu.py10 from fnmatch import fnmatch
50 return fnmatch(platform, matchstr)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dloader.py4 from fnmatch import fnmatch
22 if fnmatch(fn, pathPattern):
H A Ddejagnu.py10 from fnmatch import fnmatch
50 return fnmatch(platform, matchstr)
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dfnmatch.hin1 /* $NetBSD: fnmatch.h,v 1.5 1994/10/26 00:55:53 cgd Exp $ */
31 * @(#)fnmatch.h 8.1 (Berkeley) 6/2/93
60 #define fnmatch(a,b,c) rk_fnmatch(a,b,c)
/macosx-10.10.1/file_cmds-242/mtree/
H A Dexcludes.c38 #include <fnmatch.h>
103 /* fnmatch(3) has a funny return value convention... */
104 #define MATCH(g, n) (fnmatch((g), (n), FNM_PATHNAME) == 0)
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dfnmatch.hin35 it is used only inside the prototype for `fnmatch', which is elided in
46 /* Bits set in the FLAGS argument to `fnmatch'. */
57 /* Value returned by `fnmatch' if STRING does not match PATTERN. */
62 extern int fnmatch __P ((const char *__pattern, const char *__string,
69 #endif /* fnmatch.h */
H A Dfnmatch.c21 /* Enable GNU extensions in fnmatch.h. */
27 #include <fnmatch.h>
46 fnmatch (const char *pattern, const char *string, int flags) function
120 fnmatch (p, n, flags & ~FNM_PERIOD) == 0)
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dfnmatch.c47 #include <fnmatch.h>
68 fnmatch (const char *pattern, const char *string, int flags) function
119 fnmatch (p, n, flags & ~FNM_PERIOD) == 0)
/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Dkadm5_locl.h76 #include <fnmatch.h>
H A Dget_princs_s.c67 if(fnmatch(d->exp, princ, 0) == 0 || fnmatch(d->exp2, princ, 0) == 0)
/macosx-10.10.1/rsync-45/rsync/
H A Dwildtest.c29 #include <fnmatch.h>
88 fn_matched = !fnmatch(pattern, text, flags);
97 printf("fnmatch disagreement on line %d:\n %s\n %s\n expected %s match\n",
212 printf(" fnmatch error%s found.\n", fnmatch_errors == 1? "" : "s");

Completed in 219 milliseconds

1234567