Searched refs:diff_text (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
D | patchreader_unittest.py | 95 diff_text = """Index: LayoutTests/platform/mac/foo-expected.png 100 self._patch_checker.check(diff_text, fs)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | base_unittest.py | 124 port.diff_text('exp', 'act', 'exp.txt', 'act.txt') 125 port.diff_text('exp', 'act', u'exp.txt', 'act.txt') 126 port.diff_text('exp', 'act', u'a\xac\u1234\u20ac\U00008000', 'act.txt') 128 port.diff_text('exp' + chr(255), 'act', 'exp.txt', 'act.txt') 129 port.diff_text('exp' + chr(255), 'act', u'exp.txt', 'act.txt') 134 port.diff_text(u'exp', 'act', 'exp.txt', 'act.txt') 135 port.diff_text( 139 diff = port.diff_text('foo', 'bar', 'exp.txt', 'act.txt')
|
D | base.py | 517 def diff_text(self, expected_text, actual_text, expected_filename, actual_filename): member in Port
|
/external/google-diff-match-patch/name/fraser/neil/plaintext/ |
D | diff_match_patch.java | 2083 String diff_text; in patch_splitMax() local 2110 diff_text = bigpatch.diffs.getFirst().text; in patch_splitMax() 2113 patch.length2 += diff_text.length(); in patch_splitMax() 2114 start2 += diff_text.length(); in patch_splitMax() 2119 && diff_text.length() > 2 * patch_size) { in patch_splitMax() 2121 patch.length1 += diff_text.length(); in patch_splitMax() 2122 start1 += diff_text.length(); in patch_splitMax() 2124 patch.diffs.add(new Diff(diff_type, diff_text)); in patch_splitMax() 2128 diff_text = diff_text.substring(0, Math.min(diff_text.length(), in patch_splitMax() 2130 patch.length1 += diff_text.length(); in patch_splitMax() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
D | test_result_writer.py | 200 diff = self._port.diff_text(expected_text, actual_text, expected_filename, actual_filename)
|
/external/chromium_org/tools/ |
D | bisect-perf-regression.py | 727 def ChangeBackslashToSlashInPatch(diff_text): argument 729 if diff_text: 730 diff_lines = diff_text.split('\n') 1946 diff_text = CheckRunGit(diff_command, cwd=self.src_cwd) 1947 return (chromium_sha, ChangeBackslashToSlashInPatch(diff_text))
|