Home
last modified time | relevance | path

Searched refs:LazyAncestors (Results 1 – 6 of 6) sorted by relevance

/dports/devel/mercurial/mercurial-6.0/tests/
H A Dtest-rust-revlog.py14 from mercurial.rustext.ancestor import LazyAncestors
44 lazy = LazyAncestors(rustidx, [3], 0, True)
55 self.assertFalse(LazyAncestors(idx, [0], 0, False))
H A Dtest-rust-ancestor.py20 LazyAncestors,
74 lazy = LazyAncestors(idx, [3], 0, True)
95 self.assertFalse(LazyAncestors(idx, [0], 0, False))
/dports/devel/mercurial/mercurial-6.0/rust/hg-cpython/src/
H A Dancestors.rs47 AncestorsIterator as CoreIterator, LazyAncestors as CoreLazy,
94 py_class!(pub class LazyAncestors |py| {
217 m.add_class::<LazyAncestors>(py)?; in init_module()
/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/
H A Dancestors.rs30 pub struct LazyAncestors<G: Graph + Clone> { struct
168 impl<G: Graph + Clone> LazyAncestors<G> { impl
176 Ok(LazyAncestors { in new()
555 LazyAncestors::new(SampleGraph, vec![11, 13], 0, false).unwrap(); in test_lazy_iter_contains()
570LazyAncestors::new(SampleGraph, vec![11, 13], 0, false).unwrap(); // reminder: [8, 7, 4, 3, 2, 1, … in test_lazy_contains_iter()
H A Dlib.rs10 pub use ancestors::{AncestorsIterator, LazyAncestors, MissingAncestors};
/dports/devel/mercurial/mercurial-6.0/mercurial/
H A Drevlog.py1013 lazyancestors = rustancestor.LazyAncestors