Searched refs:strip_dir (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/distutils/ |
D | ccompiler.py | 337 objects = self.object_filenames(sources, strip_dir=0, 847 def object_filenames(self, source_filenames, strip_dir=0, output_dir=''): argument 858 if strip_dir: 864 def shared_object_filename(self, basename, strip_dir=0, output_dir=''): argument 866 if strip_dir: 870 def executable_filename(self, basename, strip_dir=0, output_dir=''): argument 872 if strip_dir: 877 strip_dir=0, output_dir=''): argument 887 if strip_dir:
|
D | cygwinccompiler.py | 250 def object_filenames(self, source_filenames, strip_dir=0, output_dir=''): argument 261 if strip_dir:
|
D | bcppcompiler.py | 336 strip_dir=0, argument 346 if strip_dir:
|
D | _msvccompiler.py | 287 strip_dir=0, argument 298 if strip_dir:
|
D | msvccompiler.py | 314 strip_dir=0, argument 329 if strip_dir:
|
D | msvc9compiler.py | 426 strip_dir=0, argument 441 if strip_dir:
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 729 .. method:: CCompiler.executable_filename(basename[, strip_dir=0, output_dir='']) 736 .. method:: CCompiler.library_filename(libname[, lib_type='static', strip_dir=0, output_dir='']) 744 .. method:: CCompiler.object_filenames(source_filenames[, strip_dir=0, output_dir='']) 750 .. method:: CCompiler.shared_object_filename(basename[, strip_dir=0, output_dir=''])
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 946 @@ -253,11 +249,16 @@ def object_filenames(self, source_filenames, strip_dir=0, output_dir=''): 963 if strip_dir:
|