HomeSort by: relevance | last modified time | path
    Searched refs:Lib (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/tools/llvm-config/
llvm-config.cpp 340 ActiveLibDir = ActiveObjRoot + "/lib" + LLVM_LIBDIR_SUFFIX;
348 ActiveObjRoot + "/" + build_mode + "/lib" + LLVM_LIBDIR_SUFFIX;
351 ActivePrefix + "/lib" + LLVM_LIBDIR_SUFFIX + "/cmake/llvm";
364 ActiveLibDir = ActivePrefix + "/lib" + LLVM_LIBDIR_SUFFIX;
377 StaticPrefix, StaticDir = "lib";
384 SharedPrefix = "lib";
386 StaticPrefix = "lib";
388 StaticExt = "lib";
405 StaticPrefix = SharedPrefix = "lib";
412 StaticPrefix = SharedPrefix = "lib";
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_libignore.h 53 struct Lib {
83 Lib libs_[kMaxLibs];
sanitizer_libignore.cc 32 Lib *lib = &libs_[count_++]; local
33 lib->templ = internal_strdup(name_templ);
34 lib->name = nullptr;
35 lib->real_name = nullptr;
36 lib->loaded = false;
46 Lib *lib = &libs_[i]; local
47 if (!lib->loaded && (!lib->real_name) &
57 Lib *lib = &libs_[i]; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_libignore.h 52 struct Lib {
82 Lib libs_[kMaxLibs];
sanitizer_libignore.cpp 31 Lib *lib = &libs_[count_++]; local
32 lib->templ = internal_strdup(name_templ);
33 lib->name = nullptr;
34 lib->real_name = nullptr;
35 lib->loaded = false;
45 Lib *lib = &libs_[i]; local
46 if (!lib->loaded && (!lib->real_name) &
56 Lib *lib = &libs_[i]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_libignore.h 52 struct Lib {
82 Lib libs_[kMaxLibs];
sanitizer_libignore.cpp 31 Lib *lib = &libs_[count_++]; local
32 lib->templ = internal_strdup(name_templ);
33 lib->name = nullptr;
34 lib->real_name = nullptr;
35 lib->loaded = false;
45 Lib *lib = &libs_[i]; local
46 if (!lib->loaded && (!lib->real_name) &
56 Lib *lib = &libs_[i]; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFMasmParser.cpp 297 StringRef Lib;
298 if (getParser().parseIdentifier(Lib))
307 getStreamer().emitBytes(Lib);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistry.cpp 76 DynamicLibrary Lib =
78 if (!Lib.isValid()) {
85 Lib.getAddressOfSymbol("clang_analyzerAPIVersionString"));
99 Lib.getAddressOfSymbol("clang_registerCheckers"));
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
InterfaceFile.cpp 57 auto Lib = addEntry(ReexportedLibraries, InstallName);
58 Lib->addTarget(Target);
TextStub.cpp 645 for (const auto &Lib : Section.AllowableClients)
647 File->addAllowableClient(Lib, Target);
649 for (const auto &Lib : Section.ReexportedLibraries)
651 File->addReexportedLibrary(Lib, Target);
931 for (const auto &lib : CurrentSection.Values)
933 File->addAllowableClient(lib, Target);
937 for (const auto &Lib : CurrentSection.Values)
939 File->addReexportedLibrary(Lib, Target);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 44 #include "llvm/ToolDrivers/llvm-lib/LibDriver.h"
678 object::Archive &Lib = readLibrary(*FileNameOrErr);
680 if (!Thin || Lib.isThin()) {
683 for (auto &Child : Lib.children(Err))
716 object::Archive &Lib = readLibrary(FileName);
718 if (!Thin || Lib.isThin()) {
721 for (auto &Child : Lib.children(Err))
1066 object::Archive &Lib = readLibrary(Rest);
1069 for (auto &Member : Lib.children(Err))
1276 // Lib.exe -> lib (see D44808, MSBuild runs Lib.exe
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MinGW.cpp 88 for (auto Lib : Args.getAllArgValues(options::OPT_l))
89 if (StringRef(Lib).startswith("msvcr") || StringRef(Lib).startswith("ucrt"))
226 for (auto Lib : Args.getAllArgValues(options::OPT_l)) {
227 if (Lib == "windowsapp") {
354 // lib: Arch Linux, Ubuntu, Windows
356 for (StringRef CandidateLib : {"lib", "lib64"}) {
418 // GccLibDir must precede Base/lib so that the
422 (Base + Arch + llvm::sys::path::get_separator() + "lib").str());
423 getFilePaths().push_back(Base + "lib");
    [all...]
MSVC.cpp 398 if (!llvm::sys::Process::GetEnv("LIB") ||
404 toolchains::MSVCToolChain::SubDirectoryType::Lib)));
407 TC.getSubDirectoryPath(toolchains::MSVCToolChain::SubDirectoryType::Lib,
410 if (!llvm::sys::Process::GetEnv("LIB") ||
459 llvm::sys::path::replace_extension(ImplibName, "lib");
479 for (const auto &Lib : {"asan_dynamic", "asan_dynamic_runtime_thunk"})
480 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib));
494 for (const auto &Lib : {"asan", "asan_cxx"}) {
495 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib));
496 // Make sure the linker consider all object files from the static lib
    [all...]
MSVC.h 75 Lib,
CrossWindows.cpp 160 llvm::sys::path::replace_extension(ImpLib, ".lib");
193 for (const auto &Lib : {"asan_dynamic", "asan_dynamic_runtime_thunk"})
194 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Lib));
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
ExecutionUtils.cpp 230 auto Lib = sys::DynamicLibrary::getPermanentLibrary(FileName, &ErrMsg);
231 if (!Lib.isValid())
234 std::move(Lib), GlobalPrefix, std::move(Allow));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ModuleBuilder.cpp 149 for (auto &&Lib : CodeGenOpts.DependentLibraries)
150 Builder->AddDependentLib(Lib);
  /src/external/bsd/nvi/dist/dist/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/build-aux/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]
  /src/external/gpl3/binutils/dist/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]
  /src/external/gpl3/binutils.old/dist/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 2324 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx;
2406 Lib = Name.slice(b, Idx);
2410 Lib = Name.slice(b, a);
2414 Lib = Name.slice(b, a);
2417 if (Lib.size() >= 3) {
2418 Dot = Lib.slice(Lib.size()-2, Lib.size()-1);
2420 Lib = Lib.slice(0, Lib.size()-2)
    [all...]
  /src/lib/librumpuser/build-aux/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]
  /src/sys/external/isc/libsodium/dist/build-aux/
compile 98 lib=$1
102 for dir in $lib_path $LIB
105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
110 if test -f "$dir/$lib.lib"; then
112 lib=$dir/$lib.li
    [all...]

Completed in 29 milliseconds

1 2 3