Searched defs:tempDir (Results 1 - 25 of 29) sorted by relevance

12

/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DFileByFileV1DeltaApplier.java39 private final File tempDir; field in class:FileByFileV1DeltaApplier
43 * @param tempDir a temp directory where the delta-friendly old blob can be written during the
46 public FileByFileV1DeltaApplier(File tempDir) { argument
47 this.tempDir = tempDir;
53 if (!tempDir.exists()) {
56 tempDir.mkdirs();
58 File tempFile = File.createTempFile("gfbfv1", "old", tempDir);
/external/lzma/CPP/7zip/UI/Common/
H A DWorkDir.cpp49 FString tempDir = workDirInfo.Path; local
50 NName::NormalizeDirPathPrefix(tempDir);
51 return tempDir;
55 FString tempDir; local
56 if (!MyGetTempPath(tempDir))
58 return tempDir;
/external/caliper/caliper/src/test/java/com/google/caliper/options/
H A DParsedOptionsTest.java45 private File tempDir; field in class:ParsedOptionsTest
48 tempDir = Files.createTempDir();
49 makeTestVmTree(tempDir);
53 if (tempDir != null) {
54 Runtime.getRuntime().exec(new String[] {"rm", "-rf", tempDir.getCanonicalPath()});
/external/guava/guava-tests/test/com/google/common/io/
H A DIoTestCase.java52 private File tempDir; field in class:IoTestCase
130 if (tempDir == null) {
131 tempDir = createTempDir();
134 return tempDir;
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
H A DFileByFileV1DeltaApplierTest.java74 private File tempDir; field in class:FileByFileV1DeltaApplierTest
118 tempDir = tempFile.getParentFile();
152 fakeApplier = new FileByFileV1DeltaApplier(tempDir) {
/external/google-breakpad/src/client/mac/tests/
H A Dminidump_generator_test.cc78 AutoTempDir tempDir; member in class:__anon6704::MinidumpGeneratorTest
92 MinidumpGenerator::UniqueNameInDirectory(tempDir.path(), NULL);
183 MinidumpGenerator::UniqueNameInDirectory(tempDir.path(), NULL);
262 MinidumpGenerator::UniqueNameInDirectory(tempDir.path(), NULL);
H A Dexception_handler_test.cc68 AutoTempDir tempDir; member in class:__anon6703::ExceptionHandlerTest
112 ExceptionHandler eh(tempDir.path(), NULL, MDCallback, &fds[1], true, NULL);
194 ExceptionHandler eh(tempDir.path(), NULL, DumpNameMDCallback, this, true,
213 ExceptionHandler eh(tempDir.path(), NULL, DumpNameMDCallback, this, true,
283 tempDir.path(),
322 ExceptionHandler eh(tempDir.path(), NULL, MDCallback, &fds[1], true, NULL);
421 ExceptionHandler eh(tempDir.path(), NULL, MDCallback, &fds[1], true, NULL);
520 ExceptionHandler eh(tempDir.path(), NULL, MDCallback, &fds[1], true, NULL);
610 ExceptionHandler eh(tempDir.path(), NULL, MDCallback, &fds[1], true, NULL);
667 ExceptionHandler eh(tempDir
[all...]
/external/icu/icu4c/source/test/letest/
H A DFontObject.cpp29 SFNTDirectory tempDir; local
31 fread(&tempDir, sizeof tempDir, 1, file);
33 numTables = SWAPW(tempDir.numTables);
34 searchRange = SWAPW(tempDir.searchRange) >> 4;
35 entrySelector = SWAPW(tempDir.entrySelector);
36 rangeShift = SWAPW(tempDir.rangeShift) >> 4;
38 int dirSize = sizeof tempDir + ((numTables - ANY_NUMBER) * sizeof(DirectoryEntry));
H A DPortableFontInstance.cpp100 SFNTDirectory tempDir; local
102 size_t numRead = fread(&tempDir, sizeof tempDir, 1, fFile);
105 le_int32 dirSize = sizeof tempDir + ((SWAPW(tempDir.numTables) - ANY_NUMBER) * sizeof(DirectoryEntry));
/external/icu/icu4c/source/test/perf/leperf/
H A DFontObject.cpp33 SFNTDirectory tempDir; local
35 fread(&tempDir, sizeof tempDir, 1, file);
37 numTables = SWAPW(tempDir.numTables);
38 searchRange = SWAPW(tempDir.searchRange) >> 4;
39 entrySelector = SWAPW(tempDir.entrySelector);
40 rangeShift = SWAPW(tempDir.rangeShift) >> 4;
42 int dirSize = sizeof tempDir + ((numTables - ANY_NUMBER) * sizeof(DirectoryEntry));
H A DPortableFontInstance.cpp104 SFNTDirectory tempDir; local
106 fread(&tempDir, sizeof tempDir, 1, fFile);
108 le_int32 dirSize = sizeof tempDir + ((SWAPW(tempDir.numTables) - ANY_NUMBER) * sizeof(DirectoryEntry));
/external/lzma/CPP/7zip/Bundles/SFXSetup/
H A DSfxSetup.cpp199 CTempDir tempDir; local
200 if (!tempDir.Create(kTempDirPrefix))
216 const FString tempDirPath = tempDir.GetPath();
335 NULL, NULL, FALSE, 0, NULL, NULL /*tempDir.GetPath() */,
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
H A DHttpOverSpdyTest.java67 @Rule public final TemporaryFolder tempDir = new TemporaryFolder(); field in class:HttpOverSpdyTest
89 cache = new Cache(tempDir.getRoot(), Integer.MAX_VALUE);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DDiskLruCacheTest.java52 @Rule public final TemporaryFolder tempDir = new TemporaryFolder(); field in class:DiskLruCacheTest
78 cacheDir = tempDir.getRoot();
754 File dir = tempDir.newFolder("testOpenCreatesDirectoryIfNecessary");
823 fileSystem.deleteContents(tempDir.getRoot());
832 fileSystem.deleteContents(tempDir.getRoot());
849 fileSystem.deleteContents(tempDir.getRoot());
857 fileSystem.deleteContents(tempDir.getRoot());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DURLConnectionTest.java106 @Rule public final TemporaryFolder tempDir = new TemporaryFolder(); field in class:URLConnectionTest
901 cache = new Cache(tempDir.getRoot(), Integer.MAX_VALUE);
/external/guice/extensions/struts2/lib/
H A Dcommons-fileupload-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/fileupload/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-fileupload-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/fileupload/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dyjp-controller-api-redist.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/yourkit/ com/yourkit/api/ com/yourkit/runtime/ com/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2322 milliseconds

12