Home
last modified time | relevance | path

Searched full:libraries (Results 1 – 25 of 4778) sorted by relevance

12345678910>>...192

/external/python/cpython3/Lib/distutils/command/
Dbuild_clib.py30 description = "build C/C++ libraries used by Python extensions"
34 "directory to build C/C++ libraries to"),
56 # List of libraries to build
57 self.libraries = None
59 # Compilation options for all libraries
71 # I think that C libraries are really just temporary build
81 self.libraries = self.distribution.libraries
82 if self.libraries:
83 self.check_library_list(self.libraries)
95 if not self.libraries:
[all …]
Dconfig.py36 ('libraries=', 'l',
37 "external C libraries to link with"),
39 "directories to search for external C libraries"),
55 self.libraries = None
72 if self.libraries is None:
73 self.libraries = []
74 elif isinstance(self.libraries, str):
75 self.libraries = [self.libraries]
102 if self.libraries:
103 self.compiler.set_libraries(self.libraries)
[all …]
/external/python/cpython2/Lib/distutils/command/
Dbuild_clib.py32 description = "build C/C++ libraries used by Python extensions"
36 "directory to build C/C++ libraries to"),
58 # List of libraries to build
59 self.libraries = None
61 # Compilation options for all libraries
73 # I think that C libraries are really just temporary build
83 self.libraries = self.distribution.libraries
84 if self.libraries:
85 self.check_library_list(self.libraries)
96 if not self.libraries:
[all …]
Dconfig.py39 ('libraries=', 'l',
40 "external C libraries to link with"),
42 "directories to search for external C libraries"),
58 self.libraries = None
75 if self.libraries is None:
76 self.libraries = []
77 elif isinstance(self.libraries, str):
78 self.libraries = [self.libraries]
106 if self.libraries:
107 self.compiler.set_libraries(self.libraries)
[all …]
/external/python/setuptools/setuptools/_distutils/command/
Dbuild_clib.py30 description = "build C/C++ libraries used by Python extensions"
34 "directory to build C/C++ libraries to"),
56 # List of libraries to build
57 self.libraries = None
59 # Compilation options for all libraries
71 # I think that C libraries are really just temporary build
81 self.libraries = self.distribution.libraries
82 if self.libraries:
83 self.check_library_list(self.libraries)
95 if not self.libraries:
[all …]
Dconfig.py36 ('libraries=', 'l',
37 "external C libraries to link with"),
39 "directories to search for external C libraries"),
55 self.libraries = None
72 if self.libraries is None:
73 self.libraries = []
74 elif isinstance(self.libraries, str):
75 self.libraries = [self.libraries]
102 if self.libraries:
103 self.compiler.set_libraries(self.libraries)
[all …]
/external/python/cpython3/PCbuild/
Dget_externals.bat3 rem Simple script to fetch source for external libraries
35 echo.Cleaning up external libraries.
51 echo.Fetching external libraries...
53 set libraries= variable
54 set libraries=%libraries% bzip2-1.0.8 variable
55 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.3.0 variable
56 if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.1n variable
57 set libraries=%libraries% sqlite-3.37.2.0 variable
58 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.0 variable
59 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.0 variable
[all …]
/external/eigen/cmake/
DFindLAPACK.cmake15 # LAPACK_LIBRARIES_DIR - Directories containing the LAPACK libraries.
16 # May be null if LAPACK_LIBRARIES contains libraries name using full path.
17 # LAPACK_LIBRARIES - List of libraries to link against LAPACK interface.
20 # applications or libraries using LAPACK.
23 # - find libraries for a C++ compiler, instead of Fortran
31 # This macro checks for the existence of the combination of fortran libraries
35 # flags given by _flags. If the combination of libraries is found and passes
36 # the link test, LIBRARIES is set to the list of complete library paths that
38 # Otherwise, LIBRARIES is set to FALSE.
41 macro(check_lapack_libraries DEFINITIONS LIBRARIES _prefix _name _flags _list _blas _path)
[all …]
/external/robolectric/robolectric/src/main/java/org/robolectric/internal/
DManifestIdentifier.java16 private final List<ManifestIdentifier> libraries; field in ManifestIdentifier
24 List<ManifestIdentifier> libraries) { in ManifestIdentifier() argument
25 this(packageName, manifestFile, resDir, assetDir, libraries, null); in ManifestIdentifier()
33 List<ManifestIdentifier> libraries, in ManifestIdentifier() argument
39 this.libraries = libraries == null ? Collections.emptyList() : libraries; in ManifestIdentifier()
52 List<ManifestIdentifier> libraries = new ArrayList<>(); in ManifestIdentifier() local
55 libraries.add( in ManifestIdentifier()
64 this.libraries = Collections.unmodifiableList(libraries); in ManifestIdentifier()
86 return libraries; in getLibraries()
117 if (libraries != null ? !libraries.equals(that.libraries) : that.libraries != null) { in equals()
[all …]
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
DManifestIdentifier.java15 private final List<ManifestIdentifier> libraries; field in ManifestIdentifier
20 List<ManifestIdentifier> libraries) { in ManifestIdentifier() argument
21 this(packageName, manifestFile, resDir, assetDir, libraries, null); in ManifestIdentifier()
26 List<ManifestIdentifier> libraries, FsFile apkFile) { in ManifestIdentifier() argument
31 this.libraries = libraries == null ? Collections.emptyList() : libraries; in ManifestIdentifier()
46 List<ManifestIdentifier> libraries = new ArrayList<>(); in ManifestIdentifier() local
49 libraries.add(new ManifestIdentifier( in ManifestIdentifier()
57 this.libraries = Collections.unmodifiableList(libraries); in ManifestIdentifier()
79 return libraries; in getLibraries()
110 if (libraries != null ? !libraries.equals(that.libraries) : that.libraries != null) { in equals()
[all …]
/external/python/cpython2/PCbuild/
Dget_externals.bat3 rem Simple script to fetch source for external libraries
23 echo.Cleaning up external libraries.
42 echo.Fetching external libraries...
47 set libraries= variable
48 set libraries=%libraries% bzip2-1.0.6 variable
49 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% bsddb-4.7.25.0 variable
50 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p variable
51 set libraries=%libraries% sqlite-3.14.2.0 variable
52 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-8.5.19.0 variable
53 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tk-8.5.19.0 variable
[all …]
/external/grpc-grpc-java/core/
Dbuild.gradle5 libraries.gson,
6 libraries.errorprone,
7 libraries.jsr305,
8 libraries.animalsniffer_annotations
9 compile (libraries.guava) {
10 // prefer 2.2.0 from libraries instead of 2.1.3
12 // prefer 3.0.2 from libraries instead of 3.0.1
14 // prefer 1.17 from libraries instead of 1.14
17 compile (libraries.opencensus_api) {
18 // prefer 3.0.2 from libraries instead of 3.0.1
[all …]
/external/llvm/docs/
DProjects.rst12 projects that use LLVM header files, libraries, and tools. In order to use
59 Libraries can be object files, archives, or dynamic libraries. The **lib**
60 directory is just a convenient place for libraries as it places them all in
108 The LLVM build system provides a convenient way to build libraries and
142 Variables for Building Libraries
173 This variable holds a space separated list of libraries that should be
174 linked into the program. These libraries must be libraries that come from
175 your **lib** directory. The libraries must be specified without their
179 Note that this works only for statically linked libraries.
183 This variable holds a space separated list of libraries that should be
[all …]
/external/grpc-grpc-java/alts/
Dbuild.gradle18 dependencies { classpath libraries.protobuf_plugin }
27 libraries.lang,
28 libraries.protobuf
29 compile (libraries.google_auth_oauth2_http) {
30 // prefer 3.0.2 from libraries instead of 1.3.9
32 // prefer 20.0 from libraries instead of 19.0
36 testCompile libraries.guava,
37 libraries.guava_testlib,
38 libraries.junit,
39 libraries.mockito,
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/
DLibraryLoader.java21 * Configurable loader for native libraries.
32 * @param libraries The names of the libraries to load.
34 public LibraryLoader(String... libraries) { in LibraryLoader() argument
35 nativeLibraries = libraries; in LibraryLoader()
39 * Overrides the names of the libraries to load. Must be called before any call to
42 public synchronized void setLibraries(String... libraries) { in setLibraries() argument
43 Assertions.checkState(!loadAttempted, "Cannot set libraries after loading"); in setLibraries()
44 nativeLibraries = libraries; in setLibraries()
48 * Returns whether the underlying libraries are available, loading them if necessary.
62 // extension and generally would expect its native libraries to be available. in isAvailable()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DLibraryLoader.java20 /** Configurable loader for native libraries. */
29 /** @param libraries The names of the libraries to load. */
30 public LibraryLoader(String... libraries) { in LibraryLoader() argument
31 nativeLibraries = libraries; in LibraryLoader()
35 * Overrides the names of the libraries to load. Must be called before any call to {@link
38 public synchronized void setLibraries(String... libraries) { in setLibraries() argument
39 Assertions.checkState(!loadAttempted, "Cannot set libraries after loading"); in setLibraries()
40 nativeLibraries = libraries; in setLibraries()
43 /** Returns whether the underlying libraries are available, loading them if necessary. */
56 // extension and generally would expect its native libraries to be available. in isAvailable()
/external/python/google-api-python-client/
DREADME.md5 This is the [Google API Python client library](https://cloud.google.com/apis/docs/client-libraries-…
14 this repository recommend using [Cloud Client Libraries for Python](https://github.com/googleapis/g…
16 [Client Libraries Explained](https://cloud.google.com/apis/docs/client-libraries-explained).
40 ## Other Google API libraries
43 [Cloud Client Libraries for Python](https://github.com/googleapis/google-cloud-python),
46 With [Cloud Client Libraries for Python](https://github.com/googleapis/google-cloud-python):
48 which client libraries to download. Whereas, `google-api-python-client` is a
53 - There are more features in these Cloud Client Libraries as each library is
54 focused on a specific API, and in some cases, the libraries are owned by team
59 [Client Libraries Explained](https://cloud.google.com/apis/docs/client-libraries-explained).
[all …]
/external/curl/m4/
Dxc-lt-iface.m439 # Default behavior is to enable shared and static libraries on systems
48 # User may have disabled shared or static libraries.
62 AC_MSG_ERROR([can not disable shared and static libraries simultaneously])
67 # and build runs for shared and static is to enable shared libraries
91 # Default behavior is to build PIC objects for shared libraries and
92 # non-PIC objects for static libraries.
114 # is to build PIC objects even for static libraries. This behavior may
174 dnl Checks whether libtool shared and static libraries
185 # Verify if finally libtool shared libraries will be built
198 # Verify if finally libtool static libraries will be built
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/m4/
Dxc-lt-iface.m439 # Default behavior is to enable shared and static libraries on systems
48 # User may have disabled shared or static libraries.
62 AC_MSG_ERROR([can not disable shared and static libraries simultaneously])
67 # and build runs for shared and static is to enable shared libraries
91 # Default behavior is to build PIC objects for shared libraries and
92 # non-PIC objects for static libraries.
114 # is to build PIC objects even for static libraries. This behavior may
174 dnl Checks wether libtool shared and static libraries
185 # Verify if finally libtool shared libraries will be built
198 # Verify if finally libtool static libraries will be built
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DLibraryLoader.java20 /** Configurable loader for native libraries. */
30 * @param libraries The names of the libraries to load.
32 public LibraryLoader(String... libraries) { in LibraryLoader() argument
33 nativeLibraries = libraries; in LibraryLoader()
37 * Overrides the names of the libraries to load. Must be called before any call to {@link
40 public synchronized void setLibraries(String... libraries) { in setLibraries() argument
41 Assertions.checkState(!loadAttempted, "Cannot set libraries after loading"); in setLibraries()
42 nativeLibraries = libraries; in setLibraries()
45 /** Returns whether the underlying libraries are available, loading them if necessary. */
58 // extension and generally would expect its native libraries to be available. in isAvailable()
/external/ImageMagick/
DInstall-unix.txt21 (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick
41 Shared libraries --enable-shared=yes yes
42 Static libraries --enable-static=yes yes
107 You can influence the choice of compiler, compilation flags, or libraries of the
127 Library paths (.e.g. -L/usr/local) to look for libraries systems that
129 argument in order to find shared libraries at run time. For example,
136 Extra libraries (.e.g. -l/usr/local/lib) required to link.
146 but if it doesn't, you can use the --x-includes=path and --x-libraries=path
160 libraries are found by compiler) it will be included in the build. The
169 build the shared libraries and support for loading coder and process
[all …]
/external/python/setuptools/setuptools/_distutils/
Dccompiler.py23 link steps -- include directories, macros to define, libraries to link
103 # 'libraries': a list of libraries to include in any link
105 self.libraries = []
107 # 'library_dirs': a list of directories to search for libraries
111 # shared libraries/objects at runtime
127 linker_so linker used to create shared objects and libraries
236 """Add 'libname' to the list of libraries that will be included in
243 The linker will be instructed to link against libraries in the
246 names; the linker will be instructed to link against libraries as
249 self.libraries.append(libname)
[all …]
/external/python/cpython2/Lib/distutils/
Dccompiler.py31 link steps -- include directories, macros to define, libraries to link
111 # 'libraries': a list of libraries to include in any link
113 self.libraries = []
115 # 'library_dirs': a list of directories to search for libraries
119 # shared libraries/objects at runtime
135 linker_so linker used to create shared objects and libraries
248 """Add 'libname' to the list of libraries that will be included in
255 The linker will be instructed to link against libraries in the
258 names; the linker will be instructed to link against libraries as
261 self.libraries.append (libname)
[all …]
/external/python/cpython3/Lib/distutils/
Dccompiler.py23 link steps -- include directories, macros to define, libraries to link
103 # 'libraries': a list of libraries to include in any link
105 self.libraries = []
107 # 'library_dirs': a list of directories to search for libraries
111 # shared libraries/objects at runtime
127 linker_so linker used to create shared objects and libraries
236 """Add 'libname' to the list of libraries that will be included in
243 The linker will be instructed to link against libraries in the
246 names; the linker will be instructed to link against libraries as
249 self.libraries.append(libname)
[all …]
/external/kotlinc/license/
DREADME.md68 - Path: libraries/stdlib/src/kotlin/collections
72 - Path: libraries/stdlib/unsigned/src/kotlin/UnsignedUtils.kt
76 - Path: libraries/stdlib/jvm/src/kotlin/util/MathJVM.kt
80 - Path: libraries/stdlib/js/src/kotlin/collections
84 - Path: libraries/stdlib/native-wasm/src/kotlin/collections
88 - Path: libraries/stdlib/js-v1/src/js/long.js
92 - Path: libraries/stdlib/js-v1/src/js/polyfills.js
96 - Path: libraries/stdlib/js/src/kotlin/js/math.polyfills.kt
100 - Path: libraries/stdlib/wasm/internal/kotlin/wasm/internal/Number2String.kt
128 - Path: libraries/stdlib/wasm/src/kotlin/text/FloatingPointConverter.kt
[all …]

12345678910>>...192