Searched refs:DiffMatchPatch (Results 1 – 1 of 1) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | qunit-1.18.0.js | 157 QUnit.diff=(function(){function DiffMatchPatch(){this.DiffTimeout=1.0;this.DiffEditCost=4;} class in QUnit.diff 158 var DIFF_DELETE=-1,DIFF_INSERT=1,DIFF_EQUAL=0;DiffMatchPatch.prototype.DiffMain=function(text1,text… class 165 this.diffCleanupMerge(diffs);return diffs;};DiffMatchPatch.prototype.diffCleanupEfficiency=function… 170 if(changes){this.diffCleanupMerge(diffs);}};DiffMatchPatch.prototype.diffPrettyHtml=function(diffs)… 171 return html.join("");};DiffMatchPatch.prototype.diffCommonPrefix=function(text1,text2){var pointerm… 174 return pointermid;};DiffMatchPatch.prototype.diffCommonSuffix=function(text1,text2){var pointermid,… 178 DiffMatchPatch.prototype.diffCompute=function(text1,text2,checklines,deadline){var diffs,longtext,s… 185 return this.diffBisect(text1,text2,deadline);};DiffMatchPatch.prototype.diffHalfMatch=function(text… 194 midCommon=hm[4];return[text1A,text1B,text2A,text2B,midCommon];};DiffMatchPatch.prototype.diffLineMo… 199 diffs.pop();return diffs;};DiffMatchPatch.prototype.diffBisect=function(text1,text2,deadline){var t… [all …]
|