Home
last modified time | relevance | path

Searched refs:stoprev (Results 1 – 16 of 16) sorted by relevance

/dports/devel/mercurial/mercurial-6.0/tests/
H A Dtest-ancestor.py.out15 % lazy ancestor set for [], stoprev = 0, inclusive = False
18 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = False
21 % lazy ancestor set for [1, 3], stoprev = 0, inclusive = False
24 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = True
27 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = False
30 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = True
33 % lazy ancestor set for [11, 13], stoprev = 11, inclusive = True
36 % lazy ancestor set for [11, 13], stoprev = 12, inclusive = True
39 % lazy ancestor set for [10, 1], stoprev = 0, inclusive = True
H A Dtest-ancestor.py360 def genlazyancestors(revs, stoprev=0, inclusive=False): argument
364 % (revs, stoprev, inclusive)
368 graph.get, revs, stoprev=stoprev, inclusive=inclusive
395 s = genlazyancestors([11, 13], stoprev=6)
397 s = genlazyancestors([11, 13], stoprev=6, inclusive=True)
401 s = genlazyancestors([11, 13], stoprev=11, inclusive=True)
403 s = genlazyancestors([11, 13], stoprev=12, inclusive=True)
H A Dtest-convert-svn-source.t200 $ hg convert --rev 1 "$SVNREPOURL/proj%20B/mytrunk" stoprev
201 initializing destination stoprev repository
206 $ hg -R stoprev branch -q
212 $ cd stoprev
H A Dtest-contrib-relnotes.t5 $ python3 contrib/relnotes 4.4 --stoprev 4.5
/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/
H A Dancestors.rs26 stoprev: Revision, field
34 stoprev: Revision, field
52 stoprev: Revision, in new()
62 stoprev, in new()
69 stoprev, in new()
157 if p1 < self.stoprev || !self.seen.insert(p1) { in next()
172 stoprev: Revision, in new()
181 stoprev, in new()
185 stoprev, in new()
204 self.stoprev, in iter()
[all …]
/dports/devel/mercurial/mercurial-6.0/mercurial/
H A Dancestor.py276 def _lazyancestorsiter(parentrevs, initrevs, stoprev, inclusive): argument
301 if current < stoprev:
321 def __init__(self, pfunc, revs, stoprev=0, inclusive=False): argument
334 self._initrevs = [r for r in revs if r >= stoprev]
335 self._stoprev = stoprev
H A Dcontext.py1000 def _adjustlinkrev(self, srcrev, inclusive=False, stoprev=None): argument
1039 if stoprev is not None and a < stoprev:
1057 introrev = self._introrev(stoprev=changelogrev)
1073 def _introrev(self, stoprev=None): argument
1092 return self._adjustlinkrev(toprev, inclusive=True, stoprev=stoprev)
1094 introrev = self._adjustlinkrev(self._descendantrev, stoprev=stoprev)
H A Drevlog.py958 def _deltachain(self, rev, stoprev=None): argument
970 return self.index.deltachain(rev, stoprev, self._generaldelta)
982 while iterrev != e[3] and iterrev != stoprev:
990 if iterrev == stoprev:
999 def ancestors(self, revs, stoprev=0, inclusive=False): argument
1018 return lazyancestors(arg, revs, stoprev=stoprev, inclusive=inclusive)
1886 chain, stopped = self._deltachain(rev, stoprev=cachedrev)
H A Ddagop.py375 def _scanparents(self, stoprev): argument
404 if pendingcnt.get(stoprev) == 0:
/dports/devel/mercurial/mercurial-6.0/rust/hg-cpython/src/
H A Dancestors.rs73 def __new__(_cls, index: PyObject, initrevs: PyObject, stoprev: Revision,
79 stoprev,
112 def __new__(_cls, index: PyObject, initrevs: PyObject, stoprev: Revision,
118 initvec, stoprev, inclusive)
/dports/devel/mercurial/mercurial-6.0/contrib/
H A Drelnotes143 "only(%s, %s)" % (args.stoprev, args.startrev),
153 "only(%s, %s) - merge()" % (args.stoprev, args.startrev),
H A Dperf.py2818 def perfrevlogwrite(ui, repo, file_=None, startrev=1000, stoprev=-1, **opts): argument
2845 if stoprev < 0:
2846 stoprev = rllen + stoprev
2872 stoprev,
2956 stoprev, argument
2965 revs = list(orig.revs(startrev, stoprev))
/dports/devel/tortoisehg/tortoisehg-5.9.3/tortoisehg/hgqt/
H A Dgraph.py753 def _fillpendingheads(self, stoprev): argument
754 if stoprev is None:
759 pending = self._fillancestors(p_ctxs, color, stoprev)
764 def _fillancestors(self, p_ctxs, curcolor, stoprev): argument
768 if rev0 < stoprev:
/dports/devel/mercurial/mercurial-6.0/hgext/git/
H A Dgitlog.py259 def ancestors(self, revs, stoprev=0, inclusive=False): argument
266 self.parentrevs, revs, stoprev=stoprev, inclusive=inclusive
/dports/devel/mercurial/mercurial-6.0/mercurial/cext/
H A Drevlog.c1262 int stoprev, iterrev, baserev = -1; in index_deltachain() local
1272 stoprev = (int)PyInt_AsLong(stoparg); in index_deltachain()
1273 if (stoprev == -1 && PyErr_Occurred()) { in index_deltachain()
1277 stoprev = -2; in index_deltachain()
1305 while (iterrev != baserev && iterrev != stoprev) { in index_deltachain()
1342 if (iterrev == stoprev) { in index_deltachain()
/dports/devel/mercurial/mercurial-6.0/hgext/
H A Dshow.py302 ancestors = cl.ancestors([head], stoprev=basectx.rev())