HomeSort by: relevance | last modified time | path
    Searched defs:Library (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Passes/
PassPlugin.cpp 18 auto Library =
20 if (!Library.isValid())
21 return make_error<StringError>(Twine("Could not load library '") +
25 PassPlugin P{Filename, Library};
27 (intptr_t)Library.SearchForAddressOfSymbol("llvmGetPassPluginInfo");
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
PassPlugin.h 64 /// \returns Returns an error if either the library cannot be found or loaded,
87 PassPlugin(const std::string &Filename, const sys::DynamicLibrary &Library)
88 : Filename(Filename), Library(Library), Info() {}
91 sys::DynamicLibrary Library;
  /src/sys/arch/amiga/stand/bootblock/boot/
amigatypes.h 37 struct Library;
48 struct Library {
64 struct Library LibNode;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
TapiUniversal.h 1 //===-- TapiUniversal.h - Text-based Dynamic Library Stub -------*- C++ -*-===//
109 struct Library {
115 std::vector<Library> Libraries;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFImportFile.cpp 143 StringRef Library;
149 : Machine(M), ImportName(S), Library(S.drop_back(4)),
150 ImportDescriptorSymbolName(("__IMPORT_DESCRIPTOR_" + Library).str()),
151 NullThunkSymbolName(("\x7f" + Library + "_NULL_THUNK_DATA").str()) {}
154 // reference to the terminators and contains the library name (entry) for the
170 // Library Format.
472 // Write short import library.
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 362 /// A library or framework to link against when an entity from this
366 LinkLibrary(const std::string &Library, bool IsFramework)
367 : Library(Library), IsFramework(IsFramework) {}
369 /// The library to link against.
371 /// This will typically be a library or framework name, but can also
372 /// be an absolute path to the library or framework.
373 std::string Library;
375 /// Whether this is a framework rather than a library.

Completed in 63 milliseconds