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

1 2 3 4

  /external/chromium_org/build/android/gyp/
find.py 10 import fnmatch namespace
23 for f in fnmatch.filter(filenames, options.pattern):
jar.py 7 import fnmatch namespace
46 lambda f: not fnmatch.fnmatch(f, exclude), class_files)
javac.py 7 import fnmatch namespace
220 if fnmatch.fnmatch(f, include):
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 5 import fnmatch namespace
16 for filename in fnmatch.filter(filenames, pattern):
  /external/chromium_org/third_party/webrtc/build/
merge_libs.py 14 import fnmatch namespace
38 for filename in fnmatch.filter(filenames, pattern):
  /external/chromium_org/build/android/
generate_emma_html.py 9 import fnmatch namespace
31 basenames = fnmatch.filter(filenames, '*.' + ext)
  /external/chromium_org/components/cronet/tools/
extract_from_jars.py 7 import fnmatch namespace
jar_src.py 7 import fnmatch namespace
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
report.py 3 import fnmatch, os namespace
43 if fnmatch.fnmatch(cu.filename, pattern):
53 if fnmatch.fnmatch(cu.filename, pattern):
  /external/deqp/scripts/
check_resolution_list.py 5 from fnmatch import fnmatch namespace
38 if fnmatch(case, pattern):
check_include_guards.py 5 from fnmatch import fnmatch namespace
64 if fnmatch(filename, pattern):
check_redundant_include_guards.py 5 from fnmatch import fnmatch namespace
38 if fnmatch(filename, pattern):
  /external/chromium_org/build/android/pylib/perf/
setup.py 8 import fnmatch namespace
84 sorted_step_names = fnmatch.filter(sorted_step_names,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
factory.py 31 import fnmatch namespace
134 return fnmatch.filter(builders.all_port_names(), platform)
  /external/chromium_org/third_party/angle/
enumerate_files.py 1 import fnmatch namespace
49 if fnmatch.fnmatchcase(fullPath, type):
52 if fnmatch.fnmatchcase(fullPath, exclude):
  /external/chromium_org/tools/protoc_wrapper/
protoc_wrapper.py 13 import fnmatch namespace
54 matches = fnmatch.filter(filenames, '*-*.proto')
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 5 import fnmatch namespace
34 if not fnmatch.fnmatch(filename, pattern):
  /external/chromium_org/tools/telemetry/telemetry/page/
test_expectations.py 5 import fnmatch namespace
75 matches_url = fnmatch.fnmatch(page.url, e.url_pattern)
76 matches_name = page.name and fnmatch.fnmatch(page.name, e.name_pattern)
  /external/deqp/framework/delibs/scripts/
update-copyright-year.py 7 import fnmatch namespace
15 if fnmatch.fnmatch(filename, pattern):
  /prebuilts/python/darwin-x86/2.7.5/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/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 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/python/linux-x86/2.7.5/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/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 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 1428 milliseconds

1 2 3 4