HomeSort by relevance Sort by last modified time
    Searched full:fnmatch (Results 1 - 25 of 393) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/python/cpython3/Lib/test/
test_fnmatch.py 1 """Test cases for the fnmatch module."""
5 from fnmatch import fnmatch, fnmatchcase, translate, filter
9 def check_match(self, filename, pattern, should_match=1, fn=fnmatch):
47 self.assertRaises(TypeError, fnmatch, 'test', b'*')
48 self.assertRaises(TypeError, fnmatch, b'test', '*')
test_tracemalloc.py 674 def fnmatch(inclusive, filename, pattern): function in function:TestFilters.test_filter_match_filename
678 self.assertTrue(fnmatch(True, "abc", "abc"))
679 self.assertFalse(fnmatch(True, "12356", "abc"))
680 self.assertFalse(fnmatch(True, "<unknown>", "abc"))
682 self.assertFalse(fnmatch(False, "abc", "abc"))
683 self.assertTrue(fnmatch(False, "12356", "abc"))
684 self.assertTrue(fnmatch(False, "<unknown>", "abc"))
687 def fnmatch(filename, pattern): function in function:TestFilters.test_filter_match_filename_joker
692 self.assertFalse(fnmatch('abc', ''))
693 self.assertFalse(fnmatch('', 'abc')
    [all...]
  /external/deqp/scripts/verify/
package.py 24 from fnmatch import fnmatch
59 if fnmatch(item, STATEMENT_PATTERN):
62 elif fnmatch(item, TEST_LOG_PATTERN):
64 elif fnmatch(item, GIT_STATUS_PATTERN):
66 elif fnmatch(item, GIT_LOG_PATTERN):
68 elif fnmatch(item, PATCH_PATTERN):
70 elif fnmatch(item, SUMMARY_PATTERN):
  /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.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.27/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...]
  /external/python/cpython3/Doc/library/
fnmatch.rst 1 :mod:`fnmatch` --- Unix filename pattern matching
4 .. module:: fnmatch
7 **Source code:** :source:`Lib/fnmatch.py`
38 :func:`fnmatch` to match pathname segments). Similarly, filenames starting with
43 .. function:: fnmatch(filename, pattern)
55 import fnmatch
59 if fnmatch.fnmatch(file, '*.txt'):
72 ``[n for n in names if fnmatch(n, pattern)]``, but implemented more efficiently.
82 >>> import fnmatch, r
    [all...]
  /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)
  /bionic/tests/headers/posix/
fnmatch_h.c 29 #include <fnmatch.h>
39 FUNCTION(fnmatch, int (*f)(const char*, const char*, int));

Completed in 1240 milliseconds

1 2 3 4 5 6 7 8 91011>>