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
66 def SortBranches(branches):
67 """Sort branches with version number names."""
68 return sorted(branches, key=SortingKey, reverse=True)
206 # Follow branches only until their creation point.
223 # Get relevant remote branches, e.g. "svn/3.25".
224 branches = filter(lambda s: re.match(r"^svn/\d+\.\d+$", s),
227 branches = map(lambda s: s[4:], branches)
234 beta, stable = SortBranches(branches)[0:2]
240 for branch in branches:
245 assert self._options.branch in branches + ["trunk"]
351 # Filter out irrelevant branches.
352 branches = filter(lambda r: re.match(r"branch-heads/\d+", r),
356 branches = map(lambda r: int(re.match(r"branch-heads/(\d+)", r).group(1)),
357 branches)
359 branches = sorted(branches, reverse=True)
363 for branch in branches:
386 # Add the chromium branches to the v8 trunk releases.
434 "analyze all branches. If 'recent' (default) "