/external/python/cpython2/Lib/ |
D | compileall.py | 21 def compile_dir(dir, maxlevels=10, ddir=None, argument 45 if ddir is not None: 46 dfile = os.path.join(ddir, name) 50 if not compile_file(fullname, ddir, force, rx, quiet): 61 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0): argument 74 if ddir is not None: 75 dfile = os.path.join(ddir, name) 183 ddir = None 190 if o == '-d': ddir = a 197 if ddir: [all …]
|
/external/ltp/testcases/kernel/syscalls/chdir/ |
D | chdir01.c | 71 DIR *ddir, *opendir(); in main() local 90 if ((ddir = opendir(".")) == NULL) in main() 97 ddir); in main() 98 closedir(ddir); in main() 159 void checknames(char **pfilnames, int fnamecount, DIR * ddir) in checknames() argument 165 while ((dir = readdir(ddir)) != NULL) { in checknames()
|
/external/python/cpython3/Lib/ |
D | compileall.py | 48 def compile_dir(dir, maxlevels=None, ddir=None, force=False, argument 77 if ddir is not None and (stripdir is not None or prependdir is not None): 80 if ddir is not None: 82 prependdir = ddir 83 ddir = None 102 ddir=ddir, force=force, 115 if not compile_file(file, ddir, force, rx, quiet, 123 def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, argument 150 if ddir is not None and (stripdir is not None or prependdir is not None): 161 if ddir is not None: [all …]
|
/external/icing/icing/store/ |
D | document-store_benchmark.cc | 137 DestructibleDirectory ddir(filesystem, directory); in BM_DoesDocumentExistBenchmark() local 176 DestructibleDirectory ddir(filesystem, directory); in BM_Put() local 205 DestructibleDirectory ddir(filesystem, directory); in BM_GetSameDocument() local 232 DestructibleDirectory ddir(filesystem, directory); in BM_Delete() local
|
/external/icing/icing/ |
D | icing-search-engine_benchmark.cc | 208 DestructibleDirectory ddir(filesystem, test_dir); in BM_IndexLatency() local 278 DestructibleDirectory ddir(filesystem, test_dir); in BM_IndexThroughput() local 343 DestructibleDirectory ddir(filesystem, test_dir); in BM_MutlipleIndices() local 471 DestructibleDirectory ddir(filesystem, test_dir); in BM_SearchNoStackOverflow() local 537 DestructibleDirectory ddir(filesystem, test_dir); in BM_RepeatedPut() local 587 DestructibleDirectory ddir(filesystem, test_dir); in BM_Put() local 622 DestructibleDirectory ddir(filesystem, test_dir); in BM_Get() local 659 DestructibleDirectory ddir(filesystem, test_dir); in BM_Delete() local 699 DestructibleDirectory ddir(filesystem, test_dir); in BM_PutMaxAllowedDocuments() local
|
D | icing-search-engine_flush_benchmark.cc | 144 DestructibleDirectory ddir(filesystem, test_dir); in BM_FlushBenchmark() local
|
/external/python/cpython2/Doc/library/ |
D | compileall.rst | 73 .. function:: compile_dir(dir[, maxlevels[, ddir[, force[, rx[, quiet]]]]]) 81 If *ddir* is given, it is prepended to the path to each file being compiled 98 .. function:: compile_file(fullname[, ddir[, force[, rx[, quiet]]]]) 102 If *ddir* is given, it is prepended to the path to the file being compiled
|
/external/python/cpython3/Lib/test/ |
D | test_compileall.py | 142 ddir=pathlib.Path('ddir_path'), 235 def _test_ddir_only(self, *, ddir, parallel=True): argument 247 self.directory, quiet=True, ddir=ddir, 255 expected_in = os.path.join(ddir, modpath) 262 return self._test_ddir_only(ddir="<a prefix>", parallel=False) 266 return self._test_ddir_only(ddir="<a prefix>", parallel=True) 270 return self._test_ddir_only(ddir="", parallel=False) 274 return self._test_ddir_only(ddir="", parallel=True) 337 compileall.compile_dir(path, quiet=True, ddir="/bar",
|
/external/python/cpython3/Doc/library/ |
D | compileall.rst | 151 .. function:: compile_dir(dir, maxlevels=sys.getrecursionlimit(), ddir=None, force=False, rx=None, … 160 If *ddir* is given, it is prepended to the path to each file being compiled 234 .. function:: compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, legacy=False, optimi… 239 If *ddir* is given, it is prepended to the path to the file being compiled
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 693 The :func:`compileall.compile_dir` function's *ddir* parameter and the
|