Searched defs:glob (Results 1 - 25 of 43) sorted by relevance

12

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
H A Dtest_cursor_pget_bug.py2 import os, glob namespace
H A Dtest_db.py2 import os, glob namespace
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dglob.py16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
H A Dimghdr.py150 import glob namespace
151 names = glob.glob(os.path.join(filename, '*'))
H A Dsndhdr.py214 import glob namespace
215 names = glob.glob(os.path.join(filename, '*'))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_whichdb.py10 import glob namespace
19 # so we use glob to locate all names
20 for f in glob.glob(_fname + "*"):
H A Dtest_anydbm.py8 import glob namespace
18 # so we use glob to locate all names
19 for f in glob.glob(_fname + "*"):
H A Dtest_glob.py1 import glob namespace
45 def glob(self, *parts): member in class:GlobTests
51 res = glob.glob(p)
52 self.assertEqual(list(glob.iglob(p)), res)
54 self.assertEqual(glob.glob(fsdecode(p)), ures)
55 self.assertEqual(list(glob.iglob(fsdecode(p))), ures)
66 eq(self.glob('a'), [self.norm('a')])
67 eq(self.glob('
[all...]
H A Dtest_unicode_file.py4 import os, glob, time, shutil namespace
56 # Filename should appear in glob output
58 os.path.abspath(filename)==os.path.abspath(glob.glob(filename)[0]))
H A Dtest_shelve.py4 import glob namespace
35 for f in glob.glob(self.fn+"*"):
45 for f in glob.glob(self.fn+"*"):
55 for f in glob.glob(self.fn+"*"):
129 for f in glob.glob(self.fn+"*"):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
H A Dtest_cursor_pget_bug.py2 import os, glob namespace
H A Dtest_db.py2 import os, glob namespace
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dglob.py16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
H A Dimghdr.py150 import glob namespace
151 names = glob.glob(os.path.join(filename, '*'))
H A Dsndhdr.py214 import glob namespace
215 names = glob.glob(os.path.join(filename, '*'))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_whichdb.py10 import glob namespace
19 # so we use glob to locate all names
20 for f in glob.glob(_fname + "*"):
H A Dtest_anydbm.py8 import glob namespace
18 # so we use glob to locate all names
19 for f in glob.glob(_fname + "*"):
H A Dtest_glob.py1 import glob namespace
45 def glob(self, *parts): member in class:GlobTests
51 res = glob.glob(p)
52 self.assertEqual(list(glob.iglob(p)), res)
54 self.assertEqual(glob.glob(fsdecode(p)), ures)
55 self.assertEqual(list(glob.iglob(fsdecode(p))), ures)
66 eq(self.glob('a'), [self.norm('a')])
67 eq(self.glob('
[all...]
H A Dtest_unicode_file.py4 import os, glob, time, shutil namespace
56 # Filename should appear in glob output
58 os.path.abspath(filename)==os.path.abspath(glob.glob(filename)[0]))
H A Dtest_shelve.py4 import glob namespace
35 for f in glob.glob(self.fn+"*"):
45 for f in glob.glob(self.fn+"*"):
55 for f in glob.glob(self.fn+"*"):
129 for f in glob.glob(self.fn+"*"):
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
H A Dglob.h46 /* 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
[all...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
H A Dglob.h46 /* 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
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
H A Dglob.h46 /* 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
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbuild_py.py9 from glob import glob namespace
129 filelist = glob(os.path.join(src_dir, convert_path(pattern)))
219 module_files = glob(os.path.join(package_dir, "*.py"))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbuild_py.py9 from glob import glob namespace
129 filelist = glob(os.path.join(src_dir, convert_path(pattern)))
219 module_files = glob(os.path.join(package_dir, "*.py"))

Completed in 446 milliseconds

12