Home
last modified time | relevance | path

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

12345

/third_party/vk-gl-cts/scripts/verify/
H A Dpackage.py24 from fnmatch import fnmatch namespace
59 if fnmatch(item, STATEMENT_PATTERN):
62 elif fnmatch(item, TEST_LOG_PATTERN):
64 elif fnmatch(item, GIT_STATUS_PATTERN):
66 elif fnmatch(item, GIT_LOG_PATTERN):
68 elif fnmatch(item, PATCH_PATTERN):
70 elif fnmatch(item, SUMMARY_PATTERN):
/third_party/python/Lib/test/
H A Dtest_tracemalloc.py769 def fnmatch(inclusive, filename, pattern): function
773 self.assertTrue(fnmatch(True, "abc", "abc"))
774 self.assertFalse(fnmatch(True, "12356", "abc"))
775 self.assertFalse(fnmatch(True, "<unknown>", "abc"))
777 self.assertFalse(fnmatch(False, "abc", "abc"))
778 self.assertTrue(fnmatch(False, "12356", "abc"))
779 self.assertTrue(fnmatch(False, "<unknown>", "abc"))
782 def fnmatch(filename, pattern): function
787 self.assertFalse(fnmatch('abc', ''))
788 self.assertFalse(fnmatch('', 'ab
[all...]
/third_party/vk-gl-cts/scripts/
H A Dlist_test_changes.py29 import fnmatch namespace
72 if fnmatch.fnmatch(xs, y):
74 if fnmatch.fnmatch(y, xs):
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):
H A Dgen_android_bp.py25 from fnmatch import fnmatch namespace
89 if fnmatch(filename, ptrn):
H A Dgen_android_mk.py25 from fnmatch import fnmatch namespace
70 if fnmatch(filename, ptrn):
/third_party/musl/libc-test/src/functionalext/supplement/regex/regex_gtest/
H A Dregex_fnmatch_test.cpp1 #include <fnmatch.h>
13 * @tc.desc: Ensure that the fnmatch() function correctly matches the given string against the specified pattern.
24 int result = fnmatch(pattern, string, 0); in HWTEST_F()
32 * @tc.desc: Confirm that the fnmatch function correctly identifies that the given pattern does not match the
40 int result = fnmatch(pattern, string, 0); in HWTEST_F()
/third_party/vk-gl-cts/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):
/third_party/vixl/tools/
H A Dlint.py30 import fnmatch namespace
223 fnmatch.fnmatch(f, os.path.join(relative_aarch32_traces_path, '*.h')) or \
224 fnmatch.fnmatch(f, os.path.join(relative_aarch64_traces_path, '*.h'))
/third_party/gn/examples/ios/build/config/ios/scripts/
H A Dfind_app_identifier_prefix.py11 import fnmatch namespace
38 return fnmatch.fnmatch(
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dfilter.py6 import fnmatch namespace
81 if fnmatch.fnmatch(test.path, g):
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Dsync_restricted_traces_to_cipd.py13 import fnmatch namespace
44 if args.filter and not fnmatch.fnmatch(trace, args.filter):
77 '-f', '--filter', help='Only sync specified tests. Supports fnmatch expressions.')
H A Dretrace_restricted_traces.py13 import fnmatch namespace
103 if fnmatch.fnmatch(file, '*.h'):
152 for trace in fnmatch.filter(traces, args.filter):
H A Dgen_restricted_traces.py12 import fnmatch namespace
230 if fnmatch.fnmatch(file, '*.h'):
291 if fnmatch.fnmatch(file, '*.txt'):
/third_party/musl/libc-test/src/api/
H A Dfnmatch.c1 #include <fnmatch.h>
9 {int(*p)(const char*,const char*,int) = fnmatch;} in f()
/third_party/vk-gl-cts/external/amber/src/tools/
H A Dcheck_language.py25 import fnmatch namespace
101 for match in fnmatch.filter(dirs, glob):
103 for filename in fnmatch.filter(files, filename_glob):
H A Dcopyright.py27 import fnmatch namespace
56 for match in fnmatch.filter(dirs, glob):
58 for filename in fnmatch.filter(files, filename_glob):
/third_party/skia/infra/bots/
H A Dzip_utils.py13 import fnmatch namespace
24 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dbuild_spirv_binaries.py29 import fnmatch namespace
57 binFiles = [f for f in os.listdir(dstPath) if os.path.isfile(os.path.join(dstPath, f)) and fnmatch.fnmatch(f, "*.spv")]
/third_party/ltp/testcases/kernel/fs/proc/
H A Dproc01.c40 #include <fnmatch.h>
168 !fnmatch(lsm_should_work[i], obj, FNM_PATHNAME)) { in found_errno()
177 !fnmatch(known_issues[i].file, obj, FNM_PATHNAME)) && in found_errno()
179 /* Using strcmp / fnmatch could have messed up the in found_errno()
309 (fnmatch("[0-9]*", dir_ent->d_name, in readproc()
/third_party/skia/third_party/externals/brotli/scripts/
H A Dfix-win-bazel-build.py1 import fnmatch namespace
10 for filename in fnmatch.filter(filenames, '*.runfiles_manifest'):
/third_party/skia/third_party/externals/spirv-tools/utils/
H A Dcheck_copyright.py23 import fnmatch namespace
80 for match in fnmatch.filter(dirs, glob):
82 for filename in fnmatch.filter(files, filename_glob):
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/
H A Dcheck_copyright.py23 import fnmatch namespace
80 for match in fnmatch.filter(dirs, glob):
82 for filename in fnmatch.filter(files, filename_glob):

Completed in 10 milliseconds

12345