Lines Matching full:branch
17 _CONF_BRANCH_SECTION = 'BRANCH'
24 """Errors related to release and branch inference."""
33 directory, which has a single section [BRANCH] containing
38 bp_XYZ: for each branch listed above, a variable that maps to the Chrome
42 next_branch: the name of the current (unforked) branch (e.g. R24)
44 It is also worth noting that a branch point X.Y.Z (alternatively, W.X.Y.Z)
45 of some branch R denotes the build number X (repsectively, W) that
46 constitutes the said branch. Therefore, it is only from build X+1 (W+1) and
79 # Get next branch name.
95 key=lambda (branch, release): self._release_key(release))
100 for (branch, release) in self._sorted_branchpoint_list]
154 """Retruns chronologically sorted list of branch names."""
155 return [branch for (branch, release) in self._sorted_branchpoint_list]
159 """Returns the branch name of a given release version. """
165 def get_branchpoint_release(self, branch):
166 """Returns the branchpoint release of a given branch.
168 Returns None if given name is the next branch.
170 @raise KeyError if branch name not known
173 if branch == self._next_branch:
175 return self._branchpoint_dict[branch]