| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | VEToolchain.cpp | 45 getFilePaths().clear(); in VEToolChain() 52 getFilePaths().push_back(std::move(Path)); in VEToolChain() 53 getFilePaths().push_back(getArchSpecificLibPath()); in VEToolChain() 54 getFilePaths().push_back(computeSysRoot() + "/opt/nec/ve/lib"); in VEToolChain()
|
| H A D | NetBSD.cpp | 366 getFilePaths().push_back("=/usr/lib/i386"); in NetBSD() 375 getFilePaths().push_back("=/usr/lib/eabi"); in NetBSD() 379 getFilePaths().push_back("=/usr/lib/eabihf"); in NetBSD() 382 getFilePaths().push_back("=/usr/lib/oabi"); in NetBSD() 389 getFilePaths().push_back("=/usr/lib/o32"); in NetBSD() 391 getFilePaths().push_back("=/usr/lib/64"); in NetBSD() 394 getFilePaths().push_back("=/usr/lib/powerpc"); in NetBSD() 397 getFilePaths().push_back("=/usr/lib/sparc"); in NetBSD() 403 getFilePaths().push_back("=/usr/lib"); in NetBSD()
|
| H A D | DragonFly.cpp | 193 getFilePaths().push_back(getDriver().Dir + "/../lib"); in DragonFly() 194 getFilePaths().push_back("/usr/lib"); in DragonFly() 195 getFilePaths().push_back("/usr/lib/gcc80"); in DragonFly()
|
| H A D | CSKYToolChain.cpp | 42 path_list &Paths = getFilePaths(); in CSKYToolChain() 46 getFilePaths().push_back(GCCInstallation.getInstallPath().str() + in CSKYToolChain() 58 getFilePaths().push_back(computeSysRoot() + "/lib" + in CSKYToolChain()
|
| H A D | Minix.cpp | 106 getFilePaths().push_back(getDriver().Dir + "/../lib"); in Minix() 107 getFilePaths().push_back("/usr/lib"); in Minix()
|
| H A D | RISCVToolchain.cpp | 57 path_list &Paths = getFilePaths(); in RISCVToolChain() 61 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in RISCVToolChain() 72 getFilePaths().push_back(computeSysRoot() + "/lib"); in RISCVToolChain()
|
| H A D | MipsLinux.cpp | 37 getFilePaths().clear(); in MipsLLVMToolChain() 38 getFilePaths().push_back(computeSysRoot() + "/usr/lib" + LibSuffix); in MipsLLVMToolChain()
|
| H A D | MinGW.cpp | 439 getFilePaths().push_back(GccLibDir); in MinGW() 440 getFilePaths().push_back( in MinGW() 444 getFilePaths().push_back( in MinGW() 447 getFilePaths().push_back(Base + "lib"); in MinGW() 449 getFilePaths().push_back(Base + SubdirName + "/sys-root/mingw/lib"); in MinGW()
|
| H A D | Fuchsia.cpp | 203 getFilePaths().push_back(std::string(P.str())); in Fuchsia() 295 getFilePaths().insert(getFilePaths().begin(), Path); in Fuchsia()
|
| H A D | WebAssembly.cpp | 183 getFilePaths().push_back(SysRoot + "/lib"); in WebAssembly() 192 getFilePaths().push_back(Dir); in WebAssembly() 194 getFilePaths().push_back(SysRoot + "/lib/" + MultiarchTriple); in WebAssembly()
|
| H A D | MSP430.cpp | 127 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain() 132 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
|
| H A D | Myriad.cpp | 233 addPathIfExists(D, CompilerSupportDir, getFilePaths()); in MyriadToolChain() 236 addPathIfExists(D, D.Dir + "/../sparc-myriad-rtems/lib", getFilePaths()); in MyriadToolChain()
|
| H A D | CloudABI.cpp | 107 getFilePaths().push_back(std::string(P.str())); in CloudABI()
|
| H A D | Hurd.cpp | 79 path_list &Paths = getFilePaths(); in Hurd()
|
| H A D | Ananas.cpp | 141 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib"); in Ananas()
|
| H A D | FreeBSD.cpp | 393 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib32")); in FreeBSD() 395 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in FreeBSD()
|
| H A D | Solaris.cpp | 205 path_list &Paths = getFilePaths(); in Solaris()
|
| H A D | Hexagon.cpp | 439 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs() 600 ToolChain::path_list &LibPaths = getFilePaths(); in HexagonToolChain()
|
| H A D | BareMetal.cpp | 105 getFilePaths().push_back(std::string(SysRoot)); in BareMetal()
|
| H A D | NaCl.cpp | 209 path_list &file_paths = getFilePaths(); in NaClToolChain()
|
| H A D | PS4CPU.cpp | 244 getFilePaths().push_back(std::string(SDKLibDir.str())); in PS4PS5Base()
|
| /llvm-project-15.0.7/clang/include/clang/IndexSerialization/ |
| H A D | SerializablePathCollection.h | 76 llvm::ArrayRef<FilePath> getFilePaths() const; 108 ArrayRef<PathPool::FilePath> getFilePaths() const { in getFilePaths() function 109 return Paths.getFilePaths(); in getFilePaths()
|
| /llvm-project-15.0.7/clang/lib/IndexSerialization/ |
| H A D | SerializablePathCollection.cpp | 33 llvm::ArrayRef<PathPool::FilePath> PathPool::getFilePaths() const { in getFilePaths() function in PathPool
|
| /llvm-project-15.0.7/clang/include/clang/Driver/ |
| H A D | ToolChain.h | 266 path_list &getFilePaths() { return FilePaths; } in getFilePaths() function 267 const path_list &getFilePaths() const { return FilePaths; } in getFilePaths() function
|
| /llvm-project-15.0.7/clang/lib/Driver/ |
| H A D | ToolChain.cpp | 87 addIfExists(getFilePaths(), Path); in ToolChain() 88 addIfExists(getFilePaths(), getArchSpecificLibPath()); in ToolChain() 1028 for (const auto &LibPath : getFilePaths()) in AddFilePathLibArgs()
|