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

1 2 3 4

  /dalvik/libcore/support/src/test/java/tests/resources/
hyts_ZipFile.zip 
  /external/bluetooth/glib/tests/collate/
collate-2.file 12 file2.bla
collate-2.in 2 file2.bla
collate-2.unicode 10 file2.bla
  /dalvik/libcore/support/src/test/java/tests/support/
Support_DeleteOnExitTest.java 13 File file2 = new File(args[1]); local
16 file2.deleteOnExit();
  /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/bzip2/
bzdiff.1 9 [ file2 ]
13 [ file2 ]
  /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());
  /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/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";
run-jsc 39 my $usage = "Usage: run-jsc [--count run_count] [--verbose] shell_file [file2...]";
  /development/scripts/
divide_and_compress_test.py 53 file2 = BagOfParts()
54 file2.filename = 'file2.txt'
55 file2.contents = ('akdjfk;djsf;kljdslkfjslkdfjlsfjkdvn;kn;2389rtu4i'
58 self.files = {'file1': file1, 'file2': file2}
176 file2 = BagOfParts()
177 file2.filename = 'file2.txt'
178 file2.contents = ('He entered the room and there in the center, it was.
    [all...]
  /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/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";
  /system/core/toolbox/
chown.c 18 fprintf(stderr, "Usage: chown <USER>[.GROUP] <FILE1> [FILE2] ...\n");
cmp.c 45 fprintf(stderr, "Usage: %s [-b] [-l] [-n count] file1 file2\n", argv[0]);
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
image_diff.py 181 def diff_files(self, port, file1, file2):
185 file1, file2: full paths of the files to compare.
193 result = port.diff_image(file1, file2)
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))
  /external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatch.pl 45 # * File2:
54 # * File2:
91 * File2:
261 - * File2:
284 - * File2:
  /build/tools/lsd/
cmdline.c 35 "\tlsd file1 [file2 file3 ... fileN] [-Ldir1 -Ldir2 ... -LdirN] "
  /development/scripts/app_engine_server/
memcache_zipserve.py 438 def CompareFilenames(self, file1, file2):
439 """Determines whether file1 is lexigraphically 'before' file2.
444 We say that file1 is lexigraphically before file2 if the last non-matching
445 path segment of file1 is alphabetically before file2.
449 file2: the second file path
452 A positive number if file1 is before file2
453 A negative number if file2 is before file1
457 f2_segments = file2.split('/')

Completed in 189 milliseconds

1 2 3 4