HomeSort by relevance Sort by last modified time
    Searched refs:fnmatch (Results 126 - 150 of 185) sorted by null

1 2 3 4 56 7 8

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 29 import fnmatch namespace
52 if fnmatch.fnmatch(filename, actual_pattern):
reflectionhandler.py 34 import fnmatch namespace
  /external/lldb/test/unittest2/
loader.py 10 from fnmatch import fnmatch namespace
243 return fnmatch(path, pattern)
281 if fnmatch(path, pattern):
  /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/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 10 from fnmatch import fnmatch namespace
235 return fnmatch(path, pattern)
273 if fnmatch(path, pattern):
  /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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
loader.py 10 from fnmatch import fnmatch namespace
235 return fnmatch(path, pattern)
273 if fnmatch(path, 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) {
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 1 /* $OpenBSD: fnmatch.c,v 1.17 2013/11/24 23:51:29 deraadt Exp $ */
49 * http://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html
88 #include <fnmatch.h>
280 int fnmatch(const char *pattern, const char *string, int flags) function
  /external/chromium_org/sdch/open-vcdiff/
configure.ac 55 AC_CHECK_HEADERS([fnmatch.h])
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 27 import fnmatch namespace
105 for filename in fnmatch.filter(files, '*.idl'))
  /ndk/sources/host-tools/make-3.81/
ar.c 25 #include <fnmatch.h>
219 if (fnmatch (state->pattern, mem, FNM_PATHNAME|FNM_PERIOD) == 0)
  /external/deqp/scripts/
make_release.py 11 import fnmatch namespace
276 if fnmatch.fnmatch(component, pattern):
281 if fnmatch.fnmatch(component, pattern):
  /external/chromium_org/tools/gyp/pylib/gyp/
mac_tool.py 12 import fnmatch namespace
378 if fnmatch.fnmatch(app_id, app_id_pattern):
  /external/fio/tools/plot/
fio2gnuplot 23 import fnmatch namespace
35 if fnmatch.fnmatch(file, pattern):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FileDialog.py 15 import fnmatch namespace
176 elif fnmatch.fnmatch(name, pat):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FileDialog.py 15 import fnmatch namespace
176 elif fnmatch.fnmatch(name, pat):
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 23 import fnmatch namespace
41 graveyard.extend(fnmatch.filter(files, pat))
  /external/chromium_org/build/android/pylib/gtest/
setup.py 8 import fnmatch namespace
168 for filename in fnmatch.filter(filenames, '*.pak'):
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_to_expectations.py 14 import fnmatch namespace
174 pattern: which files to write within root (fnmatch-style pattern)
185 for matching_filename in fnmatch.filter(filenames, pattern):
  /external/skia/gm/rebaseline_server/
compare_to_expectations.py 14 import fnmatch namespace
164 pattern: which files to write within root (fnmatch-style pattern)
175 for matching_filename in fnmatch.filter(filenames, pattern):
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 28 #include <fnmatch.h>
29 #define fnmatch0(pattern,string) (fnmatch(pattern,string,0) == 0)
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 23 /* Enable GNU extensions in fnmatch.h. */
29 #include <fnmatch.h>
480 fnmatch (pattern, string, flags) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 10 import fnmatch namespace
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 namespace
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)

Completed in 804 milliseconds

1 2 3 4 56 7 8