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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
diff.rb 38 matches = matching_blocks
81 def matching_blocks method in class:HTMLDiff.DiffBuilder
82 matching_blocks = []
83 recursively_find_matching_blocks(0, @old_words.size, 0, @new_words.size, matching_blocks)
84 matching_blocks
87 def recursively_find_matching_blocks(start_in_old, end_in_old, start_in_new, end_in_new, matching_blocks)
92 start_in_old, match.start_in_old, start_in_new, match.start_in_new, matching_blocks)
94 matching_blocks << match
97 match.end_in_old, end_in_old, match.end_in_new, end_in_new, matching_blocks)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
jsdifflib.js 110 this.matching_blocks = this.opcodes = null;
116 this.matching_blocks = this.opcodes = this.fullbcount = null;
225 if (this.matching_blocks != null) return this.matching_blocks;
230 var matching_blocks = [];
244 matching_blocks.push(x);
252 matching_blocks.sort(difflib.__ntuplecomp);
256 for (var idx in matching_blocks) {
257 if (matching_blocks.hasOwnProperty(idx)) {
258 block = matching_blocks[idx]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
difflib.py 191 # matching_blocks
259 self.matching_blocks = self.opcodes = None
285 self.matching_blocks = self.opcodes = None
479 if self.matching_blocks is not None:
480 return self.matching_blocks
487 # results to `matching_blocks` in a loop; the matches are sorted
490 matching_blocks = []
498 matching_blocks.append(x)
503 matching_blocks.sort()
506 # matching_blocks list now. Starting with 2.5, this code was adde
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
difflib.py 191 # matching_blocks
259 self.matching_blocks = self.opcodes = None
285 self.matching_blocks = self.opcodes = None
479 if self.matching_blocks is not None:
480 return self.matching_blocks
487 # results to `matching_blocks` in a loop; the matches are sorted
490 matching_blocks = []
498 matching_blocks.append(x)
503 matching_blocks.sort()
506 # matching_blocks list now. Starting with 2.5, this code was adde
    [all...]

Completed in 96 milliseconds