Searched refs:fnmatch (Results 1 - 25 of 95) sorted by relevance

1234

/external/skia/gyp/
H A Dfind.py15 import fnmatch namespace
22 if fnmatch.fnmatch(f, sys.argv[2]):
/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/v8/build/android/gyp/
H A Dfind.py10 import fnmatch namespace
26 for f in fnmatch.filter(filenames, options.pattern):
/external/autotest/site_utils/bootperf-bin/
H A Dresultsdir.py12 import fnmatch namespace
64 dirlist = fnmatch.filter(os.listdir(dir_), "run.???")
/external/autotest/site_utils/docgen/
H A Dfs_find_tests.py13 import fnmatch namespace
32 for filename in fnmatch.filter(filenames, 'control*'):
/external/deqp/scripts/
H A Dupdate-copyright-year.py27 import fnmatch namespace
35 if fnmatch.fnmatch(filename, pattern):
H A Dcheck_resolution_list.py25 from fnmatch import fnmatch namespace
58 if fnmatch(case, pattern):
/external/webrtc/webrtc/build/
H A Dmerge_libs.py14 import fnmatch namespace
38 for filename in fnmatch.filter(filenames, pattern):
/external/v8/build/util/lib/common/
H A Dunittest_util.py7 import fnmatch namespace
144 if (fnmatch.fnmatch(test, pattern)
145 and not any(fnmatch.fnmatch(test, p) for p in negative_patterns)
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Ddiscover.py5 import fnmatch namespace
44 if not fnmatch.fnmatch(filename, pattern):
/external/deqp/external/vulkancts/
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")]
H A Dverify_submission.py27 from fnmatch import fnmatch namespace
87 if fnmatch(item, STATEMENT_PATTERN):
90 elif fnmatch(item, TEST_LOG_PATTERN):
92 elif fnmatch(item, GIT_STATUS_PATTERN):
95 elif fnmatch(item, GIT_LOG_PATTERN):
98 elif fnmatch(item, PATCH_PATTERN):
/external/deqp/scripts/src_util/
H A Dcheck_include_guards.py25 from fnmatch import fnmatch namespace
84 if 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/chromium-trace/catapult/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/elfutils/tests/
H A Dfind-prologues.c30 #include <fnmatch.h>
52 match = fnmatch (*argv, name, 0) == 0;
H A Dfuncretval.c30 #include <fnmatch.h>
52 match = fnmatch (*argv, name, 0) == 0;
/external/libdrm/tests/
H A Ddrmtest.c30 #include <fnmatch.h>
87 if (fnmatch(pci_glob, pci_id, 0) != 0)
/external/v8/build/android/
H A Dgenerate_emma_html.py9 import fnmatch namespace
33 basenames = fnmatch.filter(filenames, '*.' + ext)
/external/v8/build/android/pylib/perf/
H A Dsetup.py8 import fnmatch namespace
92 sorted_step_names = fnmatch.filter(sorted_step_names,
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dls_helper.py19 import fnmatch namespace
259 if fnmatch.fnmatch(tomatch, pattern):
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dtest_case.py15 import fnmatch namespace
45 if any(fnmatch.fnmatch(f, pat) for pat in self.files_to_ignore):
/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/skia/bin/
H A Dsync-and-gyp31 import fnmatch namespace
124 if fnmatch.fnmatch(filename, matchfilter):

Completed in 2043 milliseconds

1234