Searched defs:TempPath (Results 1 - 4 of 4) sorted by relevance
/external/llvm/include/llvm/Support/ |
H A D | FileOutputBuffer.h | 81 StringRef Path, StringRef TempPath); 85 SmallString<128> TempPath; member in class:llvm::FileOutputBuffer
|
/external/llvm/unittests/Support/ |
H A D | Path.cpp | 325 SmallString<64> TempPath; local 327 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath)); 331 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1)); 332 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F2)); 350 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2))); 374 SmallString<64> TempPath; local 376 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath)); 379 ASSERT_TRUE(sys::fs::exists(Twine(TempPath))); 386 ASSERT_NE(TempPath.str(), TempPath2.str()); 389 ASSERT_NO_ERROR(fs::status(Twine(TempPath), 686 SmallString<64> TempPath; local 697 SmallString<64> TempPath; local [all...] |
/external/clang/lib/Frontend/ |
H A D | CompilerInstance.cpp | 641 SmallString<128> TempPath; local 642 TempPath = OutFile; 643 TempPath += "-%%%%%%%%"; 646 llvm::sys::fs::createUniqueFile(TempPath, fd, TempPath); 653 EC = llvm::sys::fs::createUniqueFile(TempPath, fd, TempPath); 659 OSFile = TempFile = TempPath.str();
|
/external/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 2224 SmallString<64> TempPath; local 2228 TempPath)) { 2229 reportDiag("Could not create file: " + TempPath.str(), Diag); 2237 return TempPath.str();
|
Completed in 415 milliseconds