HomeSort by relevance Sort by last modified time
    Searched full:fnmatch (Results 26 - 50 of 393) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Doc/library/
glob.rst 18 the :func:`os.listdir` and :func:`fnmatch.fnmatch` functions in concert, and
19 not by actually invoking a subshell. Note that unlike :func:`fnmatch.fnmatch`,
69 Module :mod:`fnmatch`
filesys.rst 23 fnmatch.rst
  /development/scripts/
boardconfig_usage_analysis.py 4 import fnmatch
64 fnmatch.fnmatch(x, 'BoardConfig*.mk'))
69 fnmatch.fnmatch(x, '*.mk') or fnmatch.fnmatch(x, 'Makefile'))
  /external/skia/tools/
check-headers-self-sufficient 8 import fnmatch
128 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
129 public_header_args if fnmatch.fnmatch(header, 'include/*') else
174 and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore)]
  /external/skqp/tools/
check-headers-self-sufficient 8 import fnmatch
129 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
130 public_header_args if fnmatch.fnmatch(header, 'include/*') else
175 and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore)]
  /external/autotest/client/site_tests/video_VideoSeek/
video_VideoSeek.py 5 import fnmatch
39 if ((entry[0] is None or fnmatch.fnmatch(board, entry[0])) and
  /external/skia/infra/bots/
zip_utils.py 12 import fnmatch
23 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]
  /external/skqp/infra/bots/
zip_utils.py 12 import fnmatch
23 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
fnmatch.py 3 fnmatch(FILENAME, PATTERN) matches according to the local convention.
15 __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
24 def fnmatch(name, pat): function
72 This is a version of fnmatch() which doesn't case-normalize
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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
  /external/python/cpython2/Lib/
fnmatch.py 3 fnmatch(FILENAME, PATTERN) matches according to the local convention.
15 __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
24 def fnmatch(name, pat): function
72 This is a version of fnmatch() which doesn't case-normalize
  /external/python/cpython3/Lib/
fnmatch.py 3 fnmatch(FILENAME, PATTERN) matches according to the local convention.
17 __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
19 def fnmatch(name, pat): function
67 This is a version of fnmatch() which doesn't case-normalize
glob.py 5 import fnmatch
13 fnmatch. However, unlike fnmatch, filenames starting with a
26 fnmatch. However, unlike fnmatch, filenames starting with a
83 return fnmatch.filter(names, pattern)
  /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
  /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
  /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
  /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
  /external/autotest/site_utils/bootperf-bin/
resultsdir.py 12 import fnmatch
64 dirlist = fnmatch.filter(os.listdir(dir_), "run.???")
  /external/linux-kselftest/tools/testing/selftests/ia64/
aliasing-test.c 17 #include <fnmatch.h>
39 if (fnmatch("/proc/bus/pci/*", path, 0) == 0) {
81 if (fnmatch(".", name, 0) == 0)
83 if (fnmatch("..", name, 0) == 0)
91 if (fnmatch(file, name, 0) == 0) {
166 if (fnmatch(".", name, 0) == 0)
168 if (fnmatch("..", name, 0) == 0)
176 if (fnmatch(file, name, 0) == 0) {
  /external/pdfium/
AUTHORS 7 # Organization <fnmatch pattern>
9 # See python fnmatch module documentation for more information.
  /external/python/cpython3/Doc/library/
glob.rst 17 the :func:`os.scandir` and :func:`fnmatch.fnmatch` functions in concert, and
18 not by actually invoking a subshell. Note that unlike :func:`fnmatch.fnmatch`,
98 Module :mod:`fnmatch`
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
xxci.py 10 import fnmatch
62 if fnmatch.fnmatch(file, p): return 1
  /external/deqp/scripts/src_util/
check_license.py 25 from fnmatch import fnmatch
73 if fnmatch(file, ptrn):
  /external/deqp/scripts/
update-copyright-year.py 27 import fnmatch
35 if fnmatch.fnmatch(filename, pattern):
  /external/python/cpython2/Tools/scripts/
xxci.py 10 import fnmatch
62 if fnmatch.fnmatch(file, p): return 1

Completed in 1084 milliseconds

12 3 4 5 6 7 8 91011>>