/external/apache-harmony/support/src/test/resources/tests/resources/ |
hyts_ZipFile.zip | |
/libcore/support/src/test/java/tests/resources/ |
hyts_ZipFile.zip | |
/libcore/support/src/test/java/tests/support/ |
Support_DeleteOnExitTest.java | 12 File file1 = new File(args[0]); local 15 file1.deleteOnExit();
|
/external/bzip2/ |
bzdiff.1 | 8 [ cmp_options ] file1 12 [ diff_options ] file1 28 .I file1 30 .IR file1 ".bz2."
|
bzdiff | 10 # the files compared are file1 and an uncompressed file1.gz.
|
/external/bluetooth/glib/gio/tests/ |
g-file.c | 83 GFile *file1 = NULL; local 89 file1 = g_file_new_for_uri (path1); 94 file1 = g_file_new_for_path (path1); 98 g_assert (file1 != NULL); 101 equal = g_file_equal (file1, file2); 103 g_object_unref (file1); 173 GFile *file1 = NULL; local 178 file1 = g_file_new_for_uri (path); 180 file1 = g_file_new_for_path (path); 182 g_assert (file1 != NULL) 221 GFile *file1 = NULL; local 282 GFile *file1 = NULL; local 353 GFile *file1 = NULL; local [all...] |
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
StorageManagerIntegrationTest.java | 78 File file1 = null; local 82 file1 = createObbFile(OBB_FILE_1, R.raw.obb_file1); 83 String filePath1 = file1.getAbsolutePath(); 101 if (file1 != null) { 102 file1.delete(); 142 File file1 = null; local 149 file1 = createObbFile(OBB_FILE_1_ENCRYPTED, R.raw.obb_enc_file100_orig1); 150 String filePath1 = file1.getAbsolutePath(); 160 if (file1 != null) { 161 file1.delete() [all...] |
/external/chromium/base/ |
file_util.cc | 83 std::ifstream file1(filename1.value().c_str(), 90 if (!file1.is_open() || !file2.is_open()) 96 file1.read(buffer1, BUFFER_SIZE); 99 if ((file1.eof() != file2.eof()) || 100 (file1.gcount() != file2.gcount()) || 101 (memcmp(buffer1, buffer2, file1.gcount()))) { 102 file1.close(); 106 } while (!file1.eof() || !file2.eof()); 108 file1.close(); 114 std::ifstream file1(filename1.value().c_str(), std::ios::in) [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/ |
DuplicateFileException.java | 32 public DuplicateFileException(String archivePath, File file1, File file2) { 35 mFile1 = file1;
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/io/ |
MockFileOpTest.java | 53 File f1 = createFile("/dir1", "file1"); 56 m.recordExistingFile("/dir1/file1"); 60 "[/dir1/file1]", 88 m.recordExistingFile("/dir1/file1"); 92 "[/dir1/file1, /dir1/file2]", 95 assertTrue(m.delete(createFile("/dir1", "file1"))); 111 m.recordExistingFile("/dir1/file1"); 125 "[/dir1/dir2/file3, /dir1/file1, /dir1/file2]",
|
/development/scripts/ |
divide_and_compress_test.py | 50 file1 = BagOfParts() 51 file1.filename = 'file1.txt' 52 file1.contents = 'This is a test file' 58 self.files = {'file1': file1, 'file2': file2} 126 source_zip.infolist().AndReturn([self.files['file1'], self.files['file1']]) 127 source_zip.infolist().AndReturn([self.files['file1'], self.files['file1']]) [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/comparator/ |
DefaultFileComparator.java | 60 * @return the result of calling file1's
63 public int compare(File file1, File file2) {
64 return file1.compareTo(file2);
|
SizeFileComparator.java | 108 public int compare(File file1, File file2) {
110 if (file1.isDirectory()) {
111 size1 = sumDirectoryContents && file1.exists() ? FileUtils.sizeOfDirectory(file1) : 0;
113 size1 = file1.length();
|
LastModifiedFileComparator.java | 67 public int compare(File file1, File file2) {
68 long result = file1.lastModified() - file2.lastModified();
|
/external/icu4c/tools/toolutil/ |
filetools.cpp | 28 static int32_t whichFileModTimeIsLater(const char *file1, const char *file2); 94 static int32_t whichFileModTimeIsLater(const char *file1, const char *file2) { 98 if (stat(file1, &stbuf1) == 0 && stat(file2, &stbuf2) == 0) { 113 fprintf(stderr, "Unable to get stats from file: %s or %s\n", file1, file2);
|
/external/webkit/Tools/Scripts/ |
compare-timing-files | 40 my ($file1, $file2) = @ARGV; 41 die "$usage\n" unless ($file1 && $file2 && @ARGV == 2); 43 my ($oldAverage, $oldRange, $oldRangePercent) = parseResults($file1); 46 print "\n===== $file1 =====\n";
|
/external/chromium/chrome/browser/ |
browsing_data_indexed_db_helper_browsertest.cc | 32 const FilePath::CharType file1[] = local 50 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value());
|
mock_browsing_data_indexed_db_helper.cc | 38 FilePath(FILE_PATH_LITERAL("file1")), 1, base::Time())); 39 files_[FILE_PATH_LITERAL("file1")] = true;
|
mock_browsing_data_local_storage_helper.cc | 39 FilePath(FILE_PATH_LITERAL("file1")), 1, base::Time())); 40 files_[FILE_PATH_LITERAL("file1")] = true;
|
/external/v8/test/mjsunit/ |
d8-os.js | 82 os.system("sh", ["-c", "echo foo > file1"]); 83 os.system("ls", ["file1"]); 84 assertThrows("os.mkdirp('file1');", "mkdir over file1"); 85 assertThrows("os.mkdirp('file1/foo');", "mkdir over file2"); 86 assertThrows("os.mkdirp('file1/');", "mkdir over file3"); 87 assertThrows("os.mkdirp('file1/foo/');", "mkdir over file4");
|
/external/llvm/utils/fpcmp/ |
fpcmp.cpp | 22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required); 36 int DF = DiffFilesWithTolerance(sys::PathWithStatus(File1),
|
/external/oprofile/libutil++/ |
file_manip.h | 34 * @param file1 first filename 39 bool is_files_identical(std::string const & file1, std::string const & file2);
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
ZipFileTest.java | 126 return zip.getEntry("File1.txt"); 149 * zip.getEntry("File1.txt"); assertNotNull("Did not find entry", 170 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt")); 233 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 238 zentry = zfile.getEntry("testdir1/File1.txt"); 239 assertNotNull("Could not obtain ZipEntry: testdir1/File1.txt", zentry); 259 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 280 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 301 zentry = zfile.getEntry("File1.txt"); 358 ZipEntry zentry = zfile.getEntry("File1.txt") [all...] |
/external/clang/unittests/ |
CMakeLists.txt | 3 # add_clang_unittest(test_dirname file1.cpp file2.cpp ...
|
/external/llvm/utils/ |
codegen-diff | 59 my @file1 = parse_objdump_file ($objdump_file); 61 my $lastrecord = ($#file1 >= $#file2) ? ($#file1) : ($#file2); 63 my $d1 = $file1[$i];
|