/external/chromium-trace/catapult/ |
AUTHORS | 7 # Organization <fnmatch pattern> 9 # See python fnmatch module documentation for more information.
|
/external/chromium-trace/catapult/systrace/systrace/ |
AUTHORS | 7 # Organization <fnmatch pattern> 9 # See python fnmatch module documentation for more information.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_fnmatch.py | 1 """Test cases for the fnmatch module.""" 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache 7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch): 63 fnmatch('foo', '?' * i)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_fnmatch.py | 1 """Test cases for the fnmatch module.""" 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache 7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch): 63 fnmatch('foo', '?' * i)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fnmatch.py | 1 """Test cases for the fnmatch module.""" 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache 7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch): 63 fnmatch('foo', '?' * i)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fnmatch.py | 1 """Test cases for the fnmatch module.""" 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache 7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge 15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch): 63 fnmatch('foo', '?' * i)
|
/external/skia/gyp/ |
find.py | 15 import fnmatch 22 if fnmatch.fnmatch(f, sys.argv[2]):
|
/ndk/sources/host-tools/make-3.81/glob/ |
Makefile.ami | 1 # Makefile for standalone libglob.a (fnmatch, glob). -*-Makefile-*- 42 glob.lib : glob.o fnmatch.o 43 $(AR) $(ARFLAGS) $@ glob.o fnmatch.o 49 glob.o: $(srcdir)glob.h $(srcdir)fnmatch.h glob.c 50 fnmatch.o: $(srcdir)fnmatch.h fnmatch.c
|
SMakefile | 1 # Makefile for standalone distribution of libglob.a (fnmatch, glob). 43 glob.lib : glob.o fnmatch.o 44 $(AR) $(ARFLAGS) $@ glob.o fnmatch.o 50 glob.o: $(srcdir)glob.h $(srcdir)fnmatch.h glob.c 51 fnmatch.o: $(srcdir)fnmatch.h fnmatch.c
|
fnmatch.h | 35 it is used only inside the prototype for `fnmatch', which is elided in 53 /* Bits set in the FLAGS argument to `fnmatch'. */ 64 /* Value returned by `fnmatch' if STRING does not match PATTERN. */ 68 `fnmatch'. Since this is not the case here it will never be 77 extern int fnmatch __P ((__const char *__pattern, __const char *__name, 84 #endif /* fnmatch.h */
|
Makefile.am | 25 libglob_a_SOURCES = glob.c glob.h fnmatch.c fnmatch.h
|
ChangeLog | 8 * fnmatch.h, glob.h [WINDOWS32]: Fix ifdefs in headers. 30 * fnmatch.c: Last GLIBC version wouldn't compile outside of GLIBC 48 * fnmatch.c: Update to latest version from GLIBC. 52 * glob.c, glob.h, fnmatch.c, fnmatch.h: Update to latest version 55 * fnmatch.c (internal_fnmatch): Use K&R definition syntax, not ANSI. 68 * glob.c, fnmatch.c: New versions from the GLIBC folks (Ulrich 79 * glob.c, fnmatch.c: New versions of these files from the GLIBC 90 bother trying fnmatch() if the strcmp() fails. 103 * SMakefile, Makefile.ami, glob.c, glob.h, fnmatch.c: Updated fro [all...] |
/hardware/bsp/intel/peripheral/libmraa/tests/ |
check_clean.py | 4 import re, fnmatch, os
|
/external/jsoncpp/scons-tools/ |
globtool.py | 1 import fnmatch 24 if fnmatch.fnmatchcase( fn, include ): 29 if fnmatch.fnmatchcase( fn, exclude ):
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
fnmatch.h | 40 /* Bits set in the FLAGS argument to `fnmatch'. */ 52 /* Value returned by `fnmatch' if STRING does not match PATTERN. */ 56 `fnmatch'. Since this is not the case here it will never be 65 extern int fnmatch (__const char *__pattern, __const char *__name, 72 #endif /* fnmatch.h */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
fnmatch.h | 40 /* Bits set in the FLAGS argument to `fnmatch'. */ 52 /* Value returned by `fnmatch' if STRING does not match PATTERN. */ 56 `fnmatch'. Since this is not the case here it will never be 65 extern int fnmatch (__const char *__pattern, __const char *__name, 72 #endif /* fnmatch.h */
|
/toolchain/binutils/binutils-2.25/include/ |
fnmatch.h | 36 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 */
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
glob.py | 6 import fnmatch 22 fnmatch. However, unlike fnmatch, filenames starting with a 33 fnmatch. However, unlike fnmatch, filenames starting with a 78 return fnmatch.filter(names, pattern)
|
fnmatch.py | 3 fnmatch(FILENAME, PATTERN) matches according to the local convention. 15 __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"] 24 def fnmatch(name, pat): function 70 This is a version of fnmatch() which doesn't case-normalize
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
glob.py | 6 import fnmatch 22 fnmatch. However, unlike fnmatch, filenames starting with a 33 fnmatch. However, unlike fnmatch, filenames starting with a 78 return fnmatch.filter(names, pattern)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
glob.py | 6 import fnmatch 22 fnmatch. However, unlike fnmatch, filenames starting with a 33 fnmatch. However, unlike fnmatch, filenames starting with a 78 return fnmatch.filter(names, pattern)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
glob.py | 6 import fnmatch 22 fnmatch. However, unlike fnmatch, filenames starting with a 33 fnmatch. However, unlike fnmatch, filenames starting with a 78 return fnmatch.filter(names, pattern)
|
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
charclass.h | 8 * POSIX character class support for fnmatch() and glob().
|
/external/autotest/site_utils/docgen/ |
fs_find_tests.py | 13 import fnmatch 32 for filename in fnmatch.filter(filenames, 'control*'):
|
/external/pdfium/ |
AUTHORS | 7 # Organization <fnmatch pattern> 9 # See python fnmatch module documentation for more information.
|