Searched defs:fnmatch (Results 1 - 25 of 45) sorted by relevance

12

/external/jsoncpp/scons-tools/
H A Dsrcdist.py3 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)
H A Dglobtool.py1 import fnmatch namespace
24 if fnmatch.fnmatchcase( fn, include ):
29 if fnmatch.fnmatchcase( fn, exclude ):
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
H A Dfind_files.py5 import fnmatch namespace
16 for filename in fnmatch.filter(filenames, pattern):
/external/skia/infra/bots/
H A Dzip_utils.py12 import fnmatch namespace
21 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]
/external/webrtc/webrtc/build/
H A Dmerge_libs.py14 import fnmatch namespace
38 for filename in fnmatch.filter(filenames, pattern):
/external/autotest/site_utils/bootperf-bin/
H A Dresultsdir.py12 import fnmatch namespace
64 dirlist = fnmatch.filter(os.listdir(dir_), "run.???")
/external/deqp/scripts/
H A Dcheck_resolution_list.py25 from fnmatch import fnmatch namespace
58 if fnmatch(case, pattern):
H A Dupdate-copyright-year.py27 import fnmatch namespace
35 if fnmatch.fnmatch(filename, pattern):
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Ddiscover.py5 import fnmatch namespace
44 if not fnmatch.fnmatch(filename, pattern):
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
H A Dfake_filesystem_glob.py34 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/
H A Dcheck_license.py25 from fnmatch import fnmatch namespace
73 if fnmatch(file, ptrn):
H A Dcheck_include_guards.py25 from fnmatch import fnmatch namespace
88 if fnmatch(filename, pattern):
/external/skia/tools/
H A Dcheck-headers-self-sufficient8 import fnmatch namespace
120 args = ([] if fnmatch.fnmatch(header, 'include/c/*') else
121 public_header_args if fnmatch.fnmatch(header, 'include/*') else
145 if path.endswith('.h') and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore):
/external/toolchain-utils/automation/common/
H A Dmachine.py5 from fnmatch import fnmatch namespace
64 return all([not machine.locked, fnmatch(machine.hostname, self.hostname),
65 fnmatch(machine.label, self.label), fnmatch(machine.os,
/external/toolchain-utils/
H A Dverify_compiler.py7 import fnmatch namespace
44 for f in fnmatch.filter(files, '*.debug')
52 for f in fnmatch.filter(files, '*.dwp')
/external/v8/tools/clang/scripts/
H A Dupload_revision.py11 import fnmatch namespace
H A Dpackage.py10 import fnmatch namespace
195 # This supports the same patterns that the fnmatch module understands.
244 fnmatch.filter(rel_files, p) for p in want)))
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py23 import fnmatch namespace
41 graveyard.extend(fnmatch.filter(files, pat))
/external/autotest/client/site_tests/platform_ToolchainOptions/
H A Dplatform_ToolchainOptions.py5 import fnmatch namespace
58 in_whitelist = any([fnmatch.fnmatch(bad_file, whitelist_entry)
/external/autotest/server/site_tests/brillo_Gtests/
H A Dbrillo_Gtests.py6 import fnmatch namespace
152 if any(fnmatch.fnmatch(t.path, n)
/external/chromium-trace/catapult/telemetry/telemetry/testing/
H A Drun_browser_tests.py5 import fnmatch namespace
216 return any(fnmatch.fnmatch(name, glob) for glob in skipGlobs)
/external/deqp/external/vulkancts/scripts/
H A Dbuild_spirv_binaries.py29 import fnmatch namespace
56 binFiles = [f for f in os.listdir(dstPath) if os.path.isfile(os.path.join(dstPath, f)) and fnmatch.fnmatch(f, "*.spv")]
/external/jsoncpp/devtools/
H A Dantglob.py8 import fnmatch namespace
12 # These fnmatch expressions are used by default to prune the directory tree
16 # These fnmatch expressions are used by default to exclude files and dirs
110 if fnmatch.fnmatch( dir_name, pattern ):
/external/toolchain-utils/automation/clients/report/dejagnu/
H A Dsummary.py8 from fnmatch import fnmatch namespace
231 return all(fnmatch(text, pattern) for text, pattern in check_list)
/external/vixl/tools/
H A Dclang_format.py30 import fnmatch namespace
167 if fnmatch.fnmatch(name, f):

Completed in 1816 milliseconds

12