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

1 2 3 4 5

  /external/skia/gyp/
find.py 15 import fnmatch namespace
22 if fnmatch.fnmatch(f, sys.argv[2]):
  /external/autotest/site_utils/docgen/
fs_find_tests.py 13 import fnmatch namespace
32 for filename in fnmatch.filter(filenames, 'control*'):
  /external/v8/build/android/gyp/
find.py 10 import fnmatch namespace
26 for f in fnmatch.filter(filenames, options.pattern):
  /external/jsoncpp/scons-tools/
srcdist.py 3 from fnmatch import fnmatch namespace
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)
globtool.py 1 import fnmatch namespace
24 if fnmatch.fnmatchcase( fn, include ):
29 if fnmatch.fnmatchcase( fn, exclude ):
  /external/webrtc/webrtc/build/
merge_libs.py 14 import fnmatch namespace
38 for filename in fnmatch.filter(filenames, pattern):
  /external/autotest/site_utils/bootperf-bin/
resultsdir.py 12 import fnmatch namespace
64 dirlist = fnmatch.filter(os.listdir(dir_), "run.???")
  /external/deqp/scripts/
check_resolution_list.py 25 from fnmatch import fnmatch namespace
58 if fnmatch(case, pattern):
update-copyright-year.py 27 import fnmatch namespace
35 if fnmatch.fnmatch(filename, pattern):
  /hardware/bsp/intel/peripheral/libmraa/tests/
check_clean.py 4 import re, fnmatch, os namespace
check_samplenames.py 4 import re, fnmatch, os, sys namespace
  /ndk/tests/
filters.py 16 import fnmatch namespace
77 return fnmatch.fnmatch(test_name, pattern)
  /external/chromium-trace/catapult/telemetry/telemetry/core/
discover.py 5 import fnmatch namespace
44 if not fnmatch.fnmatch(filename, pattern):
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_glob.py 34 import fnmatch namespace
57 The pattern may contain shell-style wildcards a la fnmatch.
105 return fnmatch.filter(names, pattern)
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem_glob.py 34 import fnmatch namespace
57 The pattern may contain shell-style wildcards a la fnmatch.
105 return fnmatch.filter(names, pattern)
  /external/deqp/scripts/src_util/
check_include_guards.py 25 from fnmatch import fnmatch namespace
84 if fnmatch(filename, pattern):
  /external/v8/build/android/
generate_emma_html.py 9 import fnmatch namespace
33 basenames = fnmatch.filter(filenames, '*.' + ext)
  /external/v8/build/android/gyp/util/
md5_check_test.py 6 import fnmatch namespace
69 self.assertTrue(fnmatch.fnmatch(description, expected_changes),
  /external/v8/build/android/pylib/perf/
setup.py 8 import fnmatch namespace
92 sorted_step_names = fnmatch.filter(sorted_step_names,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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
glob.py 6 import fnmatch namespace
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/darwin-x86/lib/python2.7/test/
test_fnmatch.py 1 """Test cases for the fnmatch module."""
6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache namespace
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge namespace
15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch):
63 fnmatch('foo', '?' * i)
  /prebuilts/gdb/linux-x86/lib/python2.7/
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
glob.py 6 import fnmatch namespace
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/test/
test_fnmatch.py 1 """Test cases for the fnmatch module."""
6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache namespace
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge namespace
15 def check_match(self, filename, pattern, should_match=1, fn=fnmatch):
63 fnmatch('foo', '?' * i)

Completed in 536 milliseconds

1 2 3 4 5