Lines Matching refs:ModuleCachePath
4020 SmallString<128> ModuleCachePath; in ConstructJob() local
4022 ModuleCachePath = A->getValue(); in ConstructJob()
4027 ModuleCachePath = Output.getFilename(); in ConstructJob()
4028 llvm::sys::path::replace_extension(ModuleCachePath, ".cache"); in ConstructJob()
4029 llvm::sys::path::append(ModuleCachePath, "modules"); in ConstructJob()
4030 } else if (ModuleCachePath.empty()) { in ConstructJob()
4033 ModuleCachePath); in ConstructJob()
4034 llvm::sys::path::append(ModuleCachePath, "org.llvm.clang."); in ConstructJob()
4035 appendUserToPath(ModuleCachePath); in ConstructJob()
4036 llvm::sys::path::append(ModuleCachePath, "ModuleCache"); in ConstructJob()
4039 ModuleCachePath.insert(ModuleCachePath.begin(), Arg, Arg + strlen(Arg)); in ConstructJob()
4040 CmdArgs.push_back(Args.MakeArgString(ModuleCachePath)); in ConstructJob()