Home
last modified time | relevance | path

Searched refs:find_library_file (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Misc/
DBeOS-setup.py43 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/
Dsetup.py153 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/
Dsetup.py105 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/
Dbcppcompiler.py270 libfile = self.find_library_file(library_dirs, lib, debug)
308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
Dccompiler.py803 def find_library_file (self, dirs, lib, debug=0): member in CCompiler
1107 lib_file = compiler.find_library_file([lib_dir], lib_name)
Dunixccompiler.py265 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
D_msvccompiler.py561 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
Dmsvccompiler.py547 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
Dmsvc9compiler.py751 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
/external/python/cpython2/Lib/distutils/
Dbcppcompiler.py270 libfile = self.find_library_file(library_dirs, lib, debug)
308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
Demxccompiler.py210 def find_library_file(self, dirs, lib, debug=0): member in EMXCCompiler
Dccompiler.py770 def find_library_file (self, dirs, lib, debug=0): member in CCompiler
1087 lib_file = compiler.find_library_file([lib_dir], lib_name)
Dunixccompiler.py249 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
Dmsvccompiler.py559 def find_library_file (self, dirs, lib, debug=0): member in MSVCCompiler
Dmsvc9compiler.py763 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
/external/python/cpython2/Lib/distutils/tests/
Dtest_ccompiler.py19 def find_library_file(self, dirs, lib, debug=0): member in FakeCompiler
/external/python/cpython2/Doc/distutils/
Dapiref.rst495 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])
/external/python/cpython3/Doc/distutils/
Dapiref.rst505 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])