Home
last modified time | relevance | path

Searched refs:PrettyPatch (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
DPrettyPatch.rb9 module PrettyPatch module
523 @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)) then
552 … if (GIT_BINARY_PATCH_FORMAT.match(lines[i + 1]) and PrettyPatch.has_image_suffix(@filename)) then
613 str += "<h1>#{PrettyPatch.linkifyFilename(@filename)}</h1>\n"
660 if (PrettyPatch.diff_header?(line))
Dprettify.rb30 puts PrettyPatch.prettify(patch_data)
DPrettyPatch_test.rb54 pretty = PrettyPatch.prettify(patch)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
Dconfirmdiff.py33 from webkitpy.common.prettypatch import PrettyPatch
53 pretty_patch = PrettyPatch(self._tool.executive)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
Dprettypatch.py33 class PrettyPatch(object): class