Home
last modified time | relevance | path

Searched refs:compile_dir (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_compileall.py94 compileall.compile_dir(self.directory, force=False, quiet=True)
118 self.assertTrue(compileall.compile_dir(self.directory, force=False,
128 self.assertFalse(compileall.compile_dir(self.directory,
171 compileall.compile_dir(self.directory, quiet=True, optimize=optimize)
185 compileall.compile_dir(pathlib.Path(self.directory))
192 compileall.compile_dir(self.directory, quiet=True, workers=5)
198 compileall.compile_dir(self.directory, workers=-1)
202 compileall.compile_dir(self.directory, quiet=True, workers=0)
208 compileall.compile_dir(self.directory, quiet=True)
215 compileall.compile_dir(self.directory, quiet=True, workers=5)
[all …]
/external/python/cpython2/Lib/
Dcompileall.py21 def compile_dir(dir, maxlevels=10, ddir=None, function
56 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
128 success = success and compile_dir(dir, maxlevels, None,
212 if not compile_dir(arg, maxlevels, ddir,
/external/python/cpython2/Doc/library/
Dcompileall.rst73 .. function:: compile_dir(dir[, maxlevels[, ddir[, force[, rx[, quiet]]]]])
122 in the search. All other parameters are passed to the :func:`compile_dir`
131 compileall.compile_dir('Lib/', force=True)
135 compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
/external/python/cpython2/Lib/test/
Dtest_compileall.py46 compileall.compile_dir(self.directory, force=False, quiet=True)
68 compileall.compile_dir(self.directory, force=False, quiet=True)
/external/python/cpython3/Lib/
Dcompileall.py48 def compile_dir(dir, maxlevels=None, ddir=None, force=False, function
294 success = success and compile_dir(
437 if not compile_dir(dest, maxlevels, args.ddir,
/external/pigweed/pw_protobuf_compiler/
Dproto.gni77 rebase_path(invoker.compile_dir),
176 if (rebase_path(invoker.sources, invoker.compile_dir) == [ "nanopb.proto" ]) {
386 compile_dir = "$base_out_dir/sources"
391 sources += [ "$compile_dir/$_prefix/$file" ]
466 protoc_includes = [ rebase_path(_common.compile_dir) ]
479 directory = "${_common.compile_dir}/$_prefix"
/external/python/cpython3/Doc/library/
Dcompileall.rst151 .. function:: compile_dir(dir, maxlevels=sys.getrecursionlimit(), ddir=None, force=False, rx=None, …
298 in the search. All other parameters are passed to the :func:`compile_dir`
323 compileall.compile_dir('Lib/', force=True)
327 compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
331 compileall.compile_dir(pathlib.Path('Lib/'), force=True)
/external/autotest/utils/
Dbuild_externals.py89 compileall.compile_dir(install_dir, quiet=True)
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp207 llvm::StringRef compile_dir, FileSpec::Style style) { in GetFileByIndex() argument
211 if (prologue.getFileNameByIndex(idx, compile_dir, absolute, abs_path, style)) in GetFileByIndex()
217 if (!prologue.getFileNameByIndex(idx, compile_dir, relative, rel_path, style)) in GetFileByIndex()
226 llvm::StringRef compile_dir = {}) { in ParseSupportFilesFromPrologue() argument
240 if (auto file_path = GetFileByIndex(prologue, idx, compile_dir, style))
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst440 Always raise ValueError for negative compileall.compile_dir(workers=...)
D3.9.0a5.rst693 The :func:`compileall.compile_dir` function's *ddir* parameter and the
D3.5.3rc1.rst566 Always raise ValueError for negative compileall.compile_dir(workers=...)
/external/python/cpython3/Doc/whatsnew/
D3.5.rst962 The :func:`~compileall.compile_dir` function has a corresponding ``workers``
970 ``quiet`` parameter in :func:`~compileall.compile_dir`,
D3.7.rst804 :func:`compileall.compile_dir` learned the new *invalidation_mode* parameter,
/external/python/cpython3/Misc/
DHISTORY10659 compileall.compile_dir().