HomeSort by relevance Sort by last modified time
    Searched refs:DIFF (Results 1 - 4 of 4) sorted by null

  /external/bzip2/
bzdiff 4 # Bzcmp/diff wrapped for bzip2,
7 # Bzcmp and bzdiff are used to invoke the cmp or the diff pro-
9 # directly to cmp or diff. If only 1 file is specified, then
12 # necessary) and fed to cmp or diff. The exit status from cmp
13 # or diff is preserved.
19 *) comp=${DIFF-diff} ;;
  /external/webkit/WebKitTools/Scripts/
resolve-ChangeLogs 244 $statCommand = "$GIT diff -r --name-status --diff-filter=U -C -C -M";
273 print; # error output from git diff
289 open GIT, "-|", $GIT, "diff", "--name-only", $revisionRange or die $!;
315 open GIT, "-|", $GIT, "diff", ($ENV{GIT_COMMIT} || "HEAD") . "^", $file or die $!;
396 open(DIFF, "<", $fileMine) or die $!;
397 $patch = <DIFF>;
398 close(DIFF);
402 open(DIFF, "-|", qw(diff -u -a --binary), $fileOlder, $fileMine) or die $!
    [all...]
prepare-ChangeLog 27 # and functions from a diff.
48 # Work around diff stupidity where deleting a function that starts
49 # with a comment makes diff think that the following function
52 # Work around diff stupidity where deleting an entire function and
53 # the blank lines before it makes diff think you've changed the
113 GetOptions("diff|d!" => \$spewDiff,
125 print STDERR basename($0) . " [--bug] [-d|--diff] [-h|--help] [-o|--open] [--git-commit=<committish>] [--git-reviewer=<name>] [svndir1 [svndir2 ...]]\n";
127 print STDERR " -d|--diff Spew diff to stdout when running\n";
180 # Use line numbers from the "after" side of each diff
    [all...]
svn-create-patch 29 # Extended "svn diff" script for WebKit Open Source Project, used to make patches.
31 # Differences from standard "svn diff":
33 # Uses the real diff, not svn's built-in diff.
34 # Always passes "-p" to diff so it will try to include function names.
206 open DIFF, "svn diff --diff-cmd diff -x -uaNp '$file' |" or die;
207 while (<DIFF>) {
    [all...]

Completed in 20 milliseconds