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.py118 compileall.compile_dir(self.directory, force=False, quiet=True)
142 self.assertTrue(compileall.compile_dir(self.directory, force=False,
152 self.assertFalse(compileall.compile_dir(self.directory,
217 compileall.compile_dir(self.directory, quiet=True, optimize=optimize)
231 compileall.compile_dir(FakePath(self.directory))
238 self.assertTrue(compileall.compile_dir(FakePath(self.directory),
245 self.assertTrue(compileall.compile_dir(FakePath(self.directory),
253 compileall.compile_dir(self.directory, quiet=True, workers=5)
259 compileall.compile_dir(self.directory, workers=-1)
264 compileall.compile_dir(self.directory, quiet=True, workers=0)
[all …]
/external/pigweed/pw_rpc/
DAndroid.bp231 cmd: "in_files=($(in)); compile_dir=$$(dirname $${in_files[0]}); " +
240 "--compile-dir=$${compile_dir} " +
271 "compile_dir=$$(dirname $${prefix_dir}); " +
283 "--compile-dir=$${compile_dir} " +
305 cmd: "in_files=($(in)); compile_dir=$$(dirname $${in_files[0]}); " +
309 "--compile-dir=$${compile_dir} " +
340 "compile_dir=$$(dirname $${prefix_dir}); " +
352 "--compile-dir=$${compile_dir} " +
370 cmd: "in_files=($(in)); compile_dir=$$(dirname $${in_files[0]}); " +
374 "--compile-dir=$${compile_dir} " +
[all …]
/external/python/cpython3/Lib/
Dcompileall.py48 def compile_dir(dir, maxlevels=None, ddir=None, force=False, function
302 success = success and compile_dir(
446 if not compile_dir(dest, maxlevels, args.ddir,
/external/pigweed/pw_protobuf/
DAndroid.bp171 cmd: "in_files=($(in)); compile_dir=$$(dirname $${in_files[0]}); " +
180 "--compile-dir=$${compile_dir} " +
/external/python/cpython3/Doc/library/
Dcompileall.rst154 .. function:: compile_dir(dir, maxlevels=sys.getrecursionlimit(), ddir=None, force=False, rx=None, …
303 in the search. All other parameters are passed to the :func:`compile_dir`
328 compileall.compile_dir('Lib/', force=True)
332 compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
336 compileall.compile_dir(pathlib.Path('Lib/'), force=True)
/external/pigweed/pw_protobuf_compiler/
Dproto.gni160 rebase_path(invoker.compile_dir, root_build_dir),
322 if (rebase_path(invoker.sources, invoker.compile_dir) == [ "nanopb.proto" ]) {
594 compile_dir = "$base_out_dir/sources"
599 sources += [ "$compile_dir/$_prefix/$file" ]
626 protoc_includes = [ rebase_path(_common.compile_dir, root_build_dir) ]
643 directory = "${_common.compile_dir}/$_prefix"
/external/autotest/utils/
Dbuild_externals.py89 compileall.compile_dir(install_dir, quiet=True)
/external/python/cpython3/Misc/NEWS.d/
D3.12.0a4.rst896 :meth:`compileall.compile_dir`.
926 ``limit_sl_dest`` parameters of :func:`compileall.compile_dir` and
D3.9.0a5.rst693 The :func:`compileall.compile_dir` function's *ddir* parameter and the
D3.13.0a6.rst419 Speed up :func:`compileall.compile_dir` by 20% when using multiprocessing by
D3.6.0b1.rst440 Always raise ValueError for negative compileall.compile_dir(workers=...)
D3.5.3rc1.rst588 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.rst805 :func:`compileall.compile_dir` learned the new *invalidation_mode* parameter,
/external/python/cpython3/Misc/
DHISTORY10659 compileall.compile_dir().