Searched +refs:diff +refs:end +refs:of +refs:hunk (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/CPANInternal-159.1/Text-WordDiff-0.08/lib/Text/WordDiff/
H A DHTML.pm16 sub hunk_header { return '<span class="hunk">' }
48 =end comment
58 my $diff = word_diff 'file1.txt', 'file2.txt'; { STYLE => 'HTML' };
59 my $diff = word_diff \$string1, \$string2, { STYLE => 'HTML' };
60 my $diff = word_diff \*FH1, \*FH2, { STYLE => 'HTML' };
61 my $diff = word_diff \&reader1, \&reader2, { STYLE => 'HTML' };
62 my $diff = word_diff \@records1, \@records2, { STYLE => 'HTML' };
65 my $diff = word_diff \@records1, 'file_B.txt', { STYLE => 'HTML' };
73 Text::WordDiff::HTML formats word diffs for viewing in a Web browser. The diff
80 This element contains the entire contents of th
[all...]
/macosx-10.10/CPANInternal-159.1/Text-WordDiff-0.08/lib/Text/
H A DWordDiff.pm74 confess "Can't handle input of type $type";
112 # Instantiate the diff object, along with any options.
113 my $diff = Algorithm::Diff->new(@seqs, delete $opts->{DIFF_OPTS});
121 # Run the diff.
124 while ($diff->Next) {
129 if (my @same = $diff->Same) {
135 if (my @del = $diff->Items(1)) {
138 if (my @ins = $diff->Items(2)) {
199 my $diff = word_diff 'file1.txt', 'file2.txt', { STYLE => 'HTML' };
200 my $diff
[all...]

Completed in 188 milliseconds