HomeSort by relevance Sort by last modified time
    Searched defs:Library (Results 1 - 25 of 292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/link/internal/sym/
library.go 7 type Library struct {
15 Imports []*Library
16 Textp []*Symbol // text symbols defined in this library
17 DupTextSyms []*Symbol // dupok text symbols defined in this library
20 func (l Library) String() string {
  /prebuilts/go/linux-x86/src/cmd/link/internal/sym/
library.go 7 type Library struct {
15 Imports []*Library
16 Textp []*Symbol // text symbols defined in this library
17 DupTextSyms []*Symbol // dupok text symbols defined in this library
20 func (l Library) String() string {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
setuptools_extension.py 44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
  /external/python/cpython2/Lib/distutils/tests/
setuptools_extension.py 44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 44 class Library(Extension):
45 """Just like a regular Extension, but built as a library instead"""
  /external/deqp/framework/egl/wrapper/
eglwLibrary.hpp 23 * \brief EGL API Library.
37 class Library
45 class FuncPtrLibrary : public Library
  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatform.hpp 38 class Library
41 Library (void) {}
42 virtual ~Library (void) {}
51 PlatformDriver (const tcu::FunctionLibrary& library);
141 virtual Library* createLibrary (void) const = 0;
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/
PeiNt32PeCoffExtraActionLib.c 36 #include <Library/PeCoffLib.h>
37 #include <Library/PeiServicesLib.h>
38 #include <Library/DebugLib.h>
39 #include <Library/BaseLib.h>
40 #include <Library/PeCoffExtraActionLib.h>
146 HMODULE Library;
157 // the *.dll file as a library using Windows* APIs. This allows
199 Library = mWinNt->LoadLibraryEx (DllFileName, NULL, DONT_RESOLVE_DLL_REFERENCES);
200 if (Library != NULL) {
209 DllEntryPoint = (VOID *) (UINTN) mWinNt->GetProcAddress (Library, "InitializeDriver");
    [all...]
  /external/tensorflow/tensorflow/core/framework/
load_library.cc 29 struct Library {
36 // Load a dynamic library.
37 // On success, returns the handle to library in result, copies the serialized
38 // OpList of OpDefs registered in the library to *buf and the length to *len,
43 // and OpList. Ops and kernels are registered as globals when a library is
49 static std::unordered_map<string, Library> loaded_libs;
51 Library library; local
56 library = loaded_libs[library_filename];
63 [&library, &seen_op_names](const Status& s
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/DxeNt32PeCoffExtraActionLib/
DxeNt32PeCoffExtraActionLib.c 34 #include <Library/PeCoffLib.h>
36 #include <Library/BaseLib.h>
37 #include <Library/DebugLib.h>
38 #include <Library/HobLib.h>
39 #include <Library/BaseMemoryLib.h>
40 #include <Library/PeCoffExtraActionLib.h>
140 @param ImageContext - Input data returned from PE Laoder Library. Used to find the
222 @param ImageContext - Input data returned from PE Laoder Library. Used to find the
280 HMODULE Library;
292 // the *.dll file as a library using Windows* APIs. This allows
    [all...]
  /frameworks/av/media/libeffects/config/include/media/
EffectsConfig.h 51 struct Library {
55 using Libraries = std::vector<Library>;
58 Library* library; //< Only valid as long as the associated library vector is unmodified member in struct:android::effectsConfig::EffectImpl
98 size_t nbSkippedElement; //< Number of skipped invalid library, effect or processing chain
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11EglDisplayFactory.cpp 74 class Library : public eglw::DefaultLibrary
77 Library (void)
119 const eglw::Library& getLibrary (void) const { return m_library; }
124 Library m_library;
  /build/soong/java/
java.go 573 func checkLinkType(ctx android.ModuleContext, from *Module, to *Library, tag dependencyTag) {
576 ctx.ModuleErrorf("depends on other library %q using non-core Java APIs",
598 if to, ok := module.(*Library); ok {
    [all...]
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 181 // Library
183 class Library
186 Library (HINSTANCE instance);
187 ~Library (void);
199 Library::Library (HINSTANCE instance)
268 Library::~Library (void)
272 bool Library::isWglExtensionSupported (const char* extName) const
280 : m_library(new Library(instance)
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.c 997 HMODULE Library;
1012 // the *.dll file as a library using Windows* APIs. This allows
1054 Library = LoadLibraryEx (DllFileName, NULL, DONT_RESOLVE_DLL_REFERENCES);
1055 if (Library != NULL) {
1064 DllEntryPoint = (VOID *) (UINTN) GetProcAddress (Library, "InitializeDriver");
1068 if ((Library != NULL) && (DllEntryPoint != NULL)) {
    [all...]
  /external/clang/include/clang/Basic/
Module.h 256 /// \brief A library or framework to link against when an entity from this
260 LinkLibrary(const std::string &Library, bool IsFramework)
261 : Library(Library), IsFramework(IsFramework) { }
263 /// \brief The library to link against.
265 /// This will typically be a library or framework name, but can also
266 /// be an absolute path to the library or framework.
267 std::string Library;
269 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Module.h 270 /// \brief A library or framework to link against when an entity from this
274 LinkLibrary(const std::string &Library, bool IsFramework)
275 : Library(Library), IsFramework(IsFramework) { }
277 /// \brief The library to link against.
279 /// This will typically be a library or framework name, but can also
280 /// be an absolute path to the library or framework.
281 std::string Library;
283 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
Module.h 294 /// \brief A library or framework to link against when an entity from this
298 LinkLibrary(const std::string &Library, bool IsFramework)
299 : Library(Library), IsFramework(IsFramework) { }
301 /// \brief The library to link against.
303 /// This will typically be a library or framework name, but can also
304 /// be an absolute path to the library or framework.
305 std::string Library;
307 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
Module.h 294 /// \brief A library or framework to link against when an entity from this
298 LinkLibrary(const std::string &Library, bool IsFramework)
299 : Library(Library), IsFramework(IsFramework) { }
301 /// \brief The library to link against.
303 /// This will typically be a library or framework name, but can also
304 /// be an absolute path to the library or framework.
305 std::string Library;
307 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
Module.h 302 /// \brief A library or framework to link against when an entity from this
306 LinkLibrary(const std::string &Library, bool IsFramework)
307 : Library(Library), IsFramework(IsFramework) { }
309 /// \brief The library to link against.
311 /// This will typically be a library or framework name, but can also
312 /// be an absolute path to the library or framework.
313 std::string Library;
315 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
Module.h 302 /// \brief A library or framework to link against when an entity from this
306 LinkLibrary(const std::string &Library, bool IsFramework)
307 : Library(Library), IsFramework(IsFramework) { }
309 /// \brief The library to link against.
311 /// This will typically be a library or framework name, but can also
312 /// be an absolute path to the library or framework.
313 std::string Library;
315 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
Module.h 302 /// \brief A library or framework to link against when an entity from this
306 LinkLibrary(const std::string &Library, bool IsFramework)
307 : Library(Library), IsFramework(IsFramework) { }
309 /// \brief The library to link against.
311 /// This will typically be a library or framework name, but can also
312 /// be an absolute path to the library or framework.
313 std::string Library;
315 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
Module.h 302 /// \brief A library or framework to link against when an entity from this
306 LinkLibrary(const std::string &Library, bool IsFramework)
307 : Library(Library), IsFramework(IsFramework) { }
309 /// \brief The library to link against.
311 /// This will typically be a library or framework name, but can also
312 /// be an absolute path to the library or framework.
313 std::string Library;
315 /// \brief Whether this is a framework rather than a library.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Module.h 270 /// \brief A library or framework to link against when an entity from this
274 LinkLibrary(const std::string &Library, bool IsFramework)
275 : Library(Library), IsFramework(IsFramework) { }
277 /// \brief The library to link against.
279 /// This will typically be a library or framework name, but can also
280 /// be an absolute path to the library or framework.
281 std::string Library;
283 /// \brief Whether this is a framework rather than a library.

Completed in 1961 milliseconds

1 2 3 4 5 6 7 8 91011>>