HomeSort by relevance Sort by last modified time
    Searched refs:file2 (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/support/src/test/java/tests/support/
Support_DeleteOnExitTest.java 13 File file2 = new File(args[1]); local
16 file2.deleteOnExit();
  /packages/apps/Email/src/org/apache/commons/io/comparator/
DefaultFileComparator.java 61 * {@link File#compareTo(File)} with file2 as the parameter.
65 File file2 = (File)obj2; local
66 return file1.compareTo(file2);
SizeFileComparator.java 110 File file2 = (File)obj2; local
118 if (file2.isDirectory()) {
119 size2 = sumDirectoryContents && file2.exists() ? FileUtils.sizeOfDirectory(file2) : 0;
121 size2 = file2.length();
LastModifiedFileComparator.java 69 File file2 = (File)obj2; local
70 long result = file1.lastModified() - file2.lastModified();
NameFileComparator.java 103 File file2 = (File)obj2; local
104 return caseSensitivity.checkCompareTo(file1.getName(), file2.getName());
PathFileComparator.java 104 File file2 = (File)obj2; local
105 return caseSensitivity.checkCompareTo(file1.getPath(), file2.getPath());
ExtensionFileComparator.java 107 File file2 = (File)obj2; local
109 String suffix2 = FilenameUtils.getExtension(file2.getName());
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
DuplicateFileException.java 32 public DuplicateFileException(String archivePath, File file1, File file2) {
36 mFile2 = file2;
  /external/webkit/WebKitTools/Scripts/
compare-timing-files 40 my ($file1, $file2) = @ARGV;
41 die "$usage\n" unless ($file1 && $file2 && @ARGV == 2);
44 my ($newAverage, $newRange, $newRangePercent) = parseResults($file2);
54 print "\n===== $file2 =====\n";
  /external/bluetooth/glib/gio/tests/
g-file.c 84 GFile *file2 = NULL; local
90 file2 = g_file_new_for_uri (path2);
95 file2 = g_file_new_for_path (path2);
99 g_assert (file2 != NULL);
101 equal = g_file_equal (file1, file2);
104 g_object_unref (file2);
174 GFile *file2 = NULL; local
184 file2 = g_file_dup (file1);
186 g_assert (file2 != NULL);
188 equal = g_file_equal (file1, file2);
222 GFile *file2 = NULL; local
354 GFile *file2 = NULL; local
    [all...]
  /external/chromium/third_party/icu/source/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/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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResourceItem.java 18 public int compare(ResourceFile file1, ResourceFile file2) {
21 FolderConfiguration fc2 = file2.getFolder().getConfiguration();
  /external/chromium/base/
file_util.cc 112 std::ifstream file2(filename2.value().c_str(),
117 if (!file1.is_open() || !file2.is_open())
124 file2.read(buffer2, BUFFER_SIZE);
126 if ((file1.eof() != file2.eof()) ||
127 (file1.gcount() != file2.gcount()) ||
130 file2.close();
133 } while (!file1.eof() || !file2.eof());
136 file2.close();
142 std::ifstream file2(filename2.value().c_str(), std::ios::in);
146 if (!file1.is_open() || !file2.is_open()
    [all...]
  /external/webkit/SunSpider/
sunspider-compare-results 146 my $file2;
150 $file2 = $ARGV[1];
153 $file2 = newestFile("$resultDirectory", qr/sunspider-results-.+\.js$/);
157 $output .= "var output2 = " . readResultsFile($file2) . ";\n";
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
text_diff.py 109 def diff_files(self, port, file1, file2):
113 file1, file2: full paths of the files to compare.
121 self.get_normalized_text(file2))
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerIntegrationTest.java 79 File file2 = null; local
87 file2 = createObbFile(OBB_FILE_2, R.raw.obb_file2);
88 String filePath2 = file2.getAbsolutePath();
104 if (file2 != null) {
105 file2.delete();
  /frameworks/base/core/tests/coretests/src/com/android/server/
MountServiceTests.java 264 final File file2 = getFilePath("test2.obb"); local
267 ObbObserver oo2 = mountObbWithoutWait(sm, R.raw.test1, file2);
272 waitForObbActionCompletion(sm, file2, oo2, OnObbStateChangeListener.MOUNTED, false);
278 final String mountPath2 = checkMountedPath(sm, file2);
283 unmountObb(sm, file2, OnObbStateChangeListener.UNMOUNTED);
  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 534 EAS_HW_FILE *file2,*dupFile; local
546 file2 = hwInstData->files;
550 if ((file1 != file2) && (file2->buffer == file1->buffer))
562 dupFile = file2;
564 file2++;
  /external/sonivox/arm-hybrid-22k/host_src/
eas_hostmm.c 534 EAS_HW_FILE *file2,*dupFile; local
546 file2 = hwInstData->files;
550 if ((file1 != file2) && (file2->buffer == file1->buffer))
562 dupFile = file2;
564 file2++;
  /external/sonivox/arm-wt-22k/host_src/
eas_hostmm.c 565 EAS_HW_FILE *file2,*dupFile; local
577 file2 = hwInstData->files;
581 if ((file1 != file2) && (file2->fd == file1->fd))
593 dupFile = file2;
595 file2++;
  /external/libvpx/build/make/
gen_msvs_def.sh 19 Usage: ${self_basename} [options] file1 [file2 ...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/libexec/gcc/arm-eabi/4.2.1/install-tools/
fixinc.sh 340 for file2 in $all_dirs; do
341 case $file2 in
343 dupdir=${LIB}/root${full_dest_dir}/`echo $file2 |
362 file2=`cd ${LIB}; cd $parent; ${PWDCMD} | sed -e "s@^${libabs}@@"`
366 dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'`
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/
fixinc.sh 340 for file2 in $all_dirs; do
341 case $file2 in
343 dupdir=${LIB}/root${full_dest_dir}/`echo $file2 |
362 file2=`cd ${LIB}; cd $parent; ${PWDCMD} | sed -e "s@^${libabs}@@"`
366 dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'`
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/install-tools/
fixinc.sh 338 for file2 in $all_dirs; do
339 case $file2 in
341 dupdir=${LIB}/root${full_dest_dir}/`echo $file2 |
360 file2=`cd ${LIB}; cd $parent; ${PWDCMD} | sed -e "s@^${libabs}@@"`
364 dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'`

Completed in 546 milliseconds

1 2 3