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

1 2 3 4 5 6 7 8 91011

  /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)
  /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)
  /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
120 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
121 public_header_args if fnmatch.fnmatch(header, 'include/*') else
145 if path.endswith('.h') 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 47 int fnmatch(const char* pattern, const char* string, int flags);
  /development/ndk/platforms/android-21/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /development/ndk/platforms/android-9/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-14/arch-arm/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-14/arch-mips/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-14/arch-x86/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-15/arch-arm/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-15/arch-mips/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-15/arch-x86/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);
  /prebuilts/ndk/r10/platforms/android-16/arch-arm/usr/include/
fnmatch.h 47 extern int fnmatch(const char *pattern, const char *string, int flags);

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011