HomeSort by relevance Sort by last modified time
    Searched defs:TempPath (Results 1 - 5 of 5) sorted by null

  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempPath.java 26 * @version $Id: TempPath.java,v 1.2 2004/10/02 12:41:11 ntherning Exp $
28 public interface TempPath {
29 TempPath createTempPath() throws IOException;
30 TempPath createTempPath(String prefix) throws IOException;
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 84 StringRef Path, StringRef TempPath);
88 SmallString<128> TempPath;
  /external/llvm/unittests/Support/
Path.cpp 170 SmallString<64> TempPath;
172 fs::unique_file("%%-%%-%%-%%.temp", FileDescriptor, TempPath));
176 ASSERT_NO_ERROR(sys::fs::exists(Twine(TempPath), TempFileExists));
183 ASSERT_NE(TempPath.str(), TempPath2.str());
186 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A));
192 fs::copy_file(Twine(TempPath), Twine(TempPath2)), errc::file_exists);
196 ASSERT_NO_ERROR(fs::copy_file(Twine(TempPath), Twine(TempPath2),
207 ASSERT_NO_ERROR(fs::create_hard_link(Twine(TempPath), Twine(TempPath2)));
209 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
211 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A))
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 541 SmallString<128> TempPath;
542 TempPath = OutFile;
543 TempPath += "-%%%%%%%%";
545 if (llvm::sys::fs::unique_file(TempPath.str(), fd, TempPath,
549 OSFile = TempFile = TempPath.str();
    [all...]
ASTUnit.cpp     [all...]

Completed in 241 milliseconds