/external/python/cpython2/Demo/pdist/ |
rcslib.py | 9 import fnmatch 318 return fnmatch.fnmatch(name, pat)
|
/external/python/cpython2/Lib/lib-tk/ |
FileDialog.py | 15 import fnmatch 176 elif fnmatch.fnmatch(name, pat):
|
/external/toolchain-utils/automation/clients/report/dejagnu/ |
summary.py | 8 from fnmatch import fnmatch 231 return all(fnmatch(text, pattern) for text, pattern in check_list)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
FileDialog.py | 15 import fnmatch 176 elif fnmatch.fnmatch(name, pat):
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
FileDialog.py | 15 import fnmatch 176 elif fnmatch.fnmatch(name, pat):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 15 import fnmatch 176 elif fnmatch.fnmatch(name, pat):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 15 import fnmatch 176 elif fnmatch.fnmatch(name, pat):
|
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
fnmatch.c | 1 /* $OpenBSD: fnmatch.c,v 1.19 2015/08/01 18:11:08 millert Exp $ */ 49 * http://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html 88 #include <fnmatch.h> 281 int fnmatch(const char *pattern, const char *string, int flags) function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
filelist.py | 10 import fnmatch
191 Patterns are not quite the same as implemented by the 'fnmatch'
291 'fnmatch.translate()' in that '*' does not match "special characters"
294 pattern_re = fnmatch.translate(pattern)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
ftpmirror.py | 27 from fnmatch import fnmatch
158 if fnmatch(filename, pat):
265 if fnmatch(name, pat):
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_WILDCARDMATCH.3 | 33 \fICURLOPT_URL(3)\fP option, using an fnmatch-like pattern (Shell Pattern
|
/external/elfutils/tests/ |
low_high_pc.c | 30 #include <fnmatch.h>
|
/external/python/cpython2/Lib/distutils/ |
filelist.py | 10 import fnmatch 191 Patterns are not quite the same as implemented by the 'fnmatch' 292 'fnmatch.translate()' in that '*' does not match "special characters" 295 pattern_re = fnmatch.translate(pattern)
|
/external/toybox/ |
toys.h | 16 #include <fnmatch.h>
|
/external/v8/tools/clang/scripts/ |
upload_revision.py | 11 import fnmatch
|
/external/webrtc/third_party/gflags/gen/posix/include/private/ |
config.h | 17 /* Define to 1 if you have the <fnmatch.h> header file. */
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
filelist.py | 10 import fnmatch 191 Patterns are not quite the same as implemented by the 'fnmatch' 292 'fnmatch.translate()' in that '*' does not match "special characters" 295 pattern_re = fnmatch.translate(pattern)
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
filelist.py | 10 import fnmatch 191 Patterns are not quite the same as implemented by the 'fnmatch' 292 'fnmatch.translate()' in that '*' does not match "special characters" 295 pattern_re = fnmatch.translate(pattern)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 10 import fnmatch 191 Patterns are not quite the same as implemented by the 'fnmatch' 292 'fnmatch.translate()' in that '*' does not match "special characters" 295 pattern_re = fnmatch.translate(pattern)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 10 import fnmatch 191 Patterns are not quite the same as implemented by the 'fnmatch' 292 'fnmatch.translate()' in that '*' does not match "special characters" 295 pattern_re = fnmatch.translate(pattern)
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
util.c | 45 #include <fnmatch.h> 75 if (fnmatch(fpattern[i].pat, fname, 0) == 0 || 76 fnmatch(fpattern[i].pat, fname_base, 0) == 0) { 98 fnmatch(dname, dpattern[i].pat, 0) == 0) {
|
/external/antlr/antlr-3.4/runtime/Python/ |
setup.py | 23 import fnmatch 41 graveyard.extend(fnmatch.filter(files, pat))
|
/external/autotest/client/site_tests/graphics_GpuReset/src/ |
gpureset.c | 71 #include <fnmatch.h> 135 if (fnmatch(pci_glob, pci_id, 0) != 0)
|
/external/selinux/mcstrans/src/ |
mcscolor.c | 10 #include <fnmatch.h> 137 if (fnmatch(ptr->pattern, component, 0) == 0) {
|
/external/libmojo/build/android/gyp/util/ |
build_utils.py | 7 import fnmatch 68 matched_files = fnmatch.filter(filenames, filename_filter) 236 if not fnmatch.fnmatch(name, pattern): 328 return filters and any(fnmatch.fnmatch(path, f) for f in filters)
|