Searched defs:TempPath (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Support/
H A DFileOutputBuffer.h84 StringRef Path, StringRef TempPath);
88 SmallString<128> TempPath; member in class:llvm::FileOutputBuffer
/external/llvm/unittests/Support/
H A DPath.cpp167 SmallString<64> TempPath; local
169 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
173 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1));
174 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F2));
192 ASSERT_NO_ERROR(fs::create_hard_link(Twine(TempPath), Twine(TempPath2)));
216 SmallString<64> TempPath; local
218 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
222 ASSERT_NO_ERROR(sys::fs::exists(Twine(TempPath), TempFileExists));
230 ASSERT_NE(TempPath.str(), TempPath2.str());
233 ASSERT_NO_ERROR(fs::status(Twine(TempPath),
415 SmallString<64> TempPath; local
[all...]
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp543 SmallString<128> TempPath; local
544 TempPath = OutFile;
545 TempPath += "-%%%%%%%%";
548 llvm::sys::fs::createUniqueFile(TempPath.str(), fd, TempPath);
555 EC = llvm::sys::fs::createUniqueFile(TempPath.str(), fd, TempPath);
561 OSFile = TempFile = TempPath.str();

Completed in 100 milliseconds