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

1 2 3

  /external/chromium_org/third_party/webrtc/build/
merge_libs.py 14 import fnmatch namespace
37 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/build/android/gyp/
apk_obfuscate.py 13 import fnmatch namespace
91 if fnmatch.fnmatch(name, name_filter):
jar.py 7 import fnmatch namespace
20 lambda f: not fnmatch.fnmatch(f, exclude), class_files)
javac.py 7 import fnmatch namespace
63 if fnmatch.fnmatch(f, include):
  /external/chromium_org/components/cronet/tools/
extract_from_jars.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
125 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/third_party/skia/
PRESUBMIT.py 12 import fnmatch namespace
128 if fnmatch.fnmatch(owner_email, email_fnmatch):
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 5 import fnmatch namespace
36 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)
  /external/chromium_org/build/util/lib/common/
unittest_util.py 7 import fnmatch namespace
141 if fnmatch.fnmatch(test, pattern):
147 if fnmatch.fnmatch(test, pattern):
  /external/chromium_org/chrome/test/chromedriver/test/
unittest_util.py 7 import fnmatch namespace
120 if fnmatch.fnmatch(test_name, pattern):
126 if fnmatch.fnmatch(test_name, pattern):

Completed in 614 milliseconds

1 2 3