HomeSort by relevance Sort by last modified time
    Searched refs:TempPath (Results 1 - 12 of 12) 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;
SimpleTempStorage.java 44 private TempPath rootPath = null;
54 private TempPath createTempPath(TempPath parent, String prefix)
78 private TempFile createTempFile(TempPath parent, String prefix,
117 public TempPath getRootTempPath() {
121 private class SimpleTempPath implements TempPath {
133 * @see org.apache.james.mime4j.util.TempPath#createTempFile()
140 * @see org.apache.james.mime4j.util.TempPath#createTempFile(java.lang.String, java.lang.String)
149 * @see org.apache.james.mime4j.util.TempPath#createTempFile(java.lang.String, java.lang.String, boolean)
159 * @see org.apache.james.mime4j.util.TempPath#getAbsolutePath()
    [all...]
TempStorage.java 60 public abstract TempPath getRootTempPath();
  /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/llvm/include/llvm/Support/
FileOutputBuffer.h 84 StringRef Path, StringRef TempPath);
88 SmallString<128> TempPath;
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 27 , TempPath(TmpPath) {
32 sys::fs::remove(Twine(TempPath), Existed);
111 error_code EC = sys::fs::resize_file(Twine(TempPath), NewSmallerSize);
117 return sys::fs::rename(Twine(TempPath), Twine(FinalPath));
  /packages/apps/Email/src/org/apache/james/mime4j/message/
MemoryBinaryBody.java 33 import org.apache.james.mime4j.util.TempPath;
57 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
TempFileBinaryBody.java 32 import org.apache.james.mime4j.util.TempPath;
56 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
57 tempFile = tempPath.createTempFile("attachment", ".bin");
MemoryTextBody.java 37 import org.apache.james.mime4j.util.TempPath;
62 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
TempFileTextBody.java 36 import org.apache.james.mime4j.util.TempPath;
61 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
62 tempFile = tempPath.createTempFile("attachment", ".txt");
  /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 158 milliseconds