HomeSort by relevance Sort by last modified time
    Searched refs:TempPath (Results 1 - 10 of 10) 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;
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 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...]
  /packages/apps/Email/emailcommon/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 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...]
ASTUnit.cpp     [all...]

Completed in 180 milliseconds