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

1 2 3

  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 4 import fnmatch namespace
29 if not fnmatch.fnmatch(filename, pattern):
  /external/chromium_org/build/android/gyp/
dex.py 7 import fnmatch namespace
jar.py 7 import fnmatch namespace
20 lambda f: not fnmatch.fnmatch(f, exclude), class_files)
javac.py 7 import fnmatch namespace
26 if fnmatch.fnmatch(f, include):
  /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/chromium_org/chrome/common/extensions/docs/server2/
render_servlet.py 5 from fnmatch import fnmatch namespace
63 elif fnmatch(path, 'extensions/examples/*.zip'):
  /external/chromium_org/chrome/tools/process_dumps/
process_dumps_linux.py 8 import fnmatch namespace
154 for filename in fnmatch.filter(files, pattern):
  /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/tools/telemetry/telemetry/page/
test_expectations.py 5 import fnmatch namespace
59 if fnmatch.fnmatch(page.url, e.url_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):
  /external/chromium_org/native_client_sdk/src/build_tools/
parse_dsc.py 7 import fnmatch namespace
160 if fnmatch.fnmatch(filename, '*.dsc'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 2 import fnmatch namespace
123 if fnmatch.fnmatch(name, base):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 2 import fnmatch namespace
123 if fnmatch.fnmatch(name, base):
  /bionic/libc/unistd/
fnmatch.c 1 /* $OpenBSD: fnmatch.c,v 1.16 2011/12/06 11:47:46 stsp Exp $ */
49 * http://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html
88 #include <fnmatch.h>
273 int fnmatch(const char *pattern, const char *string, int flags) function
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 23 import fnmatch namespace
41 graveyard.extend(fnmatch.filter(files, pat))
  /external/chromium_org/build/android/gyp/util/
build_utils.py 5 import fnmatch namespace
37 matched_files = fnmatch.filter(filenames, filter)
  /external/chromium_org/build/android/pylib/gtest/
setup.py 7 import fnmatch namespace
141 for filename in fnmatch.filter(filenames, '*.pak'):
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 10 import fnmatch namespace
63 if (any(fnmatch.fnmatch(name, '%s*.py' % SERVER2_PATH)
65 any(fnmatch.fnmatch(name, '%s*' % PRIVATE_TEMPLATES_PATH)
70 if (fnmatch.fnmatch(name, '%s*' % PUBLIC_TEMPLATES_PATH) or
71 fnmatch.fnmatch(name, '%s*' % INTROS_PATH) or
72 fnmatch.fnmatch(name, '%s*' % ARTICLES_PATH))
    [all...]

Completed in 4423 milliseconds

1 2 3