HomeSort by relevance Sort by last modified time
    Searched defs:glob (Results 26 - 48 of 48) sorted by null

12

  /bionic/libc/tools/
gensyscalls.py 8 import sys, os.path, glob, re, commands, filecmp, shutil namespace
493 files = glob.glob( arch_path + "/syscalls/*.S" )
  /development/testrunner/
coverage.py 21 import glob namespace
48 # vendor glob file path patterns to tests, relative to android
236 coverage_files = glob.glob(file_pattern)
253 target_file_paths = glob.glob(vendor_targets_pattern)
272 html_files_iter = glob.glob(html_file_pattern)
runtest.py 33 import glob namespace
61 # vendor glob file path patterns to tests, relative to android
209 test_file_paths = glob.glob(vendor_tests_pattern)
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 6 import glob namespace
254 # templates = glob.glob(os.path.join(templateDir, '*.stg'))
  /external/blktrace/btt/
btt_plot.py 64 import getopt, glob, os, sys namespace
361 for fn in glob.glob('*c.dat'):
368 files = glob.glob('*%s.dat' % type)
  /external/webkit/Tools/wx/packaging/
build-mac-installer.py 31 import glob namespace
124 files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
129 files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
  /ndk/sources/host-tools/make-3.81/glob/
glob.h 75 /* Bits set in the FLAGS argument to `glob'. */
105 /* Error returns from `glob'. */
160 # define glob glob64 macro
172 /* Do glob searching for PATTERN, placing results in PGLOB.
177 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
179 Otherwise, `glob' returns zero. */
181 extern int glob __P ((__const char *__pattern, int __flags,
185 /* Free storage allocated in PGLOB by a previous `glob' call. */
188 extern int glob __P ((__const char *__pattern, int __flags,
209 #endif /* glob.h *
    [all...]
glob.c 27 /* Enable GNU extensions in glob.h. */
272 We want our own definitions from <glob.h> to take precedence. */
283 #include <glob.h>
353 /* Do glob searching for PATTERN, placing results in PGLOB.
358 `glob' returns GLOB_ABORTED; if it returns zero, the error is ignored.
360 Otherwise, `glob' returns zero. */
362 glob (pattern, flags, errfunc, pglob)
422 return glob (pattern, flags & ~GLOB_BRACE, errfunc, pglob);
436 return glob (pattern, flags & ~GLOB_BRACE, errfunc, pglob);
463 /* Construct the new glob expression. *
361 glob (pattern, flags, errfunc, pglob) function
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
glob.h 46 /* Bits set in the FLAGS argument to `glob'. */
75 /* Error returns from `glob'. */
146 # define glob glob64 macro
150 /* Do glob searching for PATTERN, placing results in PGLOB.
155 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
157 Otherwise, `glob' returns zero. */
159 extern int glob (__const char *__restrict __pattern, int __flags,
163 /* Free storage allocated in PGLOB by a previous `glob' call. */
166 extern int __REDIRECT_NTH (glob, (__const char *__restrict __pattern,
194 #endif /* glob.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
glob.h 46 /* Bits set in the FLAGS argument to `glob'. */
75 /* Error returns from `glob'. */
146 # define glob glob64 macro
150 /* Do glob searching for PATTERN, placing results in PGLOB.
155 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
157 Otherwise, `glob' returns zero. */
159 extern int glob (__const char *__restrict __pattern, int __flags,
163 /* Free storage allocated in PGLOB by a previous `glob' call. */
166 extern int __REDIRECT_NTH (glob, (__const char *__restrict __pattern,
194 #endif /* glob.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
glob.h 46 /* Bits set in the FLAGS argument to `glob'. */
75 /* Error returns from `glob'. */
146 # define glob glob64 macro
150 /* Do glob searching for PATTERN, placing results in PGLOB.
155 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
157 Otherwise, `glob' returns zero. */
159 extern int glob (__const char *__restrict __pattern, int __flags,
163 /* Free storage allocated in PGLOB by a previous `glob' call. */
166 extern int __REDIRECT_NTH (glob, (__const char *__restrict __pattern,
194 #endif /* glob.h *
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeglob.c 276 /* glob must be valid UTF-8 */
468 _xdg_glob_determine_type (const char *glob)
474 ptr = glob;
492 /* glob must be valid UTF-8 */
495 const char *glob,
502 assert (glob != NULL);
504 type = _xdg_glob_determine_type (glob);
509 glob_hash->literal_list = _xdg_glob_list_append (glob_hash->literal_list, strdup (glob), strdup (mime_type), weight);
512 glob_hash->simple_node = _xdg_glob_hash_insert_text (glob_hash->simple_node, glob + 1, mime_type, weight);
515 glob_hash->full_list = _xdg_glob_list_append (glob_hash->full_list, strdup (glob), strdup (mime_type), weight)
574 char *mimetype, *glob; local
    [all...]
  /external/clang/utils/analyzer/
SATestBuild.py 44 import glob namespace
180 for FullFileName in glob.glob(Dir + "/*"):
260 for F in glob.glob(SBOutputDir + "/*/*.plist"):
274 Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
278 Plists = glob.glob(SBOutputDir + "/*/*.plist")
298 for FailLogPathI in glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem.py 36 import glob namespace
119 def glob(self, path): member in class:FileSystem
120 """Wraps glob.glob()."""
121 return glob.glob(path)
filesystem_mock.py 131 def glob(self, path): member in class:MockFileSystem
  /external/openssh/openbsd-compat/
glob.c 1 /* $OpenBSD: glob.c,v 1.35 2011/01/12 01:53:14 djm Exp $ */
34 /* OPENBSD ORIGINAL: lib/libc/gen/glob.c */
37 * glob(3) -- a superset of the one defined in POSIX 1003.2.
58 * Number of matches in the current invocation of glob.
167 glob(const char *pattern, int flags, int (*errfunc)(const char *, int), function
218 * Expand recursively a glob {} pattern. When there is no more expansion
219 * invoke the standard globbing routine to glob the rest of the magic
241 * If it fails then it tries to glob the rest of the pattern and returns.
279 /* Non matching braces; just glob the pattern */
451 * The main glob() routine: compiles the pattern (optionally processin
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-pass.h 211 const char *glob; /* command line glob */ member in struct:dump_file_info
  /external/mksh/src/
eval.c 62 static void glob(char *, XPtrV *, int);
858 glob(p, wp, f & DOMARKDIRS);
1341 * glob
1342 * Name derived from V6's /etc/glob, the program that expanded filenames.
1347 glob(char *cp, XPtrV *wp, int markdirs) function
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-pass.h 223 const char *glob; /* command line glob */ member in struct:dump_file_info
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-pass.h 223 const char *glob; /* command line glob */ member in struct:dump_file_info
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-pass.h 223 const char *glob; /* command line glob */ member in struct:dump_file_info
  /external/chromium/chrome/common/extensions/
extension.cc 876 void(UserScript::*add_method)(const std::string& glob),
890 std::string glob; local
891 if (!list->GetString(i, &glob)) {
899 (instance->*add_method)(glob);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 

Completed in 1083 milliseconds

12