Home | History | Annotate | Download | only in push-to-trunk

Lines Matching refs:branches

6 # This script retrieves the history of all V8 branches and trunk revisions and
52 r"A \/tags\/([^\s]+) \(from \/branches\/bleeding_edge\:(\d+)\)")
55 def SortBranches(branches):
56 """Sort branches with version number names."""
57 return sorted(branches, key=SortingKey, reverse=True)
216 # Follow branches only until their creation point.
233 # Get relevant remote branches, e.g. "svn/3.25".
234 branches = filter(lambda s: re.match(r"^svn/\d+\.\d+$", s),
237 branches = map(lambda s: s[4:], branches)
244 beta, stable = SortBranches(branches)[0:2]
251 for branch in branches:
257 assert self._options.branch in branches + ["trunk", "bleeding_edge"]
361 # Filter out irrelevant branches.
362 branches = filter(lambda r: re.match(r"branch-heads/\d+", r),
366 branches = map(lambda r: int(re.match(r"branch-heads/(\d+)", r).group(1)),
367 branches)
369 branches = sorted(branches, reverse=True)
373 for branch in branches:
397 # Add the chromium branches to the v8 trunk releases.
437 "analyze all branches. If 'recent' (default) "