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

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
validatechangelogs.py 38 def _check_changelog_diff(self, diff_file):
39 if not self._tool.checkout().is_path_to_changelog(diff_file.filename):
45 if diff_file.lines[0][0] < 8:
50 log("The diff to %s looks wrong. Are you sure your ChangeLog entry is at the top of the file?" % (diff_file.filename))
52 self._tool.scm().diff_for_file(diff_file.filename)
59 for filename, diff_file in parsed_diff.files.items():
60 if not self._check_changelog_diff(diff_file):
61 error("ChangeLog entry in %s is not at the top of the file." % diff_file.filename)
validatechangelogs_unittest.py 43 diff_file = Mock()
44 diff_file.filename = "mock/ChangeLog"
45 diff_file.lines = [(start_line, start_line, "foo")]
49 result = OutputCapture().assert_outputs(self, step._check_changelog_diff, [diff_file], expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/common/
prettypatch.py 44 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
45 diff_file.write(pretty_diff)
46 diff_file.flush()
47 return diff_file
  /external/webkit/Tools/Scripts/webkitpy/style/
patchreader.py 55 for path, diff_file in patch_files.iteritems():
56 line_numbers = diff_file.added_or_modified_line_numbers()
  /frameworks/base/tests/DumpRenderTree/assets/
run_layout_tests.py 73 diff_file = open(diff_results, "a")
80 diff_file.writelines(marker + "\n")
81 diff_file.writelines("###############\n")
104 diff_file.writelines(params[key][3] + line)
110 diff_file.writelines("\n\n")
114 diff_file.close()
  /external/libvpx/libvpx/tools/
intersect-diffs.py 92 diff_file = file_regex.match(line)
93 if diff_file:
96 a = diff_file.group(2)
100 b = diff_file.group(2)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 565 diff_file = get_result_file_fullpath(self._filesystem,
568 self._filesystem.write_text_file(diff_file, output)
569 _log.info(' Html: created baseline diff file: "%s".', diff_file)
706 diff_file = get_result_file_fullpath(self._filesystem, self._html_directory,
708 _log.info(' Baseline diff file: "%s"', diff_file)
709 if self._filesystem.exists(diff_file):
710 links += html_td_link % {'uri': self.abspath_to_uri(diff_file),
713 _log.info(' No baseline diff file: "%s"', diff_file)
    [all...]

Completed in 119 milliseconds