Lines Matching refs:FName
1136 StringRef FName, SmallVectorImpl<const char *> &NewArgv) { in expandResponseFile() argument
1137 assert(sys::path::is_absolute(FName)); in expandResponseFile()
1139 FS->getBufferForFile(FName); in expandResponseFile()
1142 return llvm::createStringError(EC, Twine("cannot not open file '") + FName + in expandResponseFile()
1172 StringRef BasePath = llvm::sys::path::parent_path(FName); in expandResponseFile()
1254 const char *FName = Arg + 1; in expandResponseFiles() local
1258 if (llvm::sys::path::is_relative(FName)) { in expandResponseFiles()
1264 CWD.getError(), Twine("cannot get absolute path for: ") + FName); in expandResponseFiles()
1269 llvm::sys::path::append(CurrDir, FName); in expandResponseFiles()
1270 FName = CurrDir.c_str(); in expandResponseFiles()
1273 ErrorOr<llvm::vfs::Status> Res = FS->status(FName); in expandResponseFiles()
1286 return createStringError(EC, Twine("cannot not open file '") + FName + in expandResponseFiles()
1314 if (Error Err = expandResponseFile(FName, ExpandedArgv)) in expandResponseFiles()
1323 FileStack.push_back({FName, I + ExpandedArgv.size()}); in expandResponseFiles()