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

1 2 3 4 5 6 7 8 910

  /bionic/tests/headers/posix/
fnmatch_h.c 29 #include <fnmatch.h>
39 FUNCTION(fnmatch, int (*f)(const char*, const char*, int));
  /external/jsoncpp/scons-tools/
globtool.py 1 import fnmatch
24 if fnmatch.fnmatchcase( fn, include ):
29 if fnmatch.fnmatchcase( fn, exclude ):
srcdist.py 3 from fnmatch import fnmatch
111 ## pattern_check = reduce(lambda x, y: x or bool(fnmatch(filename, y)), file_patterns, False)
112 ## exclude_check = reduce(lambda x, y: x and fnmatch(filename, y), exclude_patterns, True)
  /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):
  /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/skia/tools/
check-headers-self-sufficient 8 import fnmatch
128 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
129 public_header_args if fnmatch.fnmatch(header, 'include/*') else
174 and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore)]
  /external/skqp/tools/
check-headers-self-sufficient 8 import fnmatch
129 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
130 public_header_args if fnmatch.fnmatch(header, 'include/*') else
175 and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore)]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 5 import fnmatch
16 for filename in fnmatch.filter(filenames, pattern):
  /bionic/libc/include/
fnmatch.h 48 int fnmatch(const char* __pattern, const char* __string, int __flags);
  /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/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,
  /external/autotest/site_utils/bootperf-bin/
resultsdir.py 12 import fnmatch
64 dirlist = fnmatch.filter(os.listdir(dir_), "run.???")
  /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/deqp/scripts/src_util/
check_license.py 25 from fnmatch import fnmatch
73 if fnmatch(file, ptrn):
  /external/deqp/scripts/
update-copyright-year.py 27 import fnmatch
35 if fnmatch.fnmatch(filename, pattern):
check_resolution_list.py 25 from fnmatch import fnmatch
58 if fnmatch(case, pattern):
  /external/autotest/client/site_tests/video_VideoSeek/
video_VideoSeek.py 5 import fnmatch
39 if ((entry[0] is None or fnmatch.fnmatch(board, entry[0])) and
  /external/linux-kselftest/tools/testing/selftests/ia64/
aliasing-test.c 17 #include <fnmatch.h>
39 if (fnmatch("/proc/bus/pci/*", path, 0) == 0) {
81 if (fnmatch(".", name, 0) == 0)
83 if (fnmatch("..", name, 0) == 0)
91 if (fnmatch(file, name, 0) == 0) {
166 if (fnmatch(".", name, 0) == 0)
168 if (fnmatch("..", name, 0) == 0)
176 if (fnmatch(file, name, 0) == 0) {

Completed in 322 milliseconds

1 2 3 4 5 6 7 8 910