Searched refs:PrettyPatch (Results 1 – 5 of 5) sorted by relevance
9 module PrettyPatch module523 @filename = PrettyPatch.filename_from_diff_header(lines[0].chomp)528 @from = PrettyPatch.revisionOrDescription(lines[i])530 … @filename = PrettyPatch.filename_from_diff_header(lines[i].chomp) if @filename.nil?531 @to = PrettyPatch.revisionOrDescription(lines[i])536 … if (IMAGE_FILE_MARKER_FORMAT.match(lines[i + 1]) or PrettyPatch.has_image_suffix(@filename)) then552 … if (GIT_BINARY_PATCH_FORMAT.match(lines[i + 1]) and PrettyPatch.has_image_suffix(@filename)) then613 str += "<h1>#{PrettyPatch.linkifyFilename(@filename)}</h1>\n"660 if (PrettyPatch.diff_header?(line))
30 puts PrettyPatch.prettify(patch_data)
54 pretty = PrettyPatch.prettify(patch)
33 from webkitpy.common.prettypatch import PrettyPatch53 pretty_patch = PrettyPatch(self._tool.executive)
33 class PrettyPatch(object): class