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

  /packages/apps/Email/emailcommon/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/unittests/Support/
Path.cpp 171 SmallString<64> TempPath;
173 fs::unique_file("%%-%%-%%-%%.temp", FileDescriptor, TempPath));
177 ASSERT_NO_ERROR(sys::fs::exists(Twine(TempPath), TempFileExists));
184 ASSERT_NE(TempPath.str(), TempPath2.str());
188 fs::copy_file(Twine(TempPath), Twine(TempPath2)), errc::file_exists);
192 ASSERT_NO_ERROR(fs::copy_file(Twine(TempPath), Twine(TempPath2),
203 ASSERT_NO_ERROR(fs::create_hard_link(Twine(TempPath), Twine(TempPath2)));
205 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
210 ASSERT_NO_ERROR(fs::remove(Twine(TempPath), TempFileExists));
218 ASSERT_NO_ERROR(fs::exists(Twine(TempPath), TempFileExists))
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 518 llvm::SmallString<128> TempPath;
519 TempPath = OutFile;
520 TempPath += "-%%%%%%%%";
522 if (llvm::sys::fs::unique_file(TempPath.str(), fd, TempPath,
525 OSFile = TempFile = TempPath.str();
    [all...]

Completed in 1864 milliseconds