HomeSort by relevance Sort by last modified time
    Searched refs:LibPaths (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Linker/
Linker.cpp 28 LibPaths(),
36 LibPaths(),
69 LibPaths.push_back(path);
75 LibPaths.push_back(sys::Path(paths[i]));
80 sys::Path::GetBitcodeLibraryPaths(LibPaths);
81 LibPaths.insert(LibPaths.begin(),sys::Path("./"));
87 LibPaths.clear();
162 /// library suffixes, in each of the directories in LibPaths. Returns an empty
175 for (unsigned Index = 0; Index != LibPaths.size(); ++Index)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Linker.h 107 /// LibPaths and flags to be reset, and memory will be released.
114 const std::vector<sys::Path>& getLibPaths() const { return LibPaths; }
198 /// as if given with the -l option of a linker tool. The Linker's LibPaths
212 /// with the -l option of a linker tool. The Linker's LibPaths are searched
270 /// This function looks through the Linker's LibPaths to find a library with
295 std::vector<sys::Path> LibPaths; ///< The library search paths
  /external/swiftshader/third_party/LLVM/lib/Support/
Path.cpp 196 std::vector<sys::Path> LibPaths;
197 GetSystemLibraryPaths(LibPaths);
198 for (unsigned i = 0; i < LibPaths.size(); ++i) {
199 sys::Path FullPath(LibPaths[i]);
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
llvm-ld.cpp 65 static cl::list<std::string> LibPaths("L", cl::Prefix,
314 /// LibPaths - The list of directories in which to find libraries.
362 for (unsigned index = 0; index < LibPaths.size(); index++) {
363 args.push_back("-L" + LibPaths[index]);
440 LibPaths.push_back("/lib");
441 LibPaths.push_back("/usr/lib");
442 LibPaths.push_back("/usr/X11R6/lib");
454 for (cl::list<std::string>::const_iterator P = LibPaths.begin(),
455 E = LibPaths.end(); P != E; ++P) {
571 TheLinker.addPaths(LibPaths);
    [all...]
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
ToolChains.h     [all...]
Tools.cpp     [all...]

Completed in 119 milliseconds