Home
last modified time | relevance | path

Searched refs:getFilePaths (Results 1 – 25 of 27) sorted by relevance

12

/src/contrib/llvm-project/clang/lib/Driver/ToolChains/ !
H A DVEToolchain.cpp46 getFilePaths().clear(); in VEToolChain()
54 getFilePaths().push_back(std::move(*Path)); in VEToolChain()
56 getFilePaths().push_back(Path); in VEToolChain()
57 getFilePaths().push_back(computeSysRoot() + "/opt/nec/ve/lib"); in VEToolChain()
H A DNetBSD.cpp392 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/i386")); in NetBSD()
401 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabi")); in NetBSD()
405 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabihf")); in NetBSD()
408 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/oabi")); in NetBSD()
415 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/o32")); in NetBSD()
417 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/64")); in NetBSD()
420 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/powerpc")); in NetBSD()
423 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/sparc")); in NetBSD()
429 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in NetBSD()
H A DCSKYToolChain.cpp42 path_list &Paths = getFilePaths(); in CSKYToolChain()
46 getFilePaths().push_back(GCCInstallation.getInstallPath().str() + in CSKYToolChain()
55 getFilePaths().push_back(computeSysRoot() + "/lib" + in CSKYToolChain()
59 getFilePaths().push_back(computeSysRoot() + "/lib"); in CSKYToolChain()
H A DRISCVToolchain.cpp57 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 DDragonFly.cpp211 getFilePaths().push_back(getDriver().Dir + "/../lib"); in DragonFly()
212 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in DragonFly()
213 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/gcc80")); in DragonFly()
H A DMipsLinux.cpp37 getFilePaths().clear(); in MipsLLVMToolChain()
38 getFilePaths().push_back(computeSysRoot() + "/usr/lib" + LibSuffix); in MipsLLVMToolChain()
H A DHaiku.cpp170 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/lib")); in Haiku()
171 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/develop/lib")); in Haiku()
174 getFilePaths().push_back(GCCInstallation.getInstallPath().str()); in Haiku()
H A DOHOS.cpp144 getFilePaths().clear(); in OHOS()
147 getFilePaths().push_back(CandidateLibPath); in OHOS()
158 path_list &Paths = getFilePaths(); in OHOS()
H A DFuchsia.cpp262 getFilePaths().push_back(std::string(P)); in Fuchsia()
336 getFilePaths().insert(getFilePaths().begin(), Path); in Fuchsia()
H A DMSP430.cpp127 addPathIfExists(D, GCCRtPath, getFilePaths()); in MSP430ToolChain()
132 addPathIfExists(D, SysRootDir, getFilePaths()); in MSP430ToolChain()
H A DWebAssembly.cpp228 getFilePaths().push_back(SysRoot + "/lib"); in WebAssembly()
237 getFilePaths().push_back(Dir); in WebAssembly()
239 getFilePaths().push_back(SysRoot + "/lib/" + MultiarchTriple); in WebAssembly()
H A DMinGW.cpp521 getFilePaths().push_back(GccLibDir); in MinGW()
528 getFilePaths().push_back( in MinGW()
532 getFilePaths().push_back( in MinGW()
541 getFilePaths().push_back(Base + "lib"); in MinGW()
H A DHurd.cpp87 path_list &Paths = getFilePaths(); in Hurd()
H A DFreeBSD.cpp403 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib32")); in FreeBSD()
405 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in FreeBSD()
H A DHexagon.cpp390 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs()
449 const ToolChain::path_list &LibPaths = HTC.getFilePaths(); in constructHexagonLinkArgs()
611 ToolChain::path_list &LibPaths = getFilePaths(); in HexagonToolChain()
H A DNaCl.cpp206 path_list &file_paths = getFilePaths(); in NaClToolChain()
H A DSolaris.cpp316 path_list &Paths = getFilePaths(); in Solaris()
H A DOpenBSD.cpp319 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib")); in OpenBSD()
H A DPS4CPU.cpp381 getFilePaths().push_back(std::string(SDKLibDir)); in PS4PS5Base()
H A DBareMetal.cpp111 getFilePaths().push_back(std::string(Dir)); in BareMetal()
H A DLinux.cpp305 path_list &Paths = getFilePaths(); in Linux()
/src/contrib/llvm-project/clang/include/clang/IndexSerialization/ !
H A DSerializablePathCollection.h75 llvm::ArrayRef<FilePath> getFilePaths() const;
107 ArrayRef<PathPool::FilePath> getFilePaths() const { in getFilePaths() function
108 return Paths.getFilePaths(); in getFilePaths()
/src/contrib/llvm-project/clang/lib/IndexSerialization/ !
H A DSerializablePathCollection.cpp33 llvm::ArrayRef<PathPool::FilePath> PathPool::getFilePaths() const { in getFilePaths() function in PathPool
/src/contrib/llvm-project/clang/include/clang/Driver/ !
H A DToolChain.h295 path_list &getFilePaths() { return FilePaths; } in getFilePaths() function
296 const path_list &getFilePaths() const { return FilePaths; } in getFilePaths() function
/src/contrib/llvm-project/clang/lib/Driver/ !
H A DToolChain.cpp101 getFilePaths().push_back(*Path); in ToolChain()
103 addIfExists(getFilePaths(), Path); in ToolChain()
1309 for (const auto &LibPath : getFilePaths()) in AddFilePathLibArgs()

12