Lines Matching refs:Path
68 Linker::addPath(const sys::Path& path) { in addPath()
75 LibPaths.push_back(sys::Path(paths[i])); in addPaths()
80 sys::Path::GetBitcodeLibraryPaths(LibPaths); in addSystemPaths()
81 LibPaths.insert(LibPaths.begin(),sys::Path("./")); in addSystemPaths()
98 Linker::LoadObject(const sys::Path &FN) { in LoadObject()
119 static inline sys::Path IsLibrary(StringRef Name, in IsLibrary()
120 const sys::Path &Directory) { in IsLibrary()
122 sys::Path FullPath(Directory); in IsLibrary()
138 FullPath.appendSuffix(sys::Path::GetDLLSuffix()); in IsLibrary()
165 sys::Path
168 sys::Path FilePath(Filename); in FindLib()
176 sys::Path Directory(LibPaths[Index]); in FindLib()
177 sys::Path FullPath = IsLibrary(Filename, Directory); in FindLib()
181 return sys::Path(); in FindLib()