/external/python/cpython2/Misc/ |
D | BeOS-setup.py | 43 def find_library_file(compiler, libname, std_dirs, paths): function 269 if self.compiler.find_library_file(lib_dirs, 'readline'): 271 if self.compiler.find_library_file(lib_dirs + 282 if self.compiler.find_library_file(lib_dirs, 'crypt'): 295 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, 319 if (self.compiler.find_library_file(lib_dirs, 'ndbm')): 326 if (self.compiler.find_library_file(lib_dirs, 'gdbm')): 342 if self.compiler.find_library_file(lib_dirs, 'db'): 371 if (self.compiler.find_library_file(lib_dirs, 'nsl')): 380 if (self.compiler.find_library_file(lib_dirs, 'ncurses')): [all …]
|
/external/python/cpython3/ |
D | setup.py | 153 def find_library_file(compiler, libname, std_dirs, paths): function 154 result = compiler.find_library_file(std_dirs + paths, libname) 783 do_readline = self.compiler.find_library_file(lib_dirs, 'readline') 818 elif self.compiler.find_library_file(lib_dirs, 'ncursesw'): 820 elif self.compiler.find_library_file(lib_dirs, 'ncurses'): 822 elif self.compiler.find_library_file(lib_dirs, 'curses'): 854 elif self.compiler.find_library_file(lib_dirs + 867 if self.compiler.find_library_file(lib_dirs, 'crypt'): 1101 dblib_file = self.compiler.find_library_file( 1190 sqlite_libfile = self.compiler.find_library_file( [all …]
|
/external/python/cpython2/ |
D | setup.py | 105 def find_library_file(compiler, libname, std_dirs, paths): function 106 result = compiler.find_library_file(std_dirs + paths, libname) 726 do_readline = self.compiler.find_library_file(lib_dirs, 'readline') 748 elif self.compiler.find_library_file(lib_dirs, 'ncursesw'): 750 elif self.compiler.find_library_file(lib_dirs, 'ncurses'): 752 elif self.compiler.find_library_file(lib_dirs, 'curses'): 784 elif self.compiler.find_library_file(lib_dirs + 797 if self.compiler.find_library_file(lib_dirs, 'crypt'): 823 ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, 1081 dblib_file = self.compiler.find_library_file( [all …]
|
/external/python/cpython3/Lib/distutils/ |
D | bcppcompiler.py | 270 libfile = self.find_library_file(library_dirs, lib, debug) 308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
|
D | ccompiler.py | 803 def find_library_file (self, dirs, lib, debug=0): member in CCompiler 1107 lib_file = compiler.find_library_file([lib_dir], lib_name)
|
D | unixccompiler.py | 265 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
|
D | _msvccompiler.py | 561 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
D | msvccompiler.py | 547 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
D | msvc9compiler.py | 751 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
/external/python/cpython2/Lib/distutils/ |
D | bcppcompiler.py | 270 libfile = self.find_library_file(library_dirs, lib, debug) 308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
|
D | emxccompiler.py | 210 def find_library_file(self, dirs, lib, debug=0): member in EMXCCompiler
|
D | ccompiler.py | 770 def find_library_file (self, dirs, lib, debug=0): member in CCompiler 1087 lib_file = compiler.find_library_file([lib_dir], lib_name)
|
D | unixccompiler.py | 249 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
|
D | msvccompiler.py | 559 def find_library_file (self, dirs, lib, debug=0): member in MSVCCompiler
|
D | msvc9compiler.py | 763 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_ccompiler.py | 19 def find_library_file(self, dirs, lib, debug=0): member in FakeCompiler
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 495 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 505 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])
|