Lines Matching refs:revision
167 revision = self.GetCommitPositionNumber(git_hash)
170 "revision": revision,
194 % revision),
258 def GetReleaseFromRevision(self, revision): argument
261 if (VERSION_FILE not in self.GitChangedFiles(revision) or
262 not self.GitCheckoutFileSafe(VERSION_FILE, revision)):
263 print "Skipping revision %s" % revision
268 self.Git("branch -r --contains %s" % revision).strip().splitlines(),
279 print "Could not determine branch for %s" % revision
281 release, _ = self.GetRelease(revision, branch)
299 for revision in revisions:
300 releases += self.GetReleaseFromRevision(revision)
330 def ConvertToCommitNumber(step, revision): argument
332 if revision.isdigit() and len(revision) < 8:
333 return revision
335 revision, cwd=os.path.join(step._options.chromium, "v8"))
433 for revision, ranges in all_ranges.iteritems():
434 releases_dict.get(revision, {})["chromium_branch"] = ranges