/external/chromium-trace/catapult/systrace/systrace/ |
AUTHORS | 7 # Organization <fnmatch pattern> 9 # See python fnmatch module documentation for more information.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/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/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/ |
find_files.py | 5 import fnmatch 16 for filename in fnmatch.filter(filenames, pattern):
|
/external/jsoncpp/scons-tools/ |
globtool.py | 1 import fnmatch 24 if fnmatch.fnmatchcase( fn, include ): 29 if fnmatch.fnmatchcase( fn, exclude ):
|
/external/toolchain-utils/automation/common/ |
machine.py | 5 from fnmatch import fnmatch 64 return all([not machine.locked, fnmatch(machine.hostname, self.hostname), 65 fnmatch(machine.label, self.label), fnmatch(machine.os,
|
/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 */
|
/external/python/cpython2/Doc/library/ |
fnmatch.rst | 1 :mod:`fnmatch` --- Unix filename pattern matching 4 .. module:: fnmatch 12 **Source code:** :source:`Lib/fnmatch.py` 39 :func:`fnmatch` to match pathname segments). Similarly, filenames starting with 44 .. function:: fnmatch(filename, pattern) 56 import fnmatch 60 if fnmatch.fnmatch(file, '*.txt'): 73 ``[n for n in names if fnmatch(n, pattern)]``, but implemented more efficiently. 85 >>> import fnmatch, r [all...] |
glob.rst | 18 the :func:`os.listdir` and :func:`fnmatch.fnmatch` functions in concert, and 19 not by actually invoking a subshell. Note that unlike :func:`fnmatch.fnmatch`, 69 Module :mod:`fnmatch`
|
/external/python/cpython2/Lib/ |
glob.py | 6 import fnmatch 22 fnmatch. However, unlike fnmatch, filenames starting with a 33 fnmatch. However, unlike fnmatch, filenames starting with a 83 return fnmatch.filter(names, pattern)
|
/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)
|
/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().
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
glob.py | 6 import fnmatch
13 The pattern may contain simple shell-style wildcards a la fnmatch.
21 The pattern may contain simple shell-style wildcards a la fnmatch.
61 return fnmatch.filter(names, pattern)
|
/external/openssh/openbsd-compat/ |
charclass.h | 10 * POSIX character class support for fnmatch() and glob().
|
/external/pdfium/ |
AUTHORS | 7 # Organization <fnmatch pattern> 9 # See python fnmatch module documentation for more information.
|
/development/scripts/ |
boardconfig_usage_analysis.py | 4 import fnmatch 64 fnmatch.fnmatch(x, 'BoardConfig*.mk')) 69 fnmatch.fnmatch(x, '*.mk') or fnmatch.fnmatch(x, 'Makefile'))
|