Home
last modified time | relevance | path

Searched refs:ddir (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/
Dcompileall.py21 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/
Dchdir01.c71 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/
Dcompileall.py48 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/
Ddocument-store_benchmark.cc137 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/
Dicing-search-engine_benchmark.cc208 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
Dicing-search-engine_flush_benchmark.cc144 DestructibleDirectory ddir(filesystem, test_dir); in BM_FlushBenchmark() local
/external/python/cpython2/Doc/library/
Dcompileall.rst73 .. 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/
Dtest_compileall.py142 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/
Dcompileall.rst151 .. 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/
D3.9.0a5.rst693 The :func:`compileall.compile_dir` function's *ddir* parameter and the